File size: 93,837 Bytes
53145a2 |
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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 |
{
"ctfidf_model": {
"bm25_weighting": false,
"reduce_frequent_words": true
},
"vectorizer_model": {
"params": {
"analyzer": "word",
"binary": false,
"decode_error": "strict",
"encoding": "utf-8",
"input": "content",
"lowercase": true,
"max_df": 1.0,
"max_features": null,
"min_df": 2,
"ngram_range": [
1,
2
],
"stop_words": "english",
"strip_accents": null,
"token_pattern": "(?u)\\b\\w\\w+\\b",
"vocabulary": null
},
"vocab": {
"way": 3430,
"log": 1517,
"pay": 1963,
"dont": 822,
"understand": 3227,
"order": 1792,
"receive": 2362,
"confirmation": 559,
"ready": 2317,
"shop": 2659,
"cart": 341,
"reserve": 2441,
"think": 3033,
"bad": 168,
"process": 2160,
"bit": 231,
"complicate": 547,
"need": 1729,
"make": 1614,
"simpler": 2723,
"account": 29,
"advance": 74,
"service": 2613,
"good": 1174,
"type": 3206,
"shipment": 2657,
"initiative": 1356,
"high": 1252,
"postage": 2091,
"limit": 1470,
"payment": 1989,
"debit": 687,
"credit": 625,
"accept": 17,
"poor": 2068,
"site": 2727,
"pick": 2039,
"incorrectly": 1334,
"branch": 259,
"stone": 2864,
"age": 86,
"presence": 2113,
"small": 2796,
"brand": 263,
"try": 3179,
"time": 3049,
"disappoint": 761,
"unfortunately": 3236,
"buy": 294,
"sale": 2487,
"confirm": 558,
"quite": 2291,
"disappointing": 765,
"unnecessary": 3268,
"item": 1387,
"work": 3476,
"poorly": 2070,
"browser": 276,
"want": 3394,
"impossible": 1312,
"possible": 2074,
"bank": 196,
"error": 954,
"slow": 2774,
"message": 1670,
"option": 1782,
"button": 291,
"tell": 3005,
"turn": 3202,
"later": 1439,
"didnt": 729,
"easy": 871,
"addition": 62,
"tried": 3169,
"create": 623,
"hopeless": 1277,
"appear": 121,
"second": 2564,
"money": 1701,
"wasnt": 3422,
"ask": 132,
"wait": 3384,
"long": 1533,
"admit": 73,
"mistake": 1689,
"mention": 1662,
"fact": 1027,
"look": 1558,
"favorite": 1067,
"come": 509,
"list": 1478,
"drama": 858,
"address": 67,
"modify": 1697,
"management": 1637,
"super": 2952,
"unpleasant": 3270,
"lady": 1424,
"line": 1472,
"effort": 921,
"really": 2324,
"manager": 1638,
"wrong": 3596,
"experience": 1007,
"allow": 93,
"forget": 1121,
"visible": 3376,
"tab": 2987,
"withdrawn": 3463,
"store": 2869,
"waste": 3425,
"jacket": 1396,
"benefit": 221,
"right": 2472,
"ground": 1202,
"quality": 2225,
"funny": 1156,
"offer": 1760,
"direct": 752,
"systematically": 2986,
"say": 2514,
"respect": 2445,
"format": 1124,
"screen": 2533,
"hidden": 1250,
"function": 1150,
"bar": 204,
"card": 328,
"lousy": 1600,
"company": 528,
"bankrupt": 203,
"basically": 208,
"clear": 418,
"white": 3452,
"page": 1926,
"load": 1494,
"symbol": 2985,
"occasionally": 1758,
"cancel": 325,
"restart": 2451,
"fast": 1043,
"stuck": 2926,
"stick": 2859,
"stable": 2829,
"continue": 587,
"wish": 3461,
"information": 1346,
"gift": 1167,
"constant": 571,
"shame": 2639,
"place": 2048,
"twice": 3204,
"discount": 774,
"cancellation": 327,
"apply": 122,
"purchase": 2210,
"major": 1613,
"problem": 2141,
"access": 22,
"send": 2602,
"know": 1410,
"appreciate": 124,
"write": 3594,
"select": 2570,
"method": 1679,
"number": 1752,
"voucher": 3381,
"search": 2538,
"redeem": 2399,
"lack": 1423,
"technology": 2999,
"completely": 542,
"tire": 3135,
"joke": 1402,
"able": 1,
"job": 1400,
"difficult": 741,
"furthermore": 1157,
"clearly": 452,
"use": 3293,
"enter": 935,
"code": 493,
"improve": 1323,
"ideal": 1288,
"choose": 404,
"edit": 916,
"customer": 635,
"automatically": 141,
"fault": 1065,
"phone": 2030,
"help": 1247,
"lot": 1582,
"link": 1473,
"today": 3136,
"content": 585,
"annoy": 102,
"range": 2301,
"currently": 632,
"probably": 2138,
"newsletter": 1737,
"doesnt": 796,
"mail": 1608,
"arrive": 128,
"constantly": 573,
"hang": 1219,
"bug": 284,
"automatic": 139,
"entry": 951,
"rest": 2450,
"neat": 1727,
"clean": 417,
"worthless": 3589,
"close": 468,
"article": 129,
"save": 2510,
"identifier": 1292,
"talk": 2991,
"password": 1956,
"actually": 48,
"satisfied": 2492,
"mode": 1692,
"manage": 1634,
"invoice": 1383,
"product": 2173,
"selection": 2577,
"complicated": 550,
"loading": 1509,
"middle": 1680,
"complete": 536,
"secure": 2567,
"connection": 563,
"establish": 981,
"ill": 1293,
"competition": 533,
"structure": 2922,
"throw": 3045,
"properly": 2202,
"honestly": 1269,
"thing": 3024,
"ago": 88,
"wife": 3459,
"mark": 1641,
"minimum": 1681,
"valid": 3357,
"exit": 1003,
"gateway": 1162,
"mobile": 1690,
"finally": 1092,
"tablet": 2989,
"ing": 1354,
"regular": 2414,
"ship": 2654,
"plus": 2057,
"contact": 582,
"old": 1764,
"box": 257,
"banking": 201,
"frequently": 1134,
"connect": 562,
"late": 1436,
"click": 458,
"reader": 2316,
"instead": 1362,
"quickly": 2274,
"ultimately": 3208,
"needless": 1732,
"fully": 1142,
"mature": 1649,
"despite": 721,
"longer": 1549,
"unclear": 3217,
"useful": 3348,
"missing": 1688,
"exchange": 1000,
"werent": 3444,
"convenient": 593,
"include": 1329,
"slowly": 2793,
"transaction": 3155,
"absolutely": 14,
"stupid": 2934,
"weird": 3442,
"star": 2836,
"deduction": 690,
"chrome": 411,
"menu": 1664,
"clumsy": 491,
"main": 1609,
"point": 2060,
"fun": 1143,
"precisely": 2104,
"hand": 1214,
"day": 662,
"friendly": 1136,
"available": 145,
"hello": 1246,
"finalize": 1089,
"lose": 1579,
"pathetic": 1960,
"resolve": 2444,
"miss": 1686,
"various": 3367,
"happily": 1223,
"continuously": 590,
"people": 2020,
"strange": 2921,
"assume": 134,
"sell": 2589,
"proceed": 2158,
"uncomplicated": 3218,
"terrible": 3010,
"advise": 82,
"login": 1532,
"coupon": 615,
"little": 1488,
"trouble": 3173,
"unusable": 3277,
"server": 2612,
"physical": 2035,
"delete": 695,
"register": 2408,
"change": 380,
"step": 2857,
"preferably": 2109,
"block": 248,
"stop": 2865,
"moment": 1698,
"stage": 2832,
"display": 785,
"request": 2439,
"soon": 2805,
"start": 2839,
"quarter": 2262,
"hour": 1280,
"improvement": 1325,
"react": 2313,
"reason": 2350,
"id": 1285,
"case": 359,
"remove": 2432,
"functionality": 1155,
"correct": 603,
"prefer": 2105,
"force": 1117,
"galaxy": 1159,
"doubt": 855,
"trust": 3177,
"fix": 1107,
"future": 1158,
"update": 3280,
"scan": 2528,
"previously": 2125,
"price": 2126,
"free": 1131,
"blue": 250,
"addendum": 61,
"unknown": 3265,
"open": 1767,
"transfer": 3157,
"general": 1163,
"technical": 2997,
"havent": 1232,
"gotten": 1195,
"speak": 2816,
"employee": 924,
"ordered": 1905,
"month": 1716,
"book": 252,
"cheeky": 394,
"sad": 2485,
"delivery": 699,
"cash": 360,
"sizes": 2770,
"usually": 3353,
"fashion": 1040,
"size": 2737,
"miserable": 1685,
"desirable": 717,
"telephone": 3002,
"disadvantage": 759,
"delay": 694,
"efficient": 919,
"redirection": 2401,
"reach": 2312,
"decision": 689,
"internal": 1372,
"criterion": 627,
"truth": 3178,
"yesterday": 3600,
"away": 161,
"invalid": 1381,
"advertise": 79,
"scam": 2526,
"solution": 2801,
"person": 2024,
"happen": 1222,
"zero": 3605,
"promotional": 2197,
"return": 2456,
"collect": 500,
"traditional": 3153,
"different": 738,
"suddenly": 2942,
"satisfy": 2499,
"family": 1037,
"apparently": 119,
"accessible": 25,
"cause": 371,
"frustration": 1141,
"wont": 3468,
"let": 1461,
"add": 54,
"clothes": 472,
"real": 2319,
"garbage": 1160,
"black": 241,
"meet": 1657,
"support": 2969,
"center": 374,
"manually": 1640,
"live": 1493,
"week": 3438,
"end": 926,
"conclusion": 554,
"short": 2704,
"disappointed": 763,
"briefly": 267,
"switch": 2981,
"identical": 1291,
"hold": 1259,
"satisfactory": 2491,
"recently": 2376,
"idea": 1287,
"regularly": 2416,
"greatly": 1201,
"unable": 3209,
"possibility": 2072,
"supposedly": 2974,
"feed": 1071,
"trouser": 3174,
"pant": 1947,
"th": 3021,
"apology": 118,
"forth": 1125,
"cut": 645,
"afraid": 85,
"particularly": 1952,
"excellent": 986,
"total": 3143,
"disaster": 767,
"straight": 2919,
"unreliable": 3271,
"scanner": 2530,
"attention": 137,
"life": 1468,
"fight": 1078,
"air": 92,
"business": 288,
"course": 617,
"low": 1601,
"score": 2531,
"data": 651,
"continually": 586,
"disappear": 760,
"reliable": 2424,
"worst": 3586,
"finish": 1099,
"remain": 2428,
"blank": 242,
"sure": 2975,
"sorry": 2812,
"rude": 2481,
"treatment": 3166,
"history": 1256,
"respond": 2446,
"progress": 2196,
"near": 1725,
"report": 2438,
"normally": 1745,
"huge": 1282,
"irritate": 1385,
"check": 390,
"hell": 1245,
"morning": 1718,
"kind": 1408,
"fraud": 1129,
"stay": 2850,
"match": 1644,
"multiple": 1720,
"row": 2479,
"basket": 209,
"directly": 753,
"field": 1077,
"easily": 867,
"overview": 1917,
"highly": 1254,
"recommend": 2379,
"intuitive": 1376,
"concise": 553,
"pity": 2045,
"immediately": 1305,
"chose": 410,
"loyalty": 1604,
"competent": 531,
"quick": 2264,
"pleasure": 2055,
"generally": 1164,
"previous": 2123,
"insert": 1358,
"reverse": 2469,
"attempt": 135,
"successful": 2938,
"question": 2263,
"unsuccessful": 3275,
"follow": 1116,
"forward": 1126,
"visit": 3379,
"version": 3371,
"interruption": 1374,
"difficulty": 751,
"theyre": 3023,
"especially": 974,
"trace": 3149,
"big": 223,
"rubbish": 2480,
"blitz": 246,
"interrupt": 1373,
"sense": 2607,
"hassle": 1230,
"refresh": 2406,
"skip": 2771,
"leave": 1450,
"desire": 718,
"essential": 980,
"eventually": 983,
"reflect": 2405,
"profile": 2194,
"file": 1079,
"claim": 414,
"incredible": 1337,
"badly": 194,
"explanation": 1018,
"thrown": 3047,
"scratch": 2532,
"integration": 1365,
"computer": 551,
"imagine": 1303,
"whats": 3446,
"run": 2483,
"thought": 3044,
"outdated": 1912,
"practical": 2093,
"watch": 3427,
"cell": 372,
"reload": 2425,
"technically": 2998,
"rate": 2306,
"bikini": 228,
"told": 3140,
"reimbursement": 2417,
"personal": 2025,
"play": 2051,
"read": 2314,
"touch": 3148,
"press": 2117,
"shouldnt": 2708,
"blink": 245,
"copy": 601,
"background": 166,
"terribly": 3017,
"tragedy": 3154,
"freeze": 1133,
"situation": 2736,
"loyal": 1602,
"dozen": 857,
"extremely": 1022,
"response": 2447,
"german": 1166,
"value": 3361,
"browse": 273,
"incorrect": 1332,
"definitely": 692,
"parcel": 1948,
"locker": 1516,
"procedure": 2157,
"correctly": 606,
"useless": 3349,
"trash": 3164,
"install": 1359,
"sit": 2726,
"locally": 1513,
"incredibly": 1338,
"crazy": 622,
"past": 1959,
"hung": 1283,
"similar": 2712,
"hope": 1270,
"recover": 2396,
"apart": 116,
"flawlessly": 1111,
"date": 659,
"organize": 1908,
"original": 1910,
"shopping": 2690,
"test": 3019,
"care": 336,
"half": 1208,
"begin": 218,
"fatal": 1063,
"repeat": 2434,
"action": 45,
"intend": 1367,
"disgust": 784,
"status": 2848,
"rule": 2482,
"team": 2995,
"provide": 2207,
"failure": 1030,
"saw": 2513,
"horrible": 1278,
"pas": 1954,
"regrettable": 2413,
"correction": 605,
"recognize": 2378,
"handy": 1217,
"leaf": 1447,
"quote": 2297,
"totally": 3145,
"sum": 2949,
"position": 2071,
"suppose": 2971,
"reply": 2437,
"package": 1924,
"track": 3150,
"notification": 1750,
"pickup": 2042,
"accidentally": 26,
"currency": 629,
"complain": 534,
"opinion": 1779,
"concern": 552,
"depend": 712,
"mood": 1717,
"home": 1260,
"push": 2224,
"opt": 1781,
"rush": 2484,
"helpful": 1249,
"installation": 1360,
"language": 1429,
"set": 2636,
"web": 3437,
"nicely": 1739,
"collection": 501,
"carry": 340,
"broken": 271,
"user": 3351,
"taste": 2994,
"remains": 2430,
"catastrophic": 366,
"result": 2455,
"pair": 1944,
"additionally": 66,
"engine": 928,
"nightmare": 1741,
"description": 714,
"agree": 90,
"safe": 2486,
"post": 2090,
"cute": 646,
"billing": 229,
"charge": 383,
"disastrous": 773,
"validate": 3358,
"lei": 1459,
"single": 2725,
"catastrophe": 365,
"freak": 1130,
"dark": 649,
"chaotic": 382,
"buggy": 285,
"stock": 2861,
"wallet": 3393,
"awful": 164,
"torture": 3141,
"availability": 142,
"physically": 2037,
"patience": 1961,
"sent": 2608,
"specifically": 2820,
"security": 2569,
"functional": 1153,
"principle": 2136,
"maybe": 1651,
"compare": 530,
"uninstalled": 3264,
"horror": 1279,
"story": 2918,
"wide": 3456,
"weekend": 3441,
"pandemic": 1946,
"randomly": 2300,
"communication": 527,
"form": 1122,
"picture": 2043,
"faster": 1061,
"otto": 1911,
"solve": 2802,
"break": 265,
"text": 3020,
"setup": 2638,
"expect": 1005,
"cost": 608,
"policy": 2064,
"hardly": 1226,
"logical": 1531,
"membership": 1659,
"learn": 1449,
"included": 1330,
"stationary": 2846,
"indication": 1341,
"country": 614,
"flow": 1114,
"issue": 1386,
"june": 1403,
"daughter": 660,
"successfully": 2939,
"final": 1088,
"navigation": 1724,
"unfortunate": 3234,
"lay": 1444,
"initial": 1355,
"necessary": 1728,
"numerous": 1754,
"example": 985,
"entire": 947,
"receipt": 2361,
"partial": 1950,
"record": 2395,
"awesome": 163,
"view": 3372,
"mask": 1643,
"registration": 2412,
"crap": 620,
"woman": 3464,
"unfriendly": 3263,
"beginning": 219,
"pleasant": 2053,
"normal": 1744,
"session": 2634,
"actual": 47,
"spend": 2824,
"weak": 3435,
"cumbersome": 628,
"program": 2195,
"personally": 2027,
"consider": 567,
"regard": 2407,
"overall": 1915,
"transparent": 3160,
"wonder": 3465,
"worth": 3587,
"location": 1515,
"polish": 2065,
"special": 2817,
"recovery": 2397,
"unexpected": 3231,
"dev": 724,
"complaint": 535,
"opening": 1776,
"reasonably": 2358,
"damn": 648,
"piece": 2044,
"junk": 1405,
"matter": 1646,
"double": 854,
"pass": 1955,
"transport": 3163,
"succeed": 2936,
"faulty": 1066,
"landscape": 1427,
"rid": 2471,
"common": 526,
"warn": 3420,
"fall": 1036,
"behavior": 220,
"apartment": 117,
"phase": 2028,
"choice": 399,
"amaze": 98,
"smooth": 2797,
"certain": 375,
"reset": 2442,
"head": 1241,
"possibly": 2089,
"negatively": 1734,
"wow": 3593,
"exist": 1002,
"mess": 1669,
"world": 3584,
"kept": 1406,
"seller": 2601,
"practically": 2101,
"filter": 1081,
"memory": 1660,
"hard": 1225,
"execrable": 1001,
"pocket": 2059,
"bye": 323,
"exception": 998,
"carrier": 339,
"comment": 525,
"development": 727,
"absolute": 12,
"browsing": 282,
"flaw": 1109,
"window": 3460,
"promptly": 2201,
"forever": 1118,
"undeliverable": 3225,
"station": 2845,
"cashier": 364,
"expensive": 1006,
"lie": 1467,
"period": 2023,
"fail": 1029,
"suitable": 2948,
"frozen": 1140,
"android": 100,
"inability": 1328,
"wouldnt": 3590,
"border": 253,
"control": 591,
"theres": 3022,
"decent": 688,
"drawback": 859,
"guest": 1204,
"precise": 2103,
"accepted": 21,
"welcome": 3443,
"reduction": 2404,
"repeatedly": 2436,
"input": 1357,
"impractical": 1321,
"year": 3598,
"color": 502,
"jean": 1397,
"secondly": 2566,
"device": 728,
"log pay": 1524,
"dont understand": 848,
"order pay": 1851,
"receive confirmation": 2366,
"shop cart": 2662,
"cart reserve": 352,
"order dont": 1822,
"dont think": 846,
"bit complicate": 232,
"account think": 40,
"think pay": 3038,
"bad service": 184,
"service site": 2628,
"pick order": 2040,
"try make": 3189,
"make payment": 1625,
"payment time": 2015,
"time way": 3129,
"order confirm": 1811,
"order quite": 1861,
"payment work": 2018,
"work poorly": 3536,
"impossible order": 1317,
"order payment": 1852,
"payment possible": 2007,
"possible pay": 2082,
"addition error": 63,
"create account": 624,
"time second": 3109,
"second time": 2565,
"time money": 3088,
"money account": 1702,
"account shop": 39,
"shop order": 2674,
"order wasnt": 1899,
"wait long": 3388,
"service super": 2631,
"make effort": 1620,
"money order": 1707,
"order visible": 1896,
"receive order": 2371,
"store order": 2893,
"order order": 1848,
"experience time": 1017,
"credit card": 626,
"white page": 3454,
"page load": 1932,
"load symbol": 1506,
"order process": 1856,
"process restart": 2168,
"unfortunately stuck": 3259,
"stuck time": 2929,
"time time": 3119,
"time payment": 3094,
"payment process": 2009,
"come later": 512,
"continue shop": 589,
"shop wish": 2688,
"place order": 2049,
"order twice": 1890,
"access account": 23,
"account order": 34,
"order send": 1872,
"dont know": 831,
"payment method": 2002,
"shop completely": 2666,
"clearly use": 457,
"use slow": 3341,
"slow time": 2790,
"time tried": 3121,
"tried enter": 3170,
"error try": 971,
"try pay": 3192,
"pay ideal": 1974,
"make order": 1624,
"order choose": 1805,
"continue pay": 588,
"customer service": 641,
"service wait": 2633,
"pay work": 1988,
"work basically": 3482,
"slow pay": 2785,
"long time": 1543,
"time today": 3120,
"today shop": 3137,
"cart log": 344,
"purchase process": 2219,
"process shop": 2169,
"link payment": 1476,
"doesnt work": 821,
"constantly hang": 574,
"automatic entry": 140,
"want close": 3398,
"close look": 469,
"look article": 1559,
"know work": 1417,
"link work": 1477,
"work pay": 3532,
"work work": 3580,
"work use": 3574,
"impossible pay": 1318,
"actually satisfied": 52,
"time work": 3131,
"manage pay": 1635,
"try time": 3199,
"time make": 3086,
"make easy": 1619,
"easy use": 910,
"invoice product": 1384,
"selection work": 2588,
"work quite": 3543,
"quite bit": 2292,
"bit complicated": 233,
"loading time": 1510,
"time long": 3082,
"actually quite": 51,
"want complete": 3400,
"complete order": 538,
"order error": 1827,
"secure connection": 2568,
"connection establish": 565,
"cart order": 346,
"ill buy": 1294,
"really place": 2336,
"purchase time": 2220,
"time order": 3091,
"function work": 1152,
"work properly": 3539,
"properly time": 2205,
"time pay": 3093,
"order today": 1887,
"want order": 3405,
"order account": 1794,
"work offer": 3528,
"use discount": 3308,
"discount voucher": 779,
"minimum purchase": 1682,
"purchase buy": 2212,
"buy purchase": 311,
"payment gateway": 1998,
"time finally": 3070,
"stuck payment": 2928,
"payment clear": 1993,
"clear work": 450,
"link ing": 1475,
"work error": 3506,
"error message": 961,
"stuck way": 2930,
"pay account": 1964,
"think shame": 3040,
"bank contact": 198,
"didnt work": 737,
"bank card": 197,
"work payment": 3533,
"bad experience": 178,
"quickly payment": 2285,
"button work": 293,
"work worthless": 3581,
"cart try": 357,
"needless say": 1733,
"say unfortunately": 2523,
"unfortunately dont": 3242,
"work unfortunately": 3571,
"pay invoice": 1976,
"longer work": 1557,
"work bad": 3480,
"payment bank": 1990,
"able use": 10,
"service order": 2622,
"really thing": 2345,
"use easy": 3312,
"easy fast": 881,
"fast convenient": 1045,
"bad thing": 189,
"purchase possible": 2217,
"work buy": 3484,
"order doesnt": 1821,
"star deduction": 2837,
"redeem gift": 2400,
"banking work": 202,
"main menu": 1610,
"point deduction": 2061,
"fun easy": 1145,
"difficult work": 750,
"card reader": 333,
"annoy thing": 109,
"work slowly": 3556,
"customer friendly": 638,
"phone work": 2033,
"work make": 3523,
"make bank": 1616,
"order try": 1888,
"problem miss": 2146,
"discount code": 775,
"use clear": 3301,
"various payment": 3368,
"happily order": 1224,
"want sell": 3413,
"sell payment": 2596,
"purchase problem": 2218,
"enter discount": 941,
"proceed payment": 2159,
"payment pay": 2005,
"fast uncomplicated": 1060,
"uncomplicated clear": 3219,
"function doesnt": 1151,
"work constantly": 3493,
"work browser": 3483,
"browser shop": 280,
"cart bad": 342,
"connection server": 566,
"delete account": 696,
"possible restart": 2083,
"log payment": 1525,
"shame pay": 2647,
"good unfortunately": 1192,
"card payment": 331,
"stop order": 2866,
"order option": 1847,
"payment moment": 2003,
"moment work": 1700,
"order work": 1904,
"work page": 3531,
"page display": 1929,
"order receive": 1864,
"bad constantly": 172,
"message soon": 1674,
"start payment": 2841,
"need improvement": 1731,
"longer available": 1550,
"available payment": 150,
"unfortunately pay": 3251,
"ideal work": 1290,
"work dont": 3502,
"prefer buy": 2106,
"problem fix": 2143,
"product previously": 2185,
"ship free": 2655,
"free order": 1132,
"uncomplicated work": 3224,
"buy account": 295,
"order unfortunately": 1892,
"unfortunately doesnt": 3241,
"unfortunately error": 3243,
"dont receive": 841,
"order confirmation": 1812,
"information come": 1348,
"error open": 962,
"account bad": 30,
"order reason": 1863,
"reason havent": 2351,
"havent gotten": 1236,
"money day": 1705,
"twice send": 3205,
"send didnt": 2603,
"later receive": 1442,
"order longer": 1841,
"purchase account": 2211,
"error longer": 959,
"longer purchase": 1554,
"clear fast": 425,
"want change": 3396,
"process delivery": 2162,
"pay branch": 1967,
"branch pay": 260,
"pay cash": 1969,
"fashion size": 1042,
"selection store": 2587,
"voucher code": 3382,
"clear unfortunately": 448,
"tried pay": 3171,
"pay time": 1985,
"payment error": 1997,
"error shame": 965,
"work click": 3488,
"work come": 3489,
"shop clear": 2664,
"clear convenient": 423,
"work log": 3519,
"pay ing": 1975,
"discount register": 777,
"make purchase": 1626,
"want send": 3414,
"scam dont": 2527,
"promotional code": 2198,
"code use": 498,
"money return": 1710,
"work ideal": 3515,
"ill delete": 1295,
"work easy": 3504,
"pay error": 1972,
"possible order": 2081,
"work shop": 3553,
"cart suddenly": 355,
"completely different": 544,
"long use": 1545,
"use store": 3342,
"store easy": 2879,
"easy accessible": 873,
"wont let": 3471,
"add card": 56,
"buy clothes": 299,
"clothes store": 482,
"really annoy": 2325,
"despite fact": 722,
"support center": 2970,
"impossible access": 1313,
"waste time": 3426,
"time longer": 3083,
"want pay": 3406,
"way order": 3432,
"order use": 1894,
"use bank": 3297,
"dont want": 851,
"want money": 3403,
"time send": 3111,
"longer pay": 1552,
"good ill": 1182,
"unable pay": 3211,
"order th": 1884,
"telephone contact": 3003,
"pay unfortunately": 1987,
"unfortunately click": 3239,
"payment ideal": 1999,
"process easy": 2163,
"straight away": 2920,
"pay order": 1978,
"bad pay": 181,
"time slow": 3114,
"shame shop": 2649,
"shop quality": 2675,
"use different": 3306,
"pay attention": 1965,
"time bug": 3054,
"understand problem": 3228,
"ill order": 1296,
"order update": 1893,
"cash register": 363,
"shop use": 2687,
"use make": 3323,
"stick really": 2860,
"dont order": 839,
"cart remain": 351,
"wait money": 3390,
"easy order": 891,
"site slow": 2733,
"slow unfortunately": 2791,
"enter bank": 937,
"bank place": 199,
"order day": 1816,
"day make": 674,
"check connection": 392,
"connection dont": 564,
"try place": 3194,
"order morning": 1845,
"white screen": 3455,
"stay away": 2851,
"store use": 2915,
"try open": 3190,
"try shop": 3197,
"pay good": 1973,
"good basket": 1177,
"basket disappear": 211,
"money transfer": 1713,
"use order": 3324,
"order branch": 1801,
"branch unfortunately": 262,
"unfortunately shop": 3256,
"shame log": 2644,
"log time": 1530,
"time close": 3057,
"ordered quickly": 1906,
"quickly easily": 2277,
"really work": 2349,
"highly recommend": 1255,
"recommend clear": 2380,
"clear intuitive": 428,
"intuitive easy": 1377,
"recommend unfortunately": 2392,
"work enter": 3505,
"normally work": 1746,
"clear concise": 422,
"able pay": 7,
"competent friendly": 532,
"payment make": 2001,
"advance order": 76,
"card data": 329,
"remove cart": 2433,
"unsuccessful order": 3276,
"currently try": 634,
"try look": 3188,
"look forward": 1566,
"forward visit": 1128,
"away dont": 162,
"store cart": 2874,
"work problem": 3538,
"lot trouble": 1597,
"work annoy": 3479,
"annoy unfortunately": 110,
"unfortunately didnt": 3240,
"forward delivery": 1127,
"delivery make": 704,
"look store": 1574,
"store satisfy": 2903,
"especially come": 976,
"tell wait": 3006,
"absolutely recommend": 16,
"recommend work": 2394,
"lot hassle": 1589,
"cancel order": 326,
"visible order": 3377,
"list dont": 1481,
"long wait": 1547,
"wait order": 3391,
"order correct": 1813,
"leave desire": 1454,
"enter address": 936,
"order reflect": 1866,
"lot use": 1598,
"use buy": 3299,
"disappointed order": 764,
"order way": 1900,
"file claim": 1080,
"work disaster": 3500,
"payment day": 1994,
"work badly": 3481,
"doesnt let": 808,
"discount doesnt": 776,
"finally order": 1094,
"integration terrible": 1366,
"work try": 3569,
"open unfortunately": 1775,
"unusable error": 3279,
"desire page": 720,
"update didnt": 3281,
"work today": 3568,
"cell phone": 373,
"briefly reload": 268,
"rate high": 2307,
"order later": 1839,
"later newsletter": 1440,
"order good": 1833,
"good use": 1193,
"order time": 1886,
"time ago": 3050,
"price item": 2127,
"item store": 1394,
"personal data": 2026,
"data lot": 653,
"order customer": 1815,
"payment play": 2006,
"error display": 956,
"time customer": 3058,
"help dont": 1248,
"wait day": 3387,
"confirmation transfer": 561,
"lose money": 1580,
"payment card": 1991,
"order make": 1843,
"white background": 3453,
"money collect": 1703,
"transaction money": 3156,
"order register": 1867,
"order cart": 1803,
"information order": 1351,
"loyal customer": 1603,
"day impossible": 670,
"send order": 2604,
"pay blitz": 1966,
"pay traditional": 1986,
"day wait": 682,
"good arrive": 1175,
"easy way": 912,
"option work": 1789,
"enter code": 938,
"code payment": 496,
"extremely poor": 1024,
"response time": 2448,
"value money": 3363,
"bad slow": 188,
"slow doesnt": 2777,
"payment long": 2000,
"payment receive": 2011,
"receive information": 2368,
"information incorrect": 1349,
"parcel locker": 1949,
"payment procedure": 2008,
"try order": 3191,
"address correctly": 68,
"blitz money": 247,
"time receive": 3103,
"store shop": 2906,
"locally available": 1514,
"data time": 657,
"time unable": 3123,
"unable complete": 3210,
"complete purchase": 541,
"time hour": 3074,
"card end": 330,
"wont try": 3473,
"basket time": 215,
"ideal function": 1289,
"order number": 1846,
"store white": 2916,
"screen turn": 2535,
"order buy": 1802,
"account use": 43,
"experience terrible": 1016,
"really time": 2347,
"previous page": 2124,
"payment quick": 2010,
"number payment": 1753,
"account log": 33,
"work flawlessly": 3510,
"order basket": 1800,
"problem recommend": 2150,
"clear organize": 430,
"dont look": 835,
"process order": 2164,
"receive return": 2373,
"receive pay": 2372,
"pay return": 1981,
"return dont": 2457,
"order think": 1885,
"day say": 680,
"payment page": 2004,
"card possible": 332,
"shopping cart": 2691,
"cart pity": 349,
"pity order": 2046,
"complete payment": 539,
"error switch": 969,
"switch payment": 2984,
"finalize order": 1090,
"order ordered": 1849,
"didnt order": 735,
"account want": 44,
"order didnt": 1817,
"ill probably": 1297,
"phone doesnt": 2031,
"doesnt know": 807,
"know write": 1418,
"account receive": 38,
"receive confirm": 2365,
"store work": 2917,
"work moment": 3526,
"work terribly": 3563,
"enter order": 943,
"half day": 1210,
"day order": 675,
"problem return": 2151,
"finish order": 1100,
"order turn": 1889,
"actually time": 53,
"time try": 3122,
"try buy": 3181,
"buy store": 317,
"store time": 2913,
"money shop": 1712,
"order currently": 1814,
"accept payment": 19,
"return order": 2464,
"think order": 3037,
"time fact": 3067,
"apparently didnt": 120,
"week order": 3440,
"order end": 1826,
"basket change": 210,
"service doesnt": 2618,
"doesnt provide": 814,
"buy pant": 308,
"order come": 1809,
"contact customer": 583,
"dont recommend": 842,
"havent buy": 1235,
"experience make": 1013,
"good order": 1184,
"day later": 671,
"later order": 1441,
"shame really": 2648,
"service store": 2629,
"leaf desire": 1448,
"receive tried": 2375,
"long order": 1537,
"order item": 1838,
"message come": 1671,
"stop work": 2867,
"work pity": 3534,
"account twice": 42,
"make return": 1627,
"return money": 2463,
"return store": 2467,
"wait bad": 3385,
"thing send": 3027,
"send return": 2605,
"clear buy": 420,
"order hope": 1835,
"work open": 3529,
"press button": 2118,
"work quality": 3540,
"whats point": 3448,
"unfortunately order": 3250,
"cash delivery": 361,
"delivery option": 705,
"store suppose": 2912,
"regular customer": 2415,
"receive say": 2374,
"say order": 2520,
"advance doesnt": 75,
"work data": 3496,
"data transfer": 658,
"come late": 511,
"satisfy ordered": 2505,
"track order": 3151,
"order say": 1869,
"say error": 2517,
"work right": 3547,
"yesterday order": 3601,
"order suddenly": 1881,
"order shop": 1874,
"time satisfy": 3107,
"annoy bad": 103,
"impossible open": 1316,
"time use": 3126,
"payment register": 2012,
"register order": 2410,
"order recommend": 1865,
"product basket": 2176,
"time didnt": 3061,
"order wait": 1897,
"wait business": 3386,
"business day": 289,
"day recommend": 678,
"possible make": 2079,
"purchase enter": 2214,
"home page": 1263,
"page time": 1938,
"time return": 3105,
"return enter": 2459,
"message twice": 1676,
"want purchase": 3409,
"delivery store": 709,
"home delivery": 1261,
"possible choose": 2076,
"account basket": 31,
"recommend make": 2382,
"store dont": 2878,
"dont make": 836,
"order address": 1796,
"address time": 69,
"language option": 1430,
"error make": 960,
"possibility order": 2073,
"know order": 1412,
"day delivery": 669,
"delivery payment": 706,
"customer number": 640,
"process really": 2167,
"big problem": 225,
"work search": 3551,
"search annoy": 2539,
"work time": 3567,
"shame impossible": 2643,
"clear easy": 424,
"easy search": 900,
"search unfortunately": 2559,
"day bad": 664,
"let leave": 1463,
"impossible make": 1315,
"time wont": 3130,
"save data": 2511,
"data make": 654,
"newsletter redeem": 1738,
"attempt different": 136,
"browser different": 277,
"different address": 739,
"order wont": 1903,
"pair trouser": 1945,
"directly shop": 754,
"didnt receive": 736,
"order able": 1793,
"impossible place": 1319,
"purchase try": 2222,
"search engine": 2549,
"use search": 3337,
"bad time": 190,
"time wrong": 3132,
"store pity": 2895,
"search work": 2561,
"impossible choose": 1314,
"service payment": 2623,
"super slow": 2965,
"click item": 464,
"time load": 3080,
"load click": 1498,
"lose shopping": 1581,
"cart start": 354,
"finally ready": 1095,
"ready pay": 2318,
"receive message": 2369,
"experience order": 1014,
"doesnt arrive": 799,
"status order": 2849,
"telephone service": 3004,
"doesnt care": 800,
"really really": 2339,
"pay card": 1968,
"dont wait": 850,
"service dont": 2619,
"information money": 1350,
"day return": 679,
"validate order": 3359,
"bad shopping": 186,
"branch pick": 261,
"buy product": 310,
"extremely slow": 1026,
"able buy": 2,
"shame buy": 2640,
"buy lot": 306,
"dark mode": 650,
"pay shopping": 1983,
"shopping difficult": 2694,
"password password": 1958,
"password manager": 1957,
"make difficult": 1618,
"difficult tire": 748,
"try finalize": 3184,
"finalize purchase": 1091,
"order stock": 1879,
"let place": 1465,
"enter manually": 942,
"awful slow": 165,
"slow load": 2782,
"load apply": 1496,
"apply search": 123,
"search mark": 2554,
"mark select": 1642,
"select size": 2576,
"size payment": 2757,
"process real": 2166,
"real torture": 2321,
"torture make": 3142,
"make extremely": 1621,
"extremely difficult": 1023,
"difficult buy": 742,
"buy good": 304,
"good check": 1179,
"check availability": 391,
"availability store": 144,
"store buy": 2873,
"buy physically": 309,
"physically dont": 2038,
"dont waste": 852,
"time patience": 3092,
"physical store": 2036,
"store reliable": 2902,
"soon account": 2806,
"bad bad": 169,
"order soon": 1878,
"problem long": 2145,
"long long": 1536,
"good send": 1189,
"work uninstalled": 3572,
"code quickly": 497,
"quickly pay": 2284,
"improve lot": 1324,
"lot especially": 1588,
"order wide": 1901,
"wide range": 3458,
"range good": 2303,
"especially actually": 975,
"actually long": 50,
"slow possible": 2786,
"possible complete": 2077,
"remain white": 2429,
"work order": 3530,
"address wrong": 71,
"order communication": 1810,
"order long": 1840,
"work impossible": 3516,
"page try": 1939,
"terrible try": 3016,
"make store": 1630,
"load page": 1502,
"long pay": 1540,
"know really": 1414,
"really think": 2346,
"think lose": 3036,
"dont unfortunately": 849,
"account pay": 35,
"pay dont": 1971,
"recommend shop": 2388,
"leave money": 1457,
"store pay": 2894,
"switch copy": 2982,
"page dont": 1930,
"quick easy": 2266,
"bad customer": 173,
"customer card": 637,
"long work": 1548,
"work longer": 3521,
"longer order": 1551,
"say item": 2518,
"item available": 1388,
"cost order": 610,
"play store": 2052,
"want place": 3407,
"order return": 1868,
"order charge": 1804,
"fatal work": 1064,
"time purchase": 3099,
"havent bad": 1234,
"visible store": 3378,
"store problem": 2897,
"day try": 681,
"service use": 2632,
"use doesnt": 3309,
"dont accept": 823,
"purchase good": 2215,
"payment unfortunately": 2016,
"currency country": 630,
"broken payment": 272,
"error shop": 966,
"longer sent": 1555,
"june th": 1404,
"try complete": 3183,
"error order": 963,
"pay possible": 1979,
"add value": 59,
"fast delivery": 1047,
"wasnt accept": 3423,
"work good": 3512,
"today try": 3139,
"daughter order": 661,
"receive money": 2370,
"recommend navigation": 2383,
"order unfortunate": 1891,
"lay slow": 1445,
"problem order": 2148,
"order click": 1807,
"click basket": 461,
"order appear": 1797,
"addition pay": 64,
"work possible": 3537,
"tried time": 3172,
"time annoy": 3051,
"time doesnt": 3063,
"entire purchase": 949,
"return form": 2460,
"tell wrong": 3007,
"time look": 3084,
"basket sell": 214,
"bit difficult": 234,
"switch forth": 2983,
"dont log": 834,
"log addition": 1519,
"screen work": 2536,
"order history": 1834,
"history receive": 1257,
"recommend want": 2393,
"click product": 465,
"product dont": 2179,
"dont product": 840,
"main page": 1611,
"page lot": 1933,
"little difficult": 1489,
"possible try": 2087,
"work satisfied": 3548,
"able log": 4,
"code work": 499,
"work really": 3544,
"easy mobile": 888,
"unfortunately work": 3262,
"possible want": 2088,
"good shop": 1190,
"cart payment": 348,
"bad difficult": 174,
"complicate want": 549,
"bit slow": 238,
"instead bank": 1363,
"session time": 2635,
"bad search": 183,
"slow order": 2784,
"company policy": 529,
"stock send": 2862,
"day customer": 668,
"use card": 3300,
"time switch": 3117,
"order useless": 1895,
"use bad": 3296,
"basket information": 212,
"order second": 1870,
"wont order": 3472,
"transparent intuitive": 3162,
"constantly wrong": 579,
"order shame": 1873,
"shame store": 2651,
"make time": 1632,
"maybe pay": 1652,
"week ago": 3439,
"ago order": 89,
"store bug": 2872,
"possible store": 2085,
"store excellent": 2881,
"work want": 3575,
"pay suddenly": 1984,
"suddenly error": 2943,
"store make": 2891,
"screen enter": 2534,
"charge make": 384,
"make shame": 1629,
"really bad": 2327,
"account try": 41,
"unexpected error": 3232,
"option cancel": 1784,
"dev team": 725,
"order wish": 1902,
"cash pay": 362,
"payment cart": 1992,
"confirmation purchase": 560,
"change language": 381,
"dont option": 838,
"pay shop": 1982,
"shop really": 2677,
"disaster doesnt": 768,
"doesnt open": 813,
"use complete": 3304,
"quick response": 2269,
"write day": 3595,
"want buy": 3395,
"work normally": 3527,
"lot display": 1585,
"display impossible": 789,
"payment short": 2013,
"order problem": 1855,
"time site": 3113,
"site work": 2735,
"immediately payment": 1307,
"payment easy": 1996,
"select country": 2572,
"possible log": 2078,
"dont let": 832,
"let order": 1464,
"discount work": 780,
"possible tablet": 2086,
"tablet landscape": 2990,
"landscape format": 1428,
"come wont": 517,
"didnt discount": 731,
"page open": 1934,
"make little": 1622,
"account havent": 32,
"havent receive": 1237,
"use account": 3294,
"list order": 1483,
"time unfortunately": 3124,
"completely useless": 546,
"cart time": 356,
"doesnt change": 801,
"soon make": 2808,
"useless order": 3350,
"order bad": 1799,
"bad order": 180,
"havent able": 1233,
"quite slow": 2296,
"order display": 1820,
"able order": 6,
"pick store": 2041,
"unable place": 3212,
"button visible": 292,
"order progress": 1858,
"order edit": 1825,
"try register": 3196,
"clear search": 439,
"search filter": 2550,
"filter doesnt": 1082,
"code doesnt": 494,
"pay result": 1980,
"gift card": 1168,
"stock store": 2863,
"service really": 2626,
"really appreciate": 2326,
"dont money": 837,
"unfortunately store": 3258,
"store doesnt": 2877,
"money whats": 1715,
"error unexpected": 972,
"unexpected exception": 3233,
"pay doesnt": 1970,
"work stuck": 3560,
"problem moment": 2147,
"moment dont": 1699,
"day buy": 665,
"buy service": 314,
"pay leave": 1977,
"leave moment": 1456,
"option order": 1787,
"entire message": 948,
"want open": 3404,
"store shopping": 2907,
"cart work": 358,
"save password": 2512,
"card switch": 335,
"page payment": 1936,
"order purchase": 1859,
"money send": 1711,
"product bad": 2175,
"immediately uninstalled": 1308,
"catastrophic forever": 368,
"forever load": 1120,
"load purchase": 1503,
"enter delivery": 940,
"delivery address": 700,
"package supposedly": 1925,
"quality payment": 2244,
"option doesnt": 1786,
"discount unfortunately": 778,
"bad discount": 175,
"link banking": 1474,
"impossible use": 1320,
"didnt buy": 730,
"data correctly": 652,
"work despite": 3499,
"update impossible": 3283,
"money company": 1704,
"doesnt send": 819,
"error end": 958,
"time message": 3087,
"message work": 1677,
"error constantly": 955,
"open second": 1773,
"bad use": 192,
"use experience": 3314,
"cart pay": 347,
"money twice": 1714,
"order site": 1875,
"allow work": 95,
"dont confirmation": 826,
"real shame": 2320,
"use quickly": 3333,
"quickly overview": 2283,
"order information": 1836,
"payment status": 2014,
"disaster problem": 770,
"page error": 1931,
"error white": 973,
"page work": 1941,
"make credit": 1617,
"code order": 495,
"difficult place": 744,
"validate payment": 3360,
"page white": 1940,
"really clothes": 2329,
"accept addition": 18,
"lot pay": 1593,
"properly soon": 2204,
"soon want": 2811,
"clear problem": 433,
"terrible time": 3015,
"try problem": 3195,
"site pay": 2730,
"order invoice": 1837,
"hope work": 1274,
"filter search": 1084,
"search choose": 2543,
"choose color": 406,
"store stock": 2910,
"room": 2476,
"graphic": 1200,
"obvious": 1757,
"chance": 379,
"success": 2937,
"cover": 618,
"image": 1300,
"annoying": 113,
"deactivate": 684,
"reception": 2377,
"annoyance": 112,
"zoom": 3608,
"bore": 254,
"simple": 2714,
"structured": 2925,
"endless": 927,
"bite": 239,
"navigate": 1723,
"luck": 1605,
"individual": 1342,
"review": 2470,
"glass": 1173,
"st": 2827,
"note": 1748,
"state": 2844,
"preview": 2122,
"feedback": 1072,
"youve": 3604,
"unbelievably": 3216,
"prepared": 2112,
"presentation": 2115,
"speed": 2823,
"loop": 1578,
"exactly": 984,
"worked": 3582,
"heart": 1243,
"fit": 1102,
"performance": 2022,
"surf": 2976,
"potential": 2092,
"developer": 726,
"displayed": 794,
"oh": 1763,
"encourage": 925,
"crash": 621,
"unstable": 3274,
"fairly": 1035,
"narrow": 1722,
"pretty": 2119,
"nonexistent": 1743,
"hide": 1251,
"impression": 1322,
"feel": 1073,
"specific": 2819,
"average": 159,
"phenomenal": 2029,
"drive": 861,
"table": 2988,
"photo": 2034,
"enlarge": 933,
"partly": 1953,
"unavailable": 3213,
"significant": 2710,
"advertising": 80,
"build": 286,
"inconvenient": 1331,
"default": 691,
"hit": 1258,
"relatively": 2420,
"measurement": 1655,
"scroll": 2537,
"guide": 1206,
"specify": 2821,
"rarely": 2305,
"hear": 1242,
"minute": 1684,
"design": 715,
"fluidity": 1115,
"category": 369,
"easier": 866,
"sort": 2813,
"usable": 3291,
"share": 2653,
"department": 711,
"slightly": 2773,
"layout": 1446,
"remember": 2431,
"embarrass": 923,
"searching": 2562,
"correspond": 607,
"hammer": 1213,
"manageable": 1636,
"limited": 1471,
"extent": 1020,
"tedious": 3000,
"stays": 2855,
"pure": 2223,
"anger": 101,
"standard": 2833,
"chart": 385,
"base": 206,
"satisfaction": 2490,
"contain": 584,
"la": 1420,
"summary": 2950,
"urgently": 3290,
"non": 1742,
"icon": 1284,
"hopefully": 1275,
"bring": 270,
"unresponsive": 3273,
"better": 222,
"spoil": 2825,
"clothe": 471,
"rating": 2308,
"term": 3009,
"significantly": 2711,
"jerky": 1398,
"outfit": 1913,
"interface": 1371,
"sudden": 2940,
"erased": 952,
"avoid": 160,
"interesting": 1369,
"sin": 2724,
"reduce": 2402,
"destination": 723,
"news": 1736,
"consult": 580,
"immediate": 1304,
"clarity": 415,
"house": 1281,
"reality": 2322,
"handle": 1215,
"material": 1645,
"occur": 1759,
"edge": 915,
"accordingly": 28,
"used": 3347,
"stuff": 2931,
"underground": 3226,
"label": 1421,
"light": 1469,
"guess": 1203,
"skirt": 2772,
"mean": 1653,
"oblige": 1755,
"zip": 3606,
"city": 413,
"dress": 860,
"jewelry": 1399,
"hair": 1207,
"word": 3475,
"space": 2815,
"corner": 602,
"translation": 3158,
"invest": 1382,
"dead": 685,
"pointless": 2063,
"laborious": 1422,
"shut": 2709,
"current": 631,
"tap": 2992,
"modest": 1696,
"felt": 1076,
"reinstall": 2418,
"unreservedly": 3272,
"vain": 3356,
"member": 1658,
"blouse": 249,
"interested": 1368,
"enjoy": 930,
"condition": 556,
"teen": 3001,
"unnecessarily": 3266,
"large": 1432,
"chop": 409,
"protection": 2206,
"activate": 46,
"disabled": 758,
"disable": 757,
"research": 2440,
"consistently": 570,
"ahead": 91,
"discourage": 781,
"related": 2419,
"solid": 2800,
"pain": 1942,
"dirt": 756,
"specialist": 2818,
"kick": 1407,
"bumpy": 287,
"intrusive": 1375,
"unobtrusive": 3269,
"readable": 2315,
"soon ill": 2807,
"buy dont": 301,
"room improvement": 2477,
"work clear": 3487,
"time hope": 3073,
"long load": 1534,
"product load": 2181,
"completely annoy": 543,
"super annoying": 2954,
"register time": 2411,
"search function": 2551,
"late update": 1437,
"time open": 3089,
"open product": 1772,
"doesnt help": 806,
"error restart": 964,
"available size": 154,
"size doesnt": 2746,
"doesnt load": 809,
"load doesnt": 1499,
"lot long": 1590,
"work choose": 3486,
"simple clear": 2715,
"load screen": 1505,
"work day": 3498,
"annoy dont": 104,
"access browser": 24,
"incredibly slow": 1339,
"load time": 1507,
"slow lot": 2783,
"doesnt save": 817,
"fast clear": 1044,
"easy navigate": 889,
"service suddenly": 2630,
"suddenly work": 2947,
"work restart": 3546,
"search doesnt": 2548,
"doesnt update": 820,
"click article": 460,
"time despite": 3060,
"load clear": 1497,
"load really": 1504,
"time really": 3102,
"quite long": 2294,
"say easy": 2516,
"use purchase": 3330,
"slow forever": 2781,
"shopping fun": 2698,
"fun search": 1147,
"hang work": 1221,
"presentation clear": 2116,
"unfortunately load": 3247,
"short time": 2706,
"forever dont": 1119,
"repeat time": 2435,
"time click": 3056,
"thrown time": 3048,
"log day": 1520,
"day log": 672,
"log set": 1527,
"longer possible": 1553,
"add list": 57,
"dont search": 844,
"search search": 2555,
"search clear": 2544,
"bit long": 237,
"clear quite": 437,
"shame doesnt": 2642,
"doesnt offer": 812,
"little slow": 1492,
"slow clear": 2775,
"quickly slow": 2289,
"work complain": 3490,
"log log": 1522,
"wait moment": 3389,
"time shop": 3112,
"load little": 1501,
"little long": 1491,
"actually big": 49,
"shop unfortunately": 2686,
"unfortunately hardly": 3244,
"possible moment": 2080,
"dont feel": 829,
"look look": 1568,
"store search": 2904,
"search item": 2552,
"miss search": 1687,
"filter function": 1083,
"long loading": 1535,
"annoy shop": 108,
"shop store": 2682,
"bad work": 193,
"bad long": 179,
"time want": 3128,
"super super": 2966,
"really long": 2335,
"difficult slow": 746,
"make work": 1633,
"work say": 3550,
"say try": 2522,
"try later": 3186,
"time super": 3116,
"slow really": 2787,
"terribly slow": 3018,
"drive crazy": 862,
"dont time": 847,
"size table": 2766,
"easy understand": 909,
"order excellent": 1828,
"update doesnt": 3282,
"doesnt display": 802,
"work doesnt": 3501,
"quickly clear": 2276,
"wish list": 3462,
"fun miss": 1146,
"havent try": 1239,
"finally favorite": 1093,
"reload time": 2426,
"hope improve": 1271,
"structure look": 2924,
"quite quickly": 2295,
"open load": 1770,
"plus size": 2058,
"scan code": 2529,
"work completely": 3491,
"list unfortunately": 1486,
"work able": 3477,
"really dont": 2330,
"search long": 2553,
"quality bad": 2227,
"bad color": 170,
"color dont": 505,
"update problem": 3287,
"whats happen": 3447,
"work update": 3573,
"clear order": 429,
"select good": 2573,
"order super": 1882,
"load forever": 1500,
"unfortunate good": 3235,
"good little": 1183,
"complete disaster": 537,
"way slow": 3433,
"time error": 3065,
"bite clear": 240,
"slow search": 2789,
"know terrible": 1416,
"clear relatively": 438,
"blank page": 243,
"time process": 3097,
"item longer": 1391,
"structure absolutely": 2923,
"whats really": 3449,
"measurement table": 1656,
"size guide": 2751,
"work correctly": 3494,
"shame size": 2650,
"size buy": 2741,
"buy overall": 307,
"bad unfortunately": 191,
"availability directly": 143,
"account rarely": 37,
"phone number": 2032,
"time information": 3076,
"image work": 1302,
"work hand": 3513,
"clear simple": 443,
"view product": 3374,
"dont buy": 824,
"buy look": 305,
"display available": 786,
"category lot": 370,
"unfortunately save": 3254,
"size size": 2763,
"click add": 459,
"add wish": 60,
"later work": 1443,
"view selection": 3375,
"selection small": 2586,
"start time": 2843,
"super annoy": 2953,
"article view": 131,
"dont work": 853,
"available time": 157,
"time easy": 3064,
"log profile": 1526,
"work suppose": 3562,
"receive good": 2367,
"work simple": 3554,
"stuck dont": 2927,
"leave come": 1452,
"come long": 513,
"long page": 1539,
"currently sort": 633,
"restart time": 2454,
"time problem": 3096,
"order possible": 1853,
"installation work": 1361,
"size user": 2768,
"user friendly": 3352,
"home screen": 1264,
"menu look": 1666,
"unfortunately search": 3255,
"whats wrong": 3451,
"work fast": 3508,
"annoy sell": 107,
"doesnt remember": 816,
"thing wish": 3032,
"color available": 504,
"annoy work": 111,
"work forever": 3511,
"say didnt": 2515,
"work actually": 3478,
"order future": 1832,
"display start": 792,
"cart complete": 343,
"overview quickly": 1922,
"select article": 2571,
"difficult use": 749,
"different color": 740,
"look place": 1569,
"time leave": 3078,
"leave completely": 1453,
"annoy long": 105,
"order really": 1862,
"work strange": 3559,
"day constantly": 667,
"unusable bad": 3278,
"ship time": 2656,
"update long": 3285,
"list menu": 1482,
"overview article": 1918,
"return search": 2465,
"search stick": 2557,
"shop look": 2672,
"list pity": 1485,
"watch work": 3429,
"properly long": 2203,
"page page": 1935,
"update work": 3288,
"come end": 510,
"product satisfy": 2187,
"select product": 2574,
"basket update": 216,
"menu bit": 1665,
"available satisfied": 152,
"satisfied work": 2498,
"hardly work": 1229,
"work look": 3522,
"look item": 1567,
"click different": 463,
"list page": 1484,
"standard size": 2835,
"size chart": 2742,
"range size": 2304,
"color product": 507,
"buy time": 319,
"look time": 1576,
"time fun": 3071,
"work long": 3520,
"selection dont": 2579,
"clear practical": 432,
"slow complicate": 2776,
"want step": 3416,
"step start": 2858,
"start begin": 2840,
"error doesnt": 957,
"doesnt good": 804,
"finish shopping": 1101,
"matter extremely": 1648,
"product information": 2180,
"display doesnt": 788,
"didnt help": 733,
"display correctly": 787,
"color article": 503,
"page annoy": 1927,
"shop fun": 2671,
"restart doesnt": 2452,
"try log": 3187,
"complete process": 540,
"easy set": 902,
"set dont": 2637,
"wouldnt bad": 3591,
"easy browse": 874,
"message restart": 1672,
"hopefully work": 1276,
"work stay": 3558,
"slowly time": 2795,
"problem work": 2156,
"search use": 2560,
"use work": 3346,
"doesnt search": 818,
"work filter": 3509,
"make sure": 1631,
"log shop": 1528,
"cart lose": 345,
"sale sell": 2488,
"want look": 3402,
"information product": 1352,
"hope resolve": 1272,
"doesnt allow": 797,
"come search": 514,
"use available": 3295,
"want search": 3412,
"item number": 1392,
"relatively clear": 2421,
"practical unfortunately": 2100,
"product page": 2184,
"half image": 1211,
"page bad": 1928,
"difficult search": 745,
"constantly load": 575,
"work thing": 3564,
"order clear": 1806,
"time select": 3110,
"article sudden": 130,
"sudden half": 2941,
"half bad": 1209,
"engine erased": 929,
"erased short": 953,
"short absolutely": 2705,
"absolutely avoid": 15,
"list click": 1479,
"interesting shame": 1370,
"display unfortunately": 793,
"enter country": 939,
"look product": 1570,
"product time": 2189,
"product type": 2190,
"thing want": 3031,
"filter size": 1085,
"size really": 2760,
"especially want": 979,
"totally useless": 3147,
"doesnt really": 815,
"unfortunately immediately": 3245,
"use lot": 3322,
"unfortunately longer": 3248,
"slow dont": 2778,
"open long": 1771,
"load wish": 1508,
"friendly shop": 1138,
"annoy look": 106,
"want shop": 3415,
"image display": 1301,
"problem quick": 2149,
"work havent": 3514,
"able view": 11,
"dont load": 833,
"look search": 1573,
"open article": 1768,
"item display": 1390,
"product display": 2178,
"disaster update": 772,
"update longer": 3286,
"finally shop": 1097,
"order easy": 1824,
"search shame": 2556,
"shame work": 2652,
"option change": 1785,
"want choose": 3397,
"unfortunately unexpected": 3260,
"error start": 968,
"hang page": 1220,
"page product": 1937,
"convenient clear": 594,
"clear quick": 435,
"view order": 3373,
"constantly long": 576,
"watch home": 3428,
"error time": 970,
"half year": 1212,
"enter search": 944,
"work constant": 3492,
"enlarge big": 934,
"background whats": 167,
"whats suppose": 3450,
"suppose mean": 2973,
"hardly usable": 1228,
"shame make": 2645,
"buy try": 320,
"slow fast": 2780,
"fast fast": 1050,
"fun slow": 1149,
"say work": 2524,
"bit high": 236,
"enter zip": 945,
"zip code": 3607,
"search difficult": 2547,
"search category": 2542,
"search come": 2546,
"bad completely": 171,
"lot dont": 1586,
"open browse": 1769,
"store really": 2900,
"time extremely": 3066,
"log doesnt": 1521,
"work super": 3561,
"size available": 2740,
"available bad": 146,
"bad really": 182,
"intuitive use": 1379,
"use load": 3318,
"leave briefly": 1451,
"browser version": 281,
"browser page": 278,
"problem log": 2144,
"use time": 3344,
"time lot": 3085,
"use longer": 3320,
"use easily": 3311,
"able complete": 3,
"order page": 1850,
"thing order": 3026,
"overview easy": 1919,
"easy faster": 882,
"service disaster": 2617,
"doesnt matter": 811,
"slow work": 2792,
"favorite store": 1069,
"slow recently": 2788,
"try access": 3180,
"product unfortunately": 2191,
"clearly structure": 456,
"right away": 2473,
"lot patience": 1592,
"try unfortunately": 3200,
"doesnt appear": 798,
"site doesnt": 2728,
"place super": 2050,
"problem unfortunately": 2154,
"time real": 3101,
"work shame": 3552,
"time search": 3108,
"look dont": 1563,
"dont care": 825,
"really enjoy": 2332,
"enjoy shop": 931,
"shop think": 2684,
"size clear": 2743,
"use filter": 3316,
"want product": 3408,
"immediately look": 1306,
"product restart": 2186,
"difficult doesnt": 743,
"unnecessarily complicate": 3267,
"large size": 1435,
"open time": 1774,
"matter click": 1647,
"possible search": 2084,
"load annoy": 1495,
"data protection": 655,
"work place": 3535,
"disaster really": 771,
"use pity": 3325,
"bad doesnt": 176,
"work think": 3565,
"turn completely": 3203,
"look scroll": 1572,
"unfortunately unusable": 3261,
"clearly lay": 454,
"work message": 3525,
"log message": 1523,
"try check": 3182,
"message time": 1675,
"time log": 3081,
"click restart": 466,
"start search": 2842,
"search case": 2541,
"order slow": 1877,
"time incredibly": 3075,
"good terrible": 1191,
"time filter": 3069,
"constantly want": 578,
"want view": 3418,
"catastrophic constantly": 367,
"ill shop": 1298,
"shop time": 2685,
"update log": 3284,
"error soon": 967,
"soon product": 2809,
"time option": 3090,
"want review": 3411,
"filter want": 1086,
"unfortunately bad": 3238,
"restart message": 2453,
"mode doesnt": 1693,
"look filter": 1565,
"size use": 2767,
"language set": 1431,
"didnt let": 734,
"sell display": 2592,
"time update": 3125,
"order preview": 1854,
"extra": 1021,
"comfortable": 521,
"modern": 1695,
"clothing": 485,
"surprise": 2977,
"particular": 1951,
"cheap": 386,
"impeccable": 1309,
"event": 982,
"painful": 1943,
"affordable": 83,
"men": 1661,
"wear": 3436,
"glad": 1170,
"grandma": 1198,
"magazine": 1607,
"variety": 3364,
"ease": 865,
"delight": 697,
"wash": 3421,
"consumer": 581,
"notice": 1749,
"inexpensive": 1344,
"transparency": 3159,
"organic": 1907,
"beautifully": 217,
"assortment": 133,
"arent": 127,
"certainly": 376,
"young": 3602,
"measure": 1654,
"discrimination": 783,
"local": 1511,
"messy": 1678,
"realize": 2323,
"reasonable": 2353,
"comfort": 519,
"consistent": 568,
"height": 1244,
"finding": 1098,
"nearby": 1726,
"relevant": 2423,
"coat": 492,
"present": 2114,
"important": 1311,
"ratio": 2309,
"covid": 619,
"minus": 1683,
"garment": 1161,
"bargain": 205,
"china": 398,
"chain": 377,
"guidance": 1205,
"spectacular": 2822,
"season": 2563,
"travel": 3165,
"bravo": 264,
"shipping": 2658,
"confidence": 557,
"lately": 1438,
"acceptable": 20,
"accord": 27,
"couch": 612,
"opportunity": 1780,
"saleswoman": 2489,
"increasingly": 1336,
"sustainable": 2979,
"chic": 395,
"individually": 1343,
"girl": 1169,
"red": 2398,
"son": 2804,
"cotton": 611,
"summer": 2951,
"glance": 1172,
"staff": 2830,
"soft": 2799,
"divide": 795,
"eat": 914,
"responsible": 2449,
"chubby": 412,
"disappointment": 766,
"abandon": 0,
"mango": 1639,
"discover": 782,
"rely": 2427,
"indicate": 1340,
"optional": 1790,
"plenty": 2056,
"mainly": 1612,
"budget": 283,
"fair": 1031,
"merchandise": 1668,
"brief": 266,
"moderate": 1694,
"basic": 207,
"waist": 3383,
"polo": 2066,
"prompt": 2199,
"expand": 1004,
"storage": 2868,
"inform": 1345,
"boy": 258,
"prepare": 2111,
"fantastic": 1039,
"elegant": 922,
"separate": 2609,
"grade": 1196,
"trend": 3167,
"level": 1466,
"informative": 1353,
"surprising": 2978,
"answer": 115,
"bon": 251,
"area": 126,
"grandchild": 1197,
"advice": 81,
"wool": 3474,
"outside": 1914,
"damage": 647,
"polyester": 2067,
"bought": 255,
"buyer": 322,
"random": 2299,
"spring": 2826,
"join": 1401,
"implementation": 1310,
"brilliant": 269,
"shot": 2707,
"amazing": 99,
"worry": 3585,
"similarly": 2713,
"feel comfortable": 1074,
"size look": 2754,
"pretty easy": 2121,
"clothes quality": 480,
"quality especially": 2234,
"delivery day": 702,
"quality clothes": 2229,
"cheap affordable": 387,
"prefer use": 2108,
"option save": 1788,
"data save": 656,
"quality super": 2258,
"really want": 2348,
"size sell": 2761,
"buy size": 316,
"store fit": 2883,
"fit try": 1106,
"poor quality": 2069,
"easily look": 869,
"time difficult": 3062,
"quality really": 2250,
"enjoy shopping": 932,
"selection size": 2585,
"size color": 2744,
"item time": 1395,
"sell shame": 2598,
"sell mark": 2594,
"especially time": 978,
"clothing store": 489,
"size arent": 2738,
"large selection": 1434,
"selection order": 2582,
"use quite": 3334,
"clothes friendly": 477,
"young old": 3603,
"right size": 2475,
"recommend quality": 2385,
"customer buy": 636,
"really shop": 2341,
"shop clothes": 2665,
"delivery service": 708,
"item basket": 1389,
"family quality": 1038,
"order clothes": 1808,
"clear pity": 431,
"super easy": 2956,
"good available": 1176,
"time fast": 3068,
"fast shopping": 1058,
"clothes work": 484,
"really quality": 2337,
"quality large": 2238,
"pretty clothes": 2120,
"comfort home": 520,
"display shop": 791,
"available clear": 147,
"consistent size": 569,
"uncomplicated process": 3223,
"process clear": 2161,
"clear functional": 426,
"clothing shop": 487,
"quality clothing": 2230,
"long unfortunately": 1544,
"unfortunately return": 3253,
"lot clothes": 1584,
"fast safe": 1054,
"comfortable fast": 522,
"store nearby": 2892,
"size fast": 2747,
"clothes excellent": 474,
"shopping site": 2700,
"super practical": 2960,
"clothes satisfied": 481,
"reasonably price": 2359,
"look clothes": 1562,
"use quality": 3331,
"time quality": 3100,
"overview selection": 1923,
"selection quality": 2583,
"ratio right": 2311,
"easy access": 872,
"big minus": 224,
"easy practical": 893,
"practical comfortable": 2095,
"money fast": 1706,
"delivery clothes": 701,
"order fit": 1831,
"day receive": 677,
"order size": 1876,
"available store": 155,
"time result": 3104,
"big size": 226,
"leave home": 1455,
"quality site": 2256,
"site reliable": 2732,
"sell clothes": 2591,
"quality service": 2255,
"choice clothing": 400,
"look super": 1575,
"use practical": 3327,
"choose clear": 405,
"clear information": 427,
"lot choice": 1583,
"quality price": 2247,
"price satisfied": 2132,
"cheap super": 389,
"try home": 3185,
"chain store": 378,
"cart regularly": 350,
"time hardly": 3072,
"improvement easy": 1326,
"quality practical": 2245,
"practical easy": 2096,
"use simple": 3340,
"easy return": 899,
"size quickly": 2759,
"excellent quality": 991,
"clothes order": 479,
"probably store": 2139,
"care work": 337,
"work quick": 3541,
"variety family": 3365,
"size generally": 2750,
"basket search": 213,
"search clothes": 2545,
"clothes convenient": 473,
"correct delivery": 604,
"delivery quality": 707,
"directly store": 755,
"store service": 2905,
"buy quality": 312,
"quality use": 2260,
"want finalize": 3401,
"unfortunately annoy": 3237,
"shopping convenient": 2693,
"clothes fast": 475,
"clothing quality": 486,
"quality fast": 2235,
"fast ship": 1057,
"try store": 3198,
"doesnt fit": 803,
"fit return": 1105,
"return straight": 2468,
"store especially": 2880,
"buy terrible": 318,
"terrible service": 3014,
"store size": 2908,
"size filter": 2748,
"time buy": 3055,
"clothing size": 488,
"size know": 2753,
"store try": 2914,
"excellent store": 994,
"old people": 1766,
"especially size": 977,
"type product": 3207,
"quality recommend": 2252,
"recommend order": 2384,
"size small": 2764,
"wouldnt let": 3592,
"worth store": 3588,
"store quality": 2899,
"come time": 516,
"fast reliable": 1053,
"use look": 3321,
"shopping store": 2701,
"clothes want": 483,
"fashion shop": 1041,
"quality doesnt": 2232,
"size zip": 2769,
"clear affordable": 419,
"item shop": 1393,
"thing size": 3029,
"simple use": 2722,
"lot shop": 1596,
"shop buy": 2661,
"absolute favorite": 13,
"store clear": 2876,
"think unfortunately": 3043,
"size availability": 2739,
"havent super": 1238,
"selection large": 2580,
"size quality": 2758,
"list doesnt": 1480,
"allow add": 94,
"cart slow": 353,
"prefer try": 2107,
"quality size": 2257,
"payment delivery": 1995,
"stationary store": 2847,
"soon store": 2810,
"store large": 2888,
"satisfy quality": 2507,
"wide choice": 3457,
"shop son": 2681,
"think collection": 3034,
"experience bad": 1008,
"kind order": 1409,
"quite clearly": 2293,
"stay date": 2852,
"order lot": 1842,
"large collection": 1433,
"quality quality": 2249,
"friendly staff": 1139,
"size fit": 2749,
"clothes finally": 476,
"comfortable quality": 523,
"way buy": 3431,
"total disappointment": 3144,
"clear size": 444,
"size order": 2756,
"quickly look": 2282,
"selection little": 2581,
"fact order": 1028,
"tap item": 2993,
"size stock": 2765,
"say look": 2519,
"look buy": 1560,
"shop dont": 2667,
"order store": 1880,
"store chain": 2875,
"unfortunately star": 3257,
"star store": 2838,
"store availability": 2870,
"work item": 3518,
"bad size": 187,
"add basket": 55,
"price right": 2131,
"site store": 2734,
"cheap quality": 388,
"price quality": 2129,
"quality comfortable": 2231,
"size modern": 2755,
"fair quality": 1034,
"fit recommend": 1104,
"return easy": 2458,
"think store": 3042,
"product overview": 2183,
"easily add": 868,
"satisfy friendly": 2502,
"hardly available": 1227,
"shame order": 2646,
"add shop": 58,
"easy shop": 903,
"use bit": 3298,
"easy want": 911,
"affordable price": 84,
"local branch": 1512,
"choose size": 408,
"easy hope": 885,
"people dont": 2021,
"come store": 515,
"sell usually": 2600,
"usually fit": 3355,
"display second": 790,
"explanation short": 1019,
"price performance": 2128,
"quality lot": 2240,
"quality choose": 2228,
"point store": 2062,
"time store": 3115,
"color item": 506,
"prompt delivery": 2200,
"price use": 2135,
"quality affordable": 2226,
"customer work": 644,
"disaster order": 769,
"dont return": 843,
"wasnt possible": 3424,
"size shame": 2762,
"shame clothes": 2641,
"definitely use": 693,
"use really": 3335,
"dont fit": 830,
"practical look": 2097,
"close store": 470,
"think especially": 3035,
"sort shop": 2814,
"shop lot": 2673,
"usually affordable": 3354,
"high quality": 1253,
"quality long": 2239,
"big store": 227,
"fun shopping": 1148,
"quality satisfy": 2254,
"reasonable price": 2355,
"shopping cheap": 2692,
"constantly sell": 577,
"usable mobile": 3292,
"mobile data": 1691,
"want clothes": 3399,
"stuff bad": 2932,
"easy quality": 895,
"reasonable worth": 2357,
"shopping time": 2702,
"look quality": 1571,
"clothes list": 478,
"today super": 3138,
"know buy": 1411,
"search store": 2558,
"store intuitive": 2886,
"easy navigation": 890,
"store lot": 2890,
"unfortunately lot": 3249,
"price store": 2134,
"choice quality": 402,
"bought clothes": 256,
"make look": 1623,
"selection affordable": 2578,
"fit easy": 1103,
"stay way": 2854,
"order want": 1898,
"havent use": 1240,
"color white": 508,
"stay store": 2853,
"good good": 1180,
"know store": 1415,
"store know": 2887,
"know quality": 1413,
"additional": 65,
"laid": 1425,
"peace": 2019,
"class": 416,
"operation": 1778,
"handling": 1216,
"blind": 244,
"orientation": 1909,
"intuitively": 1380,
"conclusive": 555,
"effective": 917,
"efficiently": 920,
"entirely": 950,
"understandable": 3229,
"adequate": 72,
"walk": 3392,
"nickel": 1740,
"agile": 87,
"clearer": 451,
"premium": 2110,
"advantage": 77,
"truly": 3176,
"wonderfully": 3466,
"operate": 1777,
"excellently": 997,
"professional": 2192,
"leisure": 1460,
"urgent": 3289,
"lots": 1599,
"attractive": 138,
"ra": 2298,
"downside": 856,
"convenience": 592,
"timely": 3133,
"recommend easy": 2381,
"work easily": 3503,
"easy intuitive": 886,
"store recommend": 2901,
"think really": 3039,
"really clear": 2328,
"use product": 3329,
"easy quick": 896,
"shop especially": 2669,
"feel free": 1075,
"good quite": 1185,
"uncomplicated easy": 3220,
"use shopping": 3339,
"really excellent": 2333,
"time browse": 3053,
"menu navigation": 1667,
"instead clear": 1364,
"quickly quickly": 2287,
"use fast": 3315,
"super simple": 2964,
"really simple": 2342,
"easy handling": 884,
"able shop": 9,
"excellent clear": 987,
"flawlessly clear": 1112,
"intuitive shopping": 1378,
"clearly design": 453,
"convenient use": 599,
"fair large": 1032,
"faster easy": 1062,
"super clear": 2955,
"clear selection": 440,
"functional easy": 1154,
"easy look": 887,
"easy clear": 876,
"use pleasant": 3326,
"pleasant shopping": 2054,
"shopping experience": 2696,
"browser really": 279,
"really easy": 2331,
"easy work": 913,
"clear user": 449,
"work uncomplicated": 3570,
"uncomplicated good": 3222,
"look clear": 1561,
"clear quickly": 436,
"clear shopping": 442,
"shopping easy": 2695,
"easy simple": 904,
"simple practical": 2717,
"clear quality": 434,
"quality easy": 2233,
"use comfortable": 3303,
"clearly lot": 455,
"lot selection": 1595,
"quickly efficiently": 2279,
"range clear": 2302,
"use shop": 3338,
"convenient fast": 596,
"suppose easy": 2972,
"time product": 3098,
"simple simple": 2719,
"clear clear": 421,
"fast correct": 1046,
"easy smooth": 905,
"smooth clear": 2798,
"fast simple": 1059,
"easy recommend": 898,
"work intuitive": 3517,
"satisfied recommend": 2497,
"recommend store": 2389,
"buy recommend": 313,
"recommend recommend": 2386,
"quick use": 2272,
"want quickly": 3410,
"excellent simple": 993,
"use regularly": 3336,
"recommend satisfied": 2387,
"practical simple": 2099,
"convenient shop": 598,
"easy super": 907,
"simple uncomplicated": 2721,
"easy process": 894,
"process simple": 2170,
"buy easy": 302,
"use want": 3345,
"use little": 3317,
"fast easy": 1048,
"order easily": 1823,
"little easy": 1490,
"product look": 2182,
"filter work": 1087,
"work recommend": 3545,
"super handy": 2959,
"handy fast": 1218,
"fast quickly": 1052,
"transparent clear": 3161,
"really store": 2343,
"clear super": 445,
"easy overview": 892,
"overview quick": 1921,
"quality pretty": 2246,
"design easy": 716,
"finally really": 1096,
"simple easy": 2716,
"complicate look": 548,
"look easily": 1564,
"work quickly": 3542,
"quickly easy": 2278,
"lot easy": 1587,
"clear think": 446,
"really recommend": 2340,
"wonderfully clear": 3467,
"overview quality": 1920,
"select shop": 2575,
"shop super": 2683,
"easy easy": 880,
"use dont": 3310,
"easy quickly": 897,
"ratio easy": 2310,
"quickly good": 2281,
"easy clearly": 877,
"clear transparent": 447,
"quickly simple": 2288,
"dont thing": 845,
"easy selection": 901,
"search big": 2540,
"information available": 1347,
"available recommend": 151,
"fun browse": 1144,
"browse shop": 275,
"quick quality": 2268,
"easy sort": 906,
"selection reasonable": 2584,
"reasonable lot": 2354,
"lot room": 1594,
"problem easy": 2142,
"quality favorite": 2236,
"size information": 2752,
"quality time": 2259,
"order selection": 1871,
"process work": 2172,
"look work": 1577,
"use quick": 3332,
"site fast": 2729,
"clear shop": 441,
"use process": 3328,
"process time": 2171,
"site recommend": 2731,
"feature": 1070,
"bag": 195,
"overdue": 1916,
"alternative": 96,
"increase": 1335,
"enthusiastic": 946,
"praise": 2102,
"relax": 2422,
"times": 3134,
"childhood": 397,
"friendliness": 1135,
"dutch": 864,
"seriously": 2611,
"conveniently": 600,
"child": 396,
"effectively": 918,
"vast": 3370,
"calculate": 324,
"comfortably": 524,
"club": 490,
"advantageous": 78,
"listen": 1487,
"warehouse": 3419,
"vary": 3369,
"gladly": 1171,
"visually": 3380,
"store staff": 2909,
"staff easy": 2831,
"store store": 2911,
"home easy": 1262,
"shop easy": 2668,
"satisfied customer": 2493,
"return good": 2461,
"easy time": 908,
"process quick": 2165,
"shop experience": 2670,
"shop shop": 2678,
"long sell": 1541,
"sell immediately": 2593,
"product sell": 2188,
"click collect": 462,
"long overdue": 1538,
"shop work": 2689,
"work customer": 3495,
"good sell": 1188,
"alternative shopping": 97,
"super friendly": 2958,
"day come": 666,
"easy buy": 875,
"use convenient": 3305,
"service satisfy": 2627,
"satisfy price": 2506,
"shop better": 2660,
"satisfy easy": 2501,
"service bad": 2614,
"thing shop": 3028,
"time place": 3095,
"bit expensive": 235,
"easy convenient": 878,
"shop cheap": 2663,
"log shopping": 1529,
"home shopping": 1265,
"generally satisfy": 1165,
"buy want": 321,
"recommend think": 2390,
"work satisfy": 3549,
"satisfy satisfy": 2508,
"satisfy clear": 2500,
"buy shop": 315,
"dont experience": 828,
"experience store": 1015,
"thing easy": 3025,
"unfortunately redeem": 3252,
"work soon": 3557,
"store good": 2884,
"store available": 2871,
"browse order": 274,
"service buy": 2615,
"recommend time": 2391,
"buy brand": 297,
"reason shop": 2352,
"shop quickly": 2676,
"order product": 1857,
"shop shopping": 2679,
"shopping use": 2703,
"practical shopping": 2098,
"quality reasonable": 2251,
"satisfy order": 2504,
"pity use": 2047,
"able make": 5,
"terrible prefer": 3013,
"shopping fast": 2697,
"fast efficient": 1049,
"check store": 393,
"choice service": 403,
"store price": 2896,
"service quality": 2624,
"quality work": 2261,
"work web": 3577,
"money reason": 1709,
"shopping shop": 2699,
"super fast": 2957,
"id look": 1286,
"uncomplicated fast": 3221,
"good satisfy": 1187,
"shop site": 2680,
"friendly experience": 1137,
"problem want": 2155,
"buy customer": 300,
"convenient easy": 595,
"leave store": 1458,
"right satisfy": 2474,
"use excellent": 3313,
"service easy": 2620,
"log account": 1518,
"wrong password": 3597,
"sell annoy": 2590,
"disappoint especially": 762,
"buy buy": 298,
"easily shop": 870,
"buy fast": 303,
"fast service": 1056,
"sell page": 2595,
"ill store": 1299,
"work matter": 3524,
"store provide": 2898,
"account possible": 36,
"order disappoint": 1818,
"simple quick": 2718,
"quick efficient": 2267,
"experience hope": 1011,
"fair price": 1033,
"return shop": 2466,
"customer loyalty": 639,
"buy bad": 296,
"doesnt make": 810,
"make sense": 1628,
"card store": 334,
"sell shop": 2599,
"store fast": 2882,
"want touch": 3417,
"excellent shop": 992,
"service fast": 2621,
"offer really": 1761,
"professional service": 2193,
"home time": 1266,
"store immediately": 2885,
"product available": 2174,
"available shop": 153,
"standard answer": 2834,
"hate": 1231,
"birthday": 230,
"deliver": 698,
"unbelievable": 3215,
"impudence": 1327,
"print": 2137,
"tend": 3008,
"true": 3175,
"patient": 1962,
"trade": 3152,
"maximum": 1650,
"weve": 3445,
"office": 1762,
"notify": 1751,
"busy": 290,
"excessive": 999,
"notch": 1747,
"deposit": 713,
"client": 467,
"subject": 2935,
"steal": 2856,
"careful": 338,
"count": 613,
"honest": 1268,
"courier": 616,
"grandson": 1199,
"land": 1426,
"obtain": 1756,
"drop": 863,
"ser": 2610,
"ordeal": 1791,
"route": 2478,
"gorgeous": 1194,
"network": 1735,
"province": 2208,
"workmanship": 3583,
"lucky": 1606,
"resolution": 2443,
"delivery time": 710,
"extremely satisfied": 1025,
"customer time": 643,
"order experience": 1829,
"time little": 3079,
"long ship": 1542,
"service quick": 2625,
"day long": 673,
"quickly available": 2275,
"suddenly longer": 2944,
"available order": 149,
"available work": 158,
"day ago": 663,
"super satisfy": 2963,
"satisfied easy": 2494,
"lot order": 1591,
"receive automatic": 2364,
"order quality": 1860,
"super quick": 2961,
"suddenly sell": 2945,
"understandable super": 3230,
"year ago": 3599,
"quickly fast": 2280,
"satisfied quality": 2496,
"long view": 1546,
"suddenly turn": 2946,
"completely satisfied": 545,
"day place": 676,
"old order": 1765,
"dont dont": 827,
"wont buy": 3470,
"satisfy good": 2503,
"quickly quality": 2286,
"quality good": 2237,
"bad shop": 185,
"purchase day": 2213,
"customer support": 642,
"time day": 3059,
"day work": 683,
"work excellent": 3507,
"order tell": 1883,
"sell really": 2597,
"order discount": 1819,
"quick choose": 2265,
"excellent price": 990,
"price shame": 2133,
"quick uncomplicated": 2271,
"message say": 1673,
"home work": 1267,
"quality order": 2243,
"need correct": 1730,
"time available": 3052,
"available later": 148,
"purchase transaction": 2221,
"fast quality": 1051,
"delivery good": 703,
"able place": 8,
"say send": 2521,
"practical big": 2094,
"product correspond": 2177,
"difficult time": 747,
"favorite quality": 1068,
"size correct": 2745,
"good highly": 1181,
"doesnt happen": 805,
"experience long": 1012,
"order fatal": 1830,
"problem super": 2152,
"quality low": 2241,
"fast satisfy": 1055,
"use disaster": 3307,
"slow easy": 2779,
"register cash": 2409,
"probably wont": 2140,
"wont arrive": 3469,
"work wonderfully": 3579,
"quality reliable": 2253,
"order available": 1798,
"easy handle": 883,
"time satisfied": 3106,
"say wrong": 2525,
"mention make": 1663,
"money quality": 1708,
"try payment": 3193,
"bank shame": 200,
"form start": 1123,
"bad dont": 177,
"know zip": 1419,
"order message": 1844,
"choose home": 407,
"problem time": 2153,
"longer time": 1556,
"multiple time": 1721,
"value good": 3362,
"good buy": 1178,
"quality product": 2248,
"price recommend": 2130,
"quick satisfied": 2270,
"satisfied good": 2495,
"option bad": 1783,
"convenient quickly": 597,
"excellent value": 995,
"time wait": 3127,
"order add": 1795,
"purchase history": 2216,
"reasonable quality": 2356,
"st time": 2828,
"quickly work": 2290,
"super quickly": 2962,
"annoying day": 114,
"payment use": 2017,
"possible check": 2075,
"quality material": 2242,
"reduce number": 2403,
"choice fast": 401,
"store longer": 2889,
"didnt fit": 732,
"come work": 518,
"incorrect work": 1333,
"terrible order": 3012,
"cost dont": 609,
"variety quality": 3366,
"return item": 2462,
"totally satisfied": 3146,
"send size": 2606,
"service delivery": 2616,
"receive answer": 2363,
"flawless": 1110,
"appropriate": 125,
"mother": 1719,
"tricky": 3168,
"way work": 3434,
"really stupid": 2344,
"try work": 3201,
"work site": 3555,
"work date": 3497,
"work careful": 3485,
"easy dont": 879,
"time think": 3118,
"really fun": 2334,
"available think": 156,
"terrible constantly": 3011,
"use long": 3319,
"thing think": 3030,
"solve problem": 2803,
"make add": 1615,
"fix work": 1108,
"constant problem": 572,
"excellent want": 996,
"throw away": 3046,
"reasonably satisfied": 2360,
"really quickly": 2338,
"address work": 70,
"work way": 3576,
"think stop": 3041,
"desire good": 719,
"work throw": 3566,
"let know": 1462,
"team work": 2996,
"time item": 3077,
"flexible": 1113,
"slowly hello": 2794,
"hope stay": 1273,
"use super": 3343,
"use clearly": 3302,
"quick work": 2273,
"unfortunately leave": 3246,
"simple super": 2720,
"experience easy": 1009,
"sweet": 2980,
"unbeatable": 3214,
"superb": 2967,
"excellent lot": 989,
"stuff good": 2933,
"experience excellent": 1010,
"superb super": 2968,
"excellent excellent": 988,
"punctual": 2209,
"deadline": 686,
"work wish": 3578,
"good satisfied": 1186,
"satisfy work": 2509
}
}
} |