File size: 186,662 Bytes
029fe34 | 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 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 | [
{
"text": "A 50 - years-old woman , hypertensive , hospitalized for a large cervical mass appeared 30 years ago .",
"entities": [
{
"entity_text": "cervical mass",
"type": "CLINENTITY"
}
]
},
{
"text": "In the family history , her mother , sisters and cousins underwent a surgery for MNG .",
"entities": [
{
"entity_text": "MNG",
"type": "CLINENTITY"
}
]
},
{
"text": "Despite of the large volume of the mass , the patient never described signs of cervical compression whatsoever respiratory , digestive , laryngeal , vascular or neurologic signs .",
"entities": [
{
"entity_text": "mass",
"type": "CLINENTITY"
},
{
"entity_text": "cervical compression",
"type": "CLINENTITY"
},
{
"entity_text": "respiratory , digestive , laryngeal , vascular or neurologic signs",
"type": "CLINENTITY"
}
]
},
{
"text": "She never suffered from thyroid dysfunction .",
"entities": [
{
"entity_text": "thyroid dysfunction",
"type": "CLINENTITY"
}
]
},
{
"text": "Her neck was deformed by the voluminous formation classified grade III according to the WHO modified classification .",
"entities": []
},
{
"text": "The mass took the front and the two sides of the neck .",
"entities": [
{
"entity_text": "mass",
"type": "CLINENTITY"
}
]
},
{
"text": "Its surface was embossed and covered by a thin normal skin .",
"entities": []
},
{
"text": "There were some veins of the collateral circulation limited to the neck .",
"entities": []
},
{
"text": "The goiter measured 18 x 11 cm .",
"entities": []
},
{
"text": "The mass was firm , painless , and mobile with the swallowing movements .",
"entities": [
{
"entity_text": "mass",
"type": "CLINENTITY"
}
]
},
{
"text": "Lymphadenopathy research was difficult and found no palpable lymph nodes .",
"entities": [
{
"entity_text": "Lymphadenopathy",
"type": "CLINENTITY"
}
]
},
{
"text": "The laboratory tests ( T 3 , T 4 and TSH ) were normal .",
"entities": []
},
{
"text": "Thoracic radiography showed a large cervical opacity roughly round and strewn with microcalcifications associated with a right eccentricity of the trachea .",
"entities": [
{
"entity_text": "microcalcifications",
"type": "CLINENTITY"
}
]
},
{
"text": "Cervical and chest CT revealed the presence of a partially calcified thyroid mass slightly plunging in the anterior mediastinum .",
"entities": [
{
"entity_text": "thyroid mass",
"type": "CLINENTITY"
}
]
},
{
"text": "It took heterogeneously the contrast and then evocate a large MNG .",
"entities": [
{
"entity_text": "MNG",
"type": "CLINENTITY"
}
]
},
{
"text": "The trachea was surrounded by the goiter , slightly narrowed and right deviated as well as the lower part of the larynx .",
"entities": []
},
{
"text": "The right and left vascular axes of the neck ( carotid artery and jugular vein ) were deviated backward .",
"entities": []
},
{
"text": "The patient underwent a surgery for her enormous MNG slightly plunging in the mediastinum .",
"entities": [
{
"entity_text": "MNG",
"type": "CLINENTITY"
}
]
},
{
"text": "Endotracheal intubation was relatively easy by the laryngoscope .",
"entities": []
},
{
"text": "The incision performed was a Kocher cervicotomy .",
"entities": []
},
{
"text": "There was a multinodular , hypervascularized goiter .",
"entities": []
},
{
"text": "Its lower end plunges behind the sternal manubrium .",
"entities": []
},
{
"text": "The larynx was deviated towards the right side .",
"entities": []
},
{
"text": "The total thyroidectomy was performed in two steps : initially a right lobo-isthmectomy , then the left lobectomy .",
"entities": []
},
{
"text": "The retrosternal part of the goiter was released using the finger by the same incision .",
"entities": []
},
{
"text": "Both recurrent laryngeal nerves ( RLN ) were not identified because of the hemorrhage .",
"entities": [
{
"entity_text": "hemorrhage",
"type": "CLINENTITY"
}
]
},
{
"text": "One parathyroid gland was accidently devascularized and was autotransplanted to the ipsilateral sternocleidomastoid muscle .",
"entities": []
},
{
"text": "The operation was finished by double aspiration drainage .",
"entities": []
},
{
"text": "In the first hours after surgery , the patient developed a large cervical hematoma .",
"entities": [
{
"entity_text": "hematoma",
"type": "CLINENTITY"
}
]
},
{
"text": "She was readmitted to the operating room , and after evacuation of the hematoma there was no vessels bleeding .",
"entities": [
{
"entity_text": "hematoma",
"type": "CLINENTITY"
}
]
},
{
"text": "The operation was completed with a double suction drainage .",
"entities": []
},
{
"text": "In the immediate postoperative period , the patient developed hemodynamic collapse requiring the introduction of dobutamine .",
"entities": [
{
"entity_text": "hemodynamic collapse",
"type": "CLINENTITY"
}
]
},
{
"text": "After 48 hours of hemodynamic support , the blood pressure stabilized and dobutamine was stopped .",
"entities": []
},
{
"text": "Histological study concluded in multinodular colloid goiter .",
"entities": [
{
"entity_text": "multinodular colloid goiter",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient was discharged from the hospital after 20 days in good health .",
"entities": []
},
{
"text": "A 21 - year-old male was referred to the gastroenterology clinic for incidental findings of severe chronic pancreatitis on cross-sectional imaging but no associated symptoms of pancreatitis .",
"entities": [
{
"entity_text": "chronic pancreatitis",
"type": "CLINENTITY"
},
{
"entity_text": "pancreatitis",
"type": "CLINENTITY"
}
]
},
{
"text": "He had presented to the emergency department for abdominal pain consistent with prior episodes of renal colic .",
"entities": [
{
"entity_text": "abdominal pain",
"type": "CLINENTITY"
},
{
"entity_text": "renal colic",
"type": "CLINENTITY"
}
]
},
{
"text": "Computed tomography scan confirmed the presence of renal calculi that passed with conservative management .",
"entities": [
{
"entity_text": "renal calculi",
"type": "CLINENTITY"
}
]
},
{
"text": "An incidental finding on the imaging showed marked pancreatic atrophy with multiple sub-centimeter calcifications consistent with severe chronic pancreatitis .",
"entities": [
{
"entity_text": "pancreatic atrophy",
"type": "CLINENTITY"
},
{
"entity_text": "chronic pancreatitis",
"type": "CLINENTITY"
}
]
},
{
"text": "Remarkably , he did not report having any symptoms associated with pancreatic insufficiency including epigastric pain , vomiting , steatorrhea and weight loss .",
"entities": [
{
"entity_text": "pancreatic insufficiency",
"type": "CLINENTITY"
},
{
"entity_text": "epigastric pain",
"type": "CLINENTITY"
},
{
"entity_text": "vomiting",
"type": "CLINENTITY"
},
{
"entity_text": "steatorrhea",
"type": "CLINENTITY"
}
]
},
{
"text": "He denied having any prior episodes of acute pancreatitis and had no history of alcohol use .",
"entities": [
{
"entity_text": "acute pancreatitis",
"type": "CLINENTITY"
}
]
},
{
"text": "His laboratory tests were all within normal range , including complete blood count , liver function tests , amylase and lipase .",
"entities": []
},
{
"text": "His family history was significant as his father had an isolated episode of pancreatitis which required abdominal surgery .",
"entities": [
{
"entity_text": "pancreatitis",
"type": "CLINENTITY"
}
]
},
{
"text": "Magnetic resonance cholangiopancreatography ( MRCP ) showed severe parenchymal atrophy and pancreatic ductal stones with ductal dilation to 9 mm .",
"entities": []
},
{
"text": "Due to his young age and atypical presentation , he was referred for genetic testing and counselling .",
"entities": []
},
{
"text": "He underwent genetic testing for various genes known to cause hereditary pancreatitis : CASR , CFTR , CTRC , PRSS 1 , SPINK 1 .",
"entities": [
{
"entity_text": "hereditary pancreatitis",
"type": "CLINENTITY"
}
]
},
{
"text": "He tested positive for homozygous variant of SPINK 1 ( N 34 S ) mutation .",
"entities": []
},
{
"text": "Reflex testing of at-risk relatives confirmed that both of his parents were heterozygous carriers of the same SPINK 1 ( N 34 S ) mutation and a review of their extended pedigree revealed that they were distant cousins .",
"entities": []
},
{
"text": "Given his asymptomatic clinical course , he remains under close follow-up without requiring any specific treatment for pancreatic insufficiency .",
"entities": [
{
"entity_text": "pancreatic insufficiency",
"type": "CLINENTITY"
}
]
},
{
"text": "Due to the severity of pancreatitis noted on imaging and long expected lifespan , he was counselled about the increased risk of pancreatic malignancy and is undergoing regular cross-sectional imaging for the detection and prevention of cancer .",
"entities": [
{
"entity_text": "pancreatitis",
"type": "CLINENTITY"
},
{
"entity_text": "cancer",
"type": "CLINENTITY"
}
]
},
{
"text": "We present a case of a 77 - year-old Caucasian woman with obstructive jaundice .",
"entities": [
{
"entity_text": "obstructive jaundice",
"type": "CLINENTITY"
}
]
},
{
"text": "Laboratory tests revealed that she had elevated bilirubin and liver enzyme levels .",
"entities": []
},
{
"text": "A computed tomographic scan showed a homogeneous 5 × 3 - cm mass obstructing the common bile duct .",
"entities": []
},
{
"text": "The results of brush cytology were consistent with a bile duct villous papilloma .",
"entities": [
{
"entity_text": "villous papilloma",
"type": "CLINENTITY"
}
]
},
{
"text": "However , on the basis of the tumor ' s radiological features , a preliminary diagnosis of extrahepatic bile duct malignant tumor was made .",
"entities": [
{
"entity_text": "tumor ' s",
"type": "CLINENTITY"
},
{
"entity_text": "extrahepatic bile duct malignant tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "After discussion among the multidisciplinary team , a surgical resection of the bile duct tumor was performed .",
"entities": [
{
"entity_text": "bile duct tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "Histopathological examination confirmed a villous adenoma .",
"entities": [
{
"entity_text": "villous adenoma",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient ' s postoperative course was uneventful .",
"entities": []
},
{
"text": "A 77 - year-old Tunisian woman was hospitalized because of massive painful ascites .",
"entities": []
},
{
"text": "Her family history did not include any autoimmune disease .",
"entities": [
{
"entity_text": "autoimmune disease",
"type": "CLINENTITY"
}
]
},
{
"text": "She denied a history of hepatitis , jaundice or alcohol use .",
"entities": [
{
"entity_text": "hepatitis",
"type": "CLINENTITY"
},
{
"entity_text": "jaundice",
"type": "CLINENTITY"
}
]
},
{
"text": "She had a history of diabetes , hypertension treated by glinide and calcium blocker .",
"entities": [
{
"entity_text": "diabetes",
"type": "CLINENTITY"
},
{
"entity_text": "hypertension",
"type": "CLINENTITY"
}
]
},
{
"text": "She was explored 4 years prior to admission for exudative pleuritis of the right lung without any established diagnosis after multiple explorations including thoracoscopy with biopsies .",
"entities": [
{
"entity_text": "exudative pleuritis",
"type": "CLINENTITY"
}
]
},
{
"text": "On admission , blood pressure was 150 / 70 mmHg , her rate was 80 / mn and body temperature was 37 ° C .",
"entities": []
},
{
"text": "The physical examination showed only abdominal distension related to the important ascites without collateral venous circulation .",
"entities": [
{
"entity_text": "ascites",
"type": "CLINENTITY"
}
]
},
{
"text": "She had no skin lesions , lymphadenopathy , or hepatosplenomegaly and lower extremities showed no edema .",
"entities": []
},
{
"text": "Laboratory investigations showed : leucopenia with white blood cell count = 3100 / mm 3 , lymphopenia = 840 / mm 3 , hemoglobin = 10 . 5 g / dL ; low serum albumin level = 29 g / L , 47 ; -globulin = 19 g / L . blood glucose levels = 180 mg / dl and hemoglobin A 1 c = 8 . 6 % .",
"entities": []
},
{
"text": "Urine analysis showed trace protein ( 0 . 03 g / 24 h ) .",
"entities": []
},
{
"text": "Platelet count , activated partial thromboplastin time , liver function tests , blood urea nitrogen , serum creatinine , erythrocyte sediment rate and total cholesterol were within normal limits .",
"entities": []
},
{
"text": "Tests for HBsAg and HCV were negative .",
"entities": []
},
{
"text": "Abdominal ultrasonography showed ascitic fluid without any sign of bowel loop thickening or enteritis .",
"entities": []
},
{
"text": "Neither lymphadenopathy nor liver abnormality was present .",
"entities": []
},
{
"text": "A chest X-ray film disclosed bilateral pleural effusion .",
"entities": [
{
"entity_text": "bilateral pleural effusion",
"type": "CLINENTITY"
}
]
},
{
"text": "Ascitic obtained by aspiration contained 170 cells mm 3 ( 67 % lymphocytes ) , 46 g / L protein , but no malignant cells .",
"entities": []
},
{
"text": "Cultures for bacteria and mycobacteria gave no growth .",
"entities": []
},
{
"text": "Tuberculosis investigation including initial tuberculin skin test and the research of Koch bacilli in sputum and urine were negative .",
"entities": []
},
{
"text": "Echocardiogram and electrocardiogram were normal .",
"entities": []
},
{
"text": "Computed tomographic scan showed massive ascites , no dysmorphic liver , and a mild bilateral pleural effusion .",
"entities": [
{
"entity_text": "ascites",
"type": "CLINENTITY"
},
{
"entity_text": "bilateral pleural effusion",
"type": "CLINENTITY"
}
]
},
{
"text": "Pelvic examination was normal .",
"entities": []
},
{
"text": "Oesogastroduodenoscopy showed hiatal hernia without oesophageal varices .",
"entities": [
{
"entity_text": "hiatal hernia",
"type": "CLINENTITY"
}
]
},
{
"text": "An exploratory laparoscopy was performed , revealing a large amount of ascite , a normal liver appearance , and no granulations suggesting tuberculosis or peritoneal carcinosis .",
"entities": [
{
"entity_text": "ascite",
"type": "CLINENTITY"
}
]
},
{
"text": "Histological examination of the peritoneum showed non specific chronic inflammation .",
"entities": []
},
{
"text": "Systemic lupus erythematosus was suspected based on pleuritis , lymphopenia and leucopenia .",
"entities": [
{
"entity_text": "Systemic lupus erythematosus",
"type": "CLINENTITY"
},
{
"entity_text": "pleuritis",
"type": "CLINENTITY"
},
{
"entity_text": "lymphopenia",
"type": "CLINENTITY"
},
{
"entity_text": "leucopenia",
"type": "CLINENTITY"
}
]
},
{
"text": "An additional serologic survey revealed markedly elevated anti-nuclear antibody ( ANA ) titer of 1 / 1600 and a significantly elevated titer of antibody to double-stranded DNA ( 83 IU / mL ; normal < 30 IU / mL ) .",
"entities": []
},
{
"text": "She had also positive serum antibody against the Smith antigen and low serum level of C 3 complement component : 67 mg / dL ( serum normal range : 84 – 151 ) .",
"entities": []
},
{
"text": "Relying on these findings , the patient was diagnosed with SLE since 4 of the 11 diagnostic criteria of the American College of Rheumatology were met .",
"entities": [
{
"entity_text": "SLE",
"type": "CLINENTITY"
}
]
},
{
"text": "The SLEDAI score according to Systemic Lupus Erythematosus Disease Activity Index was estimated to be 7 on admission .",
"entities": []
},
{
"text": "Hydroxychloroquine 200 mg daily in combination with diuretics was initiated .",
"entities": []
},
{
"text": "One month later , there was no detectable ascitic fluid and no pleural effusions .",
"entities": []
},
{
"text": "Five months later she remained free from symptoms while continuing to take Hydroxychloroquine",
"entities": []
},
{
"text": "A 13 - year-old boy diagnosed with WHO diagnostic criteria of probable NS was referred from Atanga HC III in Pader district where he was enrolled and undergoing care at the nodding syndrome treatment center ; he came with a history of progressive swelling and pain in the right lumbar region .",
"entities": [
{
"entity_text": "NS",
"type": "CLINENTITY"
},
{
"entity_text": "nodding syndrome",
"type": "CLINENTITY"
},
{
"entity_text": "swelling and pain in the right lumbar region",
"type": "CLINENTITY"
}
]
},
{
"text": "The swelling was associated with a high grade fever which was constant and only partially relieved by analgesics .",
"entities": [
{
"entity_text": "swelling",
"type": "CLINENTITY"
},
{
"entity_text": "fever",
"type": "CLINENTITY"
}
]
},
{
"text": "These symptoms were not associated with vomiting , constipation , yellow eyes , loss of appetite or weight loss .",
"entities": [
{
"entity_text": "vomiting",
"type": "CLINENTITY"
},
{
"entity_text": "constipation",
"type": "CLINENTITY"
},
{
"entity_text": "yellow eyes",
"type": "CLINENTITY"
},
{
"entity_text": "loss of appetite",
"type": "CLINENTITY"
},
{
"entity_text": "weight loss",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient reported a history of falling from a tree during one of the nodding episodes in October 2012 and hit his abdomen onto a tree branch .",
"entities": [
{
"entity_text": "nodding",
"type": "CLINENTITY"
}
]
},
{
"text": "On further probe on his childhood history , his mother reported that he was born normally at home by a Traditional Birth Attendant ( TBA ) in one of the Internally Displaced peoples ( IDP ) camps in 2000 .",
"entities": []
},
{
"text": "She reported that there was an uneventful pregnancy which was carried to term and delivery by Spontaneous vaginal delivery ( SVD ) .",
"entities": []
},
{
"text": "She reported that during her pregnancy , she had exclusive feeding on the relief food provided by WFP ( beans , yellow posho and cooking oil ) during the IDP camps and denies history of ingestion of herbs or medications which caused adverse events during and after the pregnancy .",
"entities": []
},
{
"text": "She reported that her child had a normal physical , cognitive and social childhood development before the onset of nodding which began in May 27 th 2011 immediately after returning home from IDP camps .",
"entities": [
{
"entity_text": "nodding",
"type": "CLINENTITY"
}
]
},
{
"text": "The child was enrolled in Atanga treatment centre and was being managed with Carbamazepine , multivitamins and Ivermectin .",
"entities": []
},
{
"text": "She reported that in spite of these medications the child continued to have seizures and nodding at least twice a day and had since dropped out of school .",
"entities": [
{
"entity_text": "seizures",
"type": "CLINENTITY"
},
{
"entity_text": "nodding",
"type": "CLINENTITY"
}
]
},
{
"text": "On general examination , he was dehydrated , febrile and moderately wasted .",
"entities": [
{
"entity_text": "dehydrated",
"type": "CLINENTITY"
},
{
"entity_text": "febrile",
"type": "CLINENTITY"
}
]
},
{
"text": "There was a right lumbar region mass , tender , indurated and non-fluctuant .",
"entities": []
},
{
"text": "The spleen and liver were not palpable .",
"entities": []
},
{
"text": "There was no renal or supra-pubic tenderness .",
"entities": []
},
{
"text": "The rectum was full of faecal material which was of normal colour and consistency .",
"entities": []
},
{
"text": "The anal tone was normal and there was no blood on examining fingure .",
"entities": []
},
{
"text": "Haematological investigations were conducted and showed neutrophilia , lympocytosis , monocytosis , and eosinophilia .",
"entities": [
{
"entity_text": "neutrophilia",
"type": "CLINENTITY"
}
]
},
{
"text": "There were immature granulocytes and atypical lymphocytes seen on the peripheral film report .",
"entities": []
},
{
"text": "Other laboratory results including liver function tests ( ALT , AST ) were elevated while serum protein levels were low ; renal functions tests ( serum creatinine , blood urea and nitrogen level ) , and serum electrolytes ( K + , Na + , Cl- , HC 03 - ) which were within normal ranges .",
"entities": []
},
{
"text": "Abdominal Ultrasound showed inflamed internal and external oblique muscles of the anterior abdominal wall .",
"entities": []
},
{
"text": "The patient underwent incision and drainage at Gulu Hospital and wound left open for 14 days and thereafter secondary wound closure was conducted .",
"entities": []
},
{
"text": "He received supplementary food rehabilitation and his seizure medication was changed to Sodium Valproate 200 mg once a day under direct observation therapy ( DOTS ) and close monitoring of the vital signs .",
"entities": []
},
{
"text": "The patient continued to have regular follow up in the surgical ward ; seizures and nodding stopped completely from the time of intervention in the hospital .",
"entities": [
{
"entity_text": "seizures",
"type": "CLINENTITY"
},
{
"entity_text": "nodding",
"type": "CLINENTITY"
}
]
},
{
"text": "With these interventions for over one month the child had no seizures nor nodding and the child returned to normal life .",
"entities": [
{
"entity_text": "seizures",
"type": "CLINENTITY"
},
{
"entity_text": "nodding",
"type": "CLINENTITY"
}
]
},
{
"text": "A subsequent review of the haematological and clinical chemistry findings 2 weeks later showed that renal function tests , serum electrolytes were normal except the liver enzymes level were elevated and were still high .",
"entities": []
},
{
"text": "A 21 year old female patient with the diagnosis of SWS suffering from headaches admitted to our clinic .",
"entities": []
},
{
"text": "She had a 2 year history of frequent non-pulsating headaches .",
"entities": [
{
"entity_text": "headaches",
"type": "CLINENTITY"
}
]
},
{
"text": "Her headache was relieving with non-steroidal anti-inflammatory drugs and was not worsening with physical activity .",
"entities": [
{
"entity_text": "headache",
"type": "CLINENTITY"
}
]
},
{
"text": "There was no nausea or aura like symptoms accompanying the headache .",
"entities": [
{
"entity_text": "nausea",
"type": "CLINENTITY"
},
{
"entity_text": "aura",
"type": "CLINENTITY"
},
{
"entity_text": "headache",
"type": "CLINENTITY"
}
]
},
{
"text": "Headaches were lasting for hours .",
"entities": [
{
"entity_text": "Headaches",
"type": "CLINENTITY"
}
]
},
{
"text": "The pain was bilateral , generalized and pressing in quality .",
"entities": [
{
"entity_text": "pain",
"type": "CLINENTITY"
}
]
},
{
"text": "The family history for headache was negative .",
"entities": [
{
"entity_text": "headache",
"type": "CLINENTITY"
}
]
},
{
"text": "She had a history of seizures occurring in the fifteenth day of life described as attacks of tonic clonic contractions and that ' s when she was diagnosed with SWS .",
"entities": [
{
"entity_text": "seizures",
"type": "CLINENTITY"
},
{
"entity_text": "tonic clonic contractions",
"type": "CLINENTITY"
},
{
"entity_text": "SWS",
"type": "CLINENTITY"
}
]
},
{
"text": "At the age of 6 she had a history of callosotomy to control her seizures .",
"entities": [
{
"entity_text": "seizures",
"type": "CLINENTITY"
}
]
},
{
"text": "At the age of 18 during a laser treatment done in order to get rid of her port wine birthmark she had her first seizure since callosotomy .",
"entities": [
{
"entity_text": "port wine birthmark",
"type": "CLINENTITY"
},
{
"entity_text": "seizure",
"type": "CLINENTITY"
}
]
},
{
"text": "After that she was prescribed carbamazepine 400 mg at daily dose and never had a seizure since then .",
"entities": [
{
"entity_text": "seizure",
"type": "CLINENTITY"
}
]
},
{
"text": "According to the story taken from her parents even though she had a normal development at infancy she barely graduated from elementary school and she ' s hardly literate .",
"entities": []
},
{
"text": "There was nothing significant on her family history except for her elder sister ' s port wine stain on her face .",
"entities": [
{
"entity_text": "port wine stain",
"type": "CLINENTITY"
}
]
},
{
"text": "The elder sister had no feature of SWS and no researches were done regarding her stain .",
"entities": [
{
"entity_text": "SWS",
"type": "CLINENTITY"
}
]
},
{
"text": "She was inscribed daily doses of ketiapin 25 mg for anxiety disorder and venlafaxine 75 mg for both anxiety disorder and the chronic headaches .",
"entities": [
{
"entity_text": "anxiety disorder",
"type": "CLINENTITY"
},
{
"entity_text": "anxiety disorder",
"type": "CLINENTITY"
},
{
"entity_text": "chronic headaches",
"type": "CLINENTITY"
}
]
},
{
"text": "She was also inscribed NSAID drugs .",
"entities": []
},
{
"text": "After the first week of this treatment her headaches were slightly decreased by heaviness but the frequency was the same .",
"entities": [
{
"entity_text": "headaches",
"type": "CLINENTITY"
}
]
},
{
"text": "At her physical examination a facial nevus -occurred due to choroid angioma-on the right forehead , right eyelid , nasal wing and the cheek was observed .",
"entities": []
},
{
"text": "Intra oral examination showed a right sided overgrowth of gingiva .",
"entities": []
},
{
"text": "Gingival overgrowth was bright red in color and showed blanching on applying pressure suggesting angiomatous enlargement .",
"entities": []
},
{
"text": "On her extremities a mild asymmetry was visible .",
"entities": []
},
{
"text": "Her left arm and leg was slightly smaller in portions and showed hemiparesis both in the upper and lower extremities of the same size .",
"entities": [
{
"entity_text": "hemiparesis",
"type": "CLINENTITY"
}
]
},
{
"text": "On her ophthalmological evaluation she was diagnosed with glaucoma of the right eye .",
"entities": [
{
"entity_text": "glaucoma of the right eye",
"type": "CLINENTITY"
}
]
},
{
"text": "On her psychiatric examination she showed signs of anxiety disorder .",
"entities": [
{
"entity_text": "anxiety disorder",
"type": "CLINENTITY"
}
]
},
{
"text": "Her neurological examination was not remarkable except for her hemiparesis .",
"entities": [
{
"entity_text": "hemiparesis",
"type": "CLINENTITY"
}
]
},
{
"text": "Cranial CT scans showed diffuse atrophy in the right hemisphere and irregular double-contoured gyriform cortical calcifications in the right occipital area .",
"entities": []
},
{
"text": "Gadolinium enhanced brain MRI revealed multiple dilated pial venous vascular structures on right hemisphere also with the diffuse atrophy on the same side .",
"entities": []
},
{
"text": "Axial T 1 weighted cranial MRI shows right calvarial thickness compared to the left and right hemisphere is asymmetrically smaller than the left .",
"entities": []
},
{
"text": "In addition to that , T 2 weighted MRI shows extensive venous formations around corpus of right lateral ventricle and at Gallen vein localization and widespread vascular formations are seen at perivascular space , anterior to third ventricle at Willis polygon localization and at right temporooccipital area at quadrigeminal cistern localization .",
"entities": []
},
{
"text": "She was performed a proteus intelligence test in which she had 75 points and accepted as mildly mentally retarded .",
"entities": [
{
"entity_text": "mildly mentally retarded",
"type": "CLINENTITY"
}
]
},
{
"text": "Proteus intelligence test in which she had 75 points and accepted as mildly mentally retarded .",
"entities": [
{
"entity_text": "mildly mentally retarded",
"type": "CLINENTITY"
}
]
},
{
"text": "A 32 - year-old female patient with Kniest syndrome presented at our department with a painful pseudarthrosis after femoral valgisation osteotomy 8 years ago .",
"entities": [
{
"entity_text": "Kniest syndrome",
"type": "CLINENTITY"
}
]
},
{
"text": "A Wagner cone stem and acetabular roof cup with a cemented Ecofit cup 2 M ( dual-articulation acetabular cup system ) were implanted due to a dysplastic femur with a small medullary space .",
"entities": [
{
"entity_text": "dysplastic femur",
"type": "CLINENTITY"
}
]
},
{
"text": "The Ecofit cup itself is associated with a reduced risk of dislocation .",
"entities": []
},
{
"text": "The patient was satisfied with the range of motion after hip endoprosthesis and reported a significant increase in quality of life .",
"entities": []
},
{
"text": "The patient is still comfortable with the hip prosthesis at the most recent follow-up 4 years after implantation .",
"entities": []
},
{
"text": "Follow-up radiographs over 4 years have not revealed any signs of loosening or migration , and no Trendelenburg sign was reported for the affected side .",
"entities": [
{
"entity_text": "Trendelenburg sign",
"type": "CLINENTITY"
}
]
},
{
"text": "A 35 - year-old mentally ill man was transferred from a local psychiatric hospital after attempted suicide by fire 3 days before admission .",
"entities": []
},
{
"text": "He acquired full-and partial-thickness injury in approximately 38 % of his TBSA , including face and neck ( 5 % ) , both upper extremities ( 8 % ) , right thigh ( 4 % ) , left thigh and leg ( 3 % ) , and most of his anterior and posterior trunk ( 16 % ) .",
"entities": []
},
{
"text": "The patient was hospitalized for 66 days and underwent five debridement surgeries .",
"entities": []
},
{
"text": "The psychiatric diagnosis was schizophrenia type ICD 10 F 20 . 3 , treated with Haloperidol 1 . 5 mg and Diazepam 5 mg daily .",
"entities": [
{
"entity_text": "schizophrenia",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient was occasionally restrained due to rebellious and self-destruction behavior .",
"entities": []
},
{
"text": "The nutrition management of this patient was started after a week of hospitalization , which is considered late .",
"entities": []
},
{
"text": "In the initial nutrition assessment , the patient was 40 kg weight and 150 cm tall thus the body mass index ( BMI ) was 17 , 57 kg / m 2 or underweight .",
"entities": []
},
{
"text": "Gastrointestinal symptoms and signs were not found .",
"entities": []
},
{
"text": "Information regarding the patient ' s dietary intake in the last two weeks and weight change within the last 6 months could not be obtained , but his mother claimed that the patient seemed to lose weight because he refused any food that had been offered to him ; he only smoked and drank coffee .",
"entities": []
},
{
"text": "Albumin level was 3 . 6 gr / L with imbalanced electrolyte levels .",
"entities": []
},
{
"text": "Signs of fluid accumulation were not found .",
"entities": []
},
{
"text": "According to the subjective global assessment ( SGA ) tool , the patient belonged to group C ( severely malnourished ) .",
"entities": []
},
{
"text": "Energy and protein were given starting from 30 kcal / kg , increasing gradually to 50 kcal / kg , and 2 gp / kg divided into oral nutrition and oral nutrition supplements ( ONS ) with a 50 : 50 ratio .",
"entities": []
},
{
"text": "The patient was also given micronutrient supplementations , specifically vitamin A 100 , 000 units for the first week , vitamin C 100 mg 3 times a day , and zinc 20 mg once a day .",
"entities": []
},
{
"text": "During the early weeks of hospitalization , the patient ' s weight loss continued .",
"entities": []
},
{
"text": "At the end of the second week , his body weight was 36 kilograms while his serum albumin level was 2 . 7 gr / L .",
"entities": []
},
{
"text": "On the 28 th day , the patient ' s body weight was 33 kilograms while his serum albumin level was 2 . 1 gr / L .",
"entities": []
},
{
"text": "Energy and protein intake was maintained , but the ratio of oral intake and ONS was modified to 70 : 30 .",
"entities": []
},
{
"text": "During the treatment , the patient ' s appetite was unstable .",
"entities": []
},
{
"text": "The patient was also hardly cooperative with enteral access .",
"entities": []
},
{
"text": "The patient often writhed in pain and became more aggressive .",
"entities": []
},
{
"text": "The patient did not respond well to analgesics and sedations .",
"entities": []
},
{
"text": "Partially parenteral nutrition ( PN ) enriched with branched-chain amino acid ( BCAA ) was administered to support protein needs .",
"entities": []
},
{
"text": "However , his BMI continued to decline , and on the 42 nd day , his body weight dropped to 32 kilograms with a serum albumin level of 2 gr / L .",
"entities": []
},
{
"text": "On the 66 th day , granulation tissues appeared on the wound bed .",
"entities": []
},
{
"text": "Considering the mental and nutrition status of the patient , it was decided not to continue with the skin graft surgery .",
"entities": []
},
{
"text": "The patient had lost 24 % of body weight ( BMI 11 . 96 kg / m 2 ) and the serum albumin level was 2 . 5 gr / L .",
"entities": []
},
{
"text": "The patient displayed severe muscle wasting and subcutaneous fat loss .",
"entities": [
{
"entity_text": "muscle wasting",
"type": "CLINENTITY"
},
{
"entity_text": "subcutaneous fat loss",
"type": "CLINENTITY"
}
]
},
{
"text": "However , the general and mental condition was relatively better .",
"entities": []
},
{
"text": "The patient was discharged from the hospital .",
"entities": []
},
{
"text": "This case report describes the condition of a 30 - year-old man involved in a motor vehicle collision .",
"entities": []
},
{
"text": "Clinical examination , X-rays , and computed tomography scan revealed a posterior hip dislocation with an ipsilateral femoral head and mid-shaft fractures .",
"entities": [
{
"entity_text": "posterior hip dislocation",
"type": "CLINENTITY"
},
{
"entity_text": "ipsilateral femoral head and mid-shaft fractures",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient was treated by closed reduction of hip dislocation using a temporarily applied external fixator followed by intramedullary nailing of the femoral shaft .",
"entities": []
},
{
"text": "Achieving a closed reduction is a challenge with ipsilateral fractures but it should be favored over open reduction due to a lower risk of complications .",
"entities": []
},
{
"text": "The type of femoral head fracture , in this case , may have aided in an easier reduction .",
"entities": [
{
"entity_text": "femoral head fracture",
"type": "CLINENTITY"
}
]
},
{
"text": "A 12 - year-old girl was referred to Department of Oral Surgery , with a complaint of pain and swelling in the left of maxilla that appeared 3 months ago .",
"entities": [
{
"entity_text": "pain and swelling in the left of maxilla",
"type": "CLINENTITY"
}
]
},
{
"text": "The swelling was slowly progressive , associated with pain .",
"entities": [
{
"entity_text": "swelling",
"type": "CLINENTITY"
}
]
},
{
"text": "However , the patient did not refer any motor or sensory deficit .",
"entities": []
},
{
"text": "There was no family history of similar swelling .",
"entities": []
},
{
"text": "Physical examination revealed a left maxillary swelling .",
"entities": [
{
"entity_text": "maxillary swelling",
"type": "CLINENTITY"
}
]
},
{
"text": "There was no facial palsy .",
"entities": [
{
"entity_text": "facial palsy",
"type": "CLINENTITY"
}
]
},
{
"text": "No cervical lymph node enlargement was seen .",
"entities": []
},
{
"text": "The oral examination showed a 4 cm x 5 cm , tender , compressible mass in the left maxilla , from the lateral incisor to the second premolar teeth .",
"entities": []
},
{
"text": "The tumor surface was smooth and red-purple .",
"entities": [
{
"entity_text": "tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "Several teeth were involved and displaced in the tumor mass .",
"entities": [
{
"entity_text": "tumor mass",
"type": "CLINENTITY"
}
]
},
{
"text": "We noted the absence of canine .",
"entities": []
},
{
"text": "Vitality tests proved negative on the central and lateral incisor .",
"entities": []
},
{
"text": "Hight mobility of lateral incisor was noted .",
"entities": []
},
{
"text": "Orthopantomography and occlusal radiography showed a wide osteolytic area of the anterior left maxilla , extending from the first permanent molar to the central incisor .",
"entities": []
},
{
"text": "The canine was impacted .",
"entities": []
},
{
"text": "No root resorption was observed .",
"entities": []
},
{
"text": "The radiolucency was closely related to maxillary sinus and involving the nasal cavity .",
"entities": []
},
{
"text": "Haematological investigations showed normal serum calcium , phosphorus and parathormone ( PTH ) levels .",
"entities": []
},
{
"text": "The provisional diagnosis of benign tumor of the maxilla was made .",
"entities": [
{
"entity_text": "benign tumor of the maxilla",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient underwent excision and curettage of the mass with extraction of the canine and lateral incisor tooth .",
"entities": []
},
{
"text": "The wound was closed with interrupted sutures .",
"entities": []
},
{
"text": "The post-operative histopathological report revealed multinuclear giant cells scattered randomly throughout the cellular and fibrous vascular-rich tissue .",
"entities": []
},
{
"text": "New bone formation and granulation tissue rich in mononuclear inflammatory cells was revealed .",
"entities": []
},
{
"text": "The giant cells were multinucleated with bland-appearing nuclei , and the background stromal cells displayed no evidence of atypical mitoses .",
"entities": []
},
{
"text": "A diagnosis of giant cell tumor was established .",
"entities": [
{
"entity_text": "giant cell tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "During a 1 - year serial clinical and radiological follow-up , there was no evidence of recurrence .",
"entities": []
},
{
"text": "The facial contour and masticatory function were well-preserved .",
"entities": []
},
{
"text": "A 43 - year-old non-diabetic Indian male reported to our outpatient department with chief complaints of cough with expectoration , chest pain , reduced appetite , fever with chills , and night sweats for two weeks .",
"entities": [
{
"entity_text": "chest pain",
"type": "CLINENTITY"
},
{
"entity_text": "reduced appetite",
"type": "CLINENTITY"
},
{
"entity_text": "fever with chills",
"type": "CLINENTITY"
},
{
"entity_text": "night sweats",
"type": "CLINENTITY"
}
]
},
{
"text": "He also complained of breathlessness on exertion and had two episodes of blood in his sputum .",
"entities": [
{
"entity_text": "breathlessness",
"type": "CLINENTITY"
},
{
"entity_text": "blood in his sputum",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient explained that the cough was continuous and was relieved after taking cough syrup .",
"entities": [
{
"entity_text": "cough",
"type": "CLINENTITY"
}
]
},
{
"text": "He also mentioned that the episodes of fever were initially intermittent and then daily for the last two weeks and were relieved after taking Paracetamol .",
"entities": [
{
"entity_text": "fever",
"type": "CLINENTITY"
}
]
},
{
"text": "The chest pain was localized to the middle of the chest and was aggravated on exertion .",
"entities": [
{
"entity_text": "chest pain",
"type": "CLINENTITY"
}
]
},
{
"text": "He was a businessman by profession with no history of smoking , alcoholism , or any other substance abuse .",
"entities": []
},
{
"text": "Also , there was no history of any contact of TB or COVID- 19 in the family or close contacts .",
"entities": []
},
{
"text": "And there was no history of foreign travel in the recent past .",
"entities": []
},
{
"text": "But he had reported having traveled by a domestic airline about twenty days back .",
"entities": []
},
{
"text": "There was no history of weight loss or any other major illness in the past .",
"entities": []
},
{
"text": "On examination his vitals were-pulse- 108 / minute , arterial BP- 130 / 80 mm of Hg , respiratory rate of 30 breaths / minute , Sp 02 -899 % on room air , temperature- 101 - degree centigrade .",
"entities": []
},
{
"text": "His Sp 02 fell by 70 % on room air after waking .",
"entities": []
},
{
"text": "On auscultation , there was crepitation on the bilateral middle lobes of the lungs .",
"entities": [
{
"entity_text": "crepitation",
"type": "CLINENTITY"
}
]
},
{
"text": "Also , dyspnea on exertion was noted .",
"entities": [
{
"entity_text": "dyspnea",
"type": "CLINENTITY"
}
]
},
{
"text": "The rest of the systemic examination was within normal limits .",
"entities": []
},
{
"text": "Considering this as a probable case of TB with COVID- 19 he was advised a chest radiograph with sputum microscopy ( Ziehl Neelsen ( ZN ) staining for acid-fast bacilli ) , Cartridge-based nucleic acid amplification test ( CBNAAT ) of the sputum and other routine investigations .",
"entities": [
{
"entity_text": "TB",
"type": "CLINENTITY"
},
{
"entity_text": "COVID- 19",
"type": "CLINENTITY"
}
]
},
{
"text": "To check for the COVID- 19 he was advised qualitative polymerase chain reaction ( PCR ) test from the oropharyngeal swab .",
"entities": [
{
"entity_text": "COVID- 19",
"type": "CLINENTITY"
}
]
},
{
"text": "The results were surprising with Mycobacterium tuberculosis detected on sputum fluorescent microscopy and were also confirmed by the CBNAAT .",
"entities": [
{
"entity_text": "Mycobacterium tuberculosis",
"type": "CLINENTITY"
}
]
},
{
"text": "However , there was no resistance to Rifampicin .",
"entities": []
},
{
"text": "The results of the PCR were positive for RNA specific to SARS-CoV- 2 .",
"entities": [
{
"entity_text": "SARS-CoV- 2",
"type": "CLINENTITY"
}
]
},
{
"text": "Besides , the chest radiograph PA-view was suggestive of bilateral consolidations on the middle lobes of lungs with ill-defined borders .",
"entities": [
{
"entity_text": "consolidations on the middle lobes of lungs",
"type": "CLINENTITY"
}
]
},
{
"text": "The other investigations revealed a low lymphocyte count ( 1 x 10 9 / L ) and increased levels of C-reactive protein ( CRP ) ( 57 mg / L ) , lactate dehydrogenase ( LDH ) ( 580 U / L ) , and erythrocyte sedimentation rate ( ESR ) ( 70 mm in the 1 st hour ) .",
"entities": []
},
{
"text": "Also , a sample for liquid culture ( MGIT BACTEC ) was sent to the Intermediate Reference Laboratory ( IRL ) which revealed the growth of Mycobacterium tuberculosis .",
"entities": [
{
"entity_text": "Mycobacterium tuberculosis",
"type": "CLINENTITY"
}
]
},
{
"text": "Computed tomography was not performed as the diagnosis was established by other cheaper and faster methods and also the patient was unwilling for the same .",
"entities": []
},
{
"text": "All the other routine investigations were within normal limits .",
"entities": []
},
{
"text": "He was referred to the nearest designated COVID- 19 management center , where he was managed as per national guidelines .",
"entities": []
},
{
"text": "Besides , he was also started on an antitubercular treatment of four drugs as per the National Tuberculosis Elimination Program ( NTEP ) guidelines .",
"entities": []
},
{
"text": "He was advised follow-up post completion of his stay at the designated COVID- 19 center , but he has not yet reported back for follow-up .",
"entities": []
},
{
"text": "Written informed consent was obtained from the patient for using clinical data and images for publication in this study .",
"entities": []
},
{
"text": "A 45 year old Indian female of Nordic origin presented 5 years back with a lump in the right breast and the axilla .",
"entities": [
{
"entity_text": "lump in the right breast and the axilla",
"type": "CLINENTITY"
}
]
},
{
"text": "She underwent modified radical mastectomy .",
"entities": []
},
{
"text": "Histophotomicrograph of the excised breast lesion showed a 2 . 1 cm duct carcinoma , positive for ER and PR with 1 out of 25 lymph nodes positive for metastasis .",
"entities": [
{
"entity_text": "breast lesion",
"type": "CLINENTITY"
},
{
"entity_text": "duct carcinoma",
"type": "CLINENTITY"
},
{
"entity_text": "lymph nodes positive for metastasis",
"type": "CLINENTITY"
}
]
},
{
"text": "She received 6 cycles of chemotherapy with cyclophosphamide , epirubicin , and 5 - fluorouracil .",
"entities": []
},
{
"text": "This was followed by tamoxifen 20 mg per day for five years .",
"entities": []
},
{
"text": "She was doing well on follow up until the completion of fifth year of her disease , when she presented with complaints of mild fever and weakness .",
"entities": [
{
"entity_text": "mild fever",
"type": "CLINENTITY"
},
{
"entity_text": "weakness",
"type": "CLINENTITY"
}
]
},
{
"text": "Examination revealed generalized lymph node enlargement along with hepatomegaly .",
"entities": [
{
"entity_text": "generalized lymph node enlargement",
"type": "CLINENTITY"
},
{
"entity_text": "hepatomegaly",
"type": "CLINENTITY"
}
]
},
{
"text": "Hemogram showed mild anemia , normal platelet count and a leukocyte count of 1 . 2 x 10 ( 11 ) / L .",
"entities": [
{
"entity_text": "mild anemia",
"type": "CLINENTITY"
}
]
},
{
"text": "Peripheral blood examination revealed medium sized lymphoid cells , constituting almost 75 % of total nucleated cell population .",
"entities": []
},
{
"text": "Immunophenotying , established a diagnosis of post thymic T-cell prolymphocytic leukemia .",
"entities": [
{
"entity_text": "T-cell prolymphocytic leukemia",
"type": "CLINENTITY"
}
]
},
{
"text": "Contrast-enhanced computed tomography of the chest and abdomen was done which revealed an anterior mediastinal mass with destruction of sternum along with multiple small nodular shadows in bilateral lung fields suggestive of lung metastasis .",
"entities": [
{
"entity_text": "anterior mediastinal mass",
"type": "CLINENTITY"
},
{
"entity_text": "lung metastasis",
"type": "CLINENTITY"
}
]
},
{
"text": "Fine needle aspiration cytology of the mass showed atypical ductal cells with nuclear pleomorphism , which were positive for ER , PR and Her 2 neu protein .",
"entities": []
},
{
"text": "This confirmed a co-existent metastatic breast carcinoma .",
"entities": [
{
"entity_text": "metastatic breast carcinoma",
"type": "CLINENTITY"
}
]
},
{
"text": "She was started on chemotherapy for T-PLL along with hormonal therapy with aromatase inhibitor .",
"entities": [
{
"entity_text": "T-PLL",
"type": "CLINENTITY"
}
]
},
{
"text": "Unfortunately , both her malignancies progressed after an initial stable disease of two months .",
"entities": []
},
{
"text": "Our patient was an 87 - year-old African-American woman who was a nursing home resident , with a history of diabetes mellitus type 2 and subarachnoid hemorrhage leading to aphasia , hemiplegia , seizures and dysphagia requiring percutaneous gastric feeds .",
"entities": [
{
"entity_text": "diabetes mellitus type 2",
"type": "CLINENTITY"
},
{
"entity_text": "subarachnoid hemorrhage",
"type": "CLINENTITY"
}
]
},
{
"text": "While at the nursing home , she had recurrent aspiration pneumonia and large tube-feed residuals consistent with a diagnosis of underlying gastroparesis .",
"entities": [
{
"entity_text": "aspiration pneumonia",
"type": "CLINENTITY"
},
{
"entity_text": "gastroparesis",
"type": "CLINENTITY"
}
]
},
{
"text": "Her management included metoclopramide and reduced tube-feeding rates , which improved her symptoms .",
"entities": []
},
{
"text": "However , within months the aspiration and increased residuals returned .",
"entities": [
{
"entity_text": "aspiration",
"type": "CLINENTITY"
}
]
},
{
"text": "After trials of different medication therapies without success , she started mirtazapine and her residual volume and aspirations decreased with a dose of 15 mg nightly .",
"entities": [
{
"entity_text": "aspirations",
"type": "CLINENTITY"
}
]
},
{
"text": "A 45 year old female with history of sickle cell disease presented with abdominal pain .",
"entities": [
{
"entity_text": "sickle cell disease",
"type": "CLINENTITY"
},
{
"entity_text": "abdominal pain",
"type": "CLINENTITY"
}
]
},
{
"text": "A CT scan revealed an exophytic renal mass measuring 2 . 9 cm x 2 . 0 cm x 2 . 1 cm located on the antero-lateral aspect of her right kidney and an unremarkable spleen .",
"entities": [
{
"entity_text": "renal mass",
"type": "CLINENTITY"
}
]
},
{
"text": "She was evaluated by urology and a right partial nephrectomy was planned , however on the day of the procedure , the patient ' s preoperative pregnancy test was positive .",
"entities": []
},
{
"text": "The procedure was post postponed until after she delivered and interval ultrasounds were obtained throughout her pregnancy to monitor the renal mass .",
"entities": []
},
{
"text": "The lesion increased minimally in size .",
"entities": [
{
"entity_text": "lesion",
"type": "CLINENTITY"
}
]
},
{
"text": "Two months after caesarian section delivery , patient underwent an unremarkable right laparoscopic partial nephrectomy with individual artery and vein vascular occlusion at the level of the renal hilum .",
"entities": [
{
"entity_text": "artery and vein vascular occlusion",
"type": "CLINENTITY"
}
]
},
{
"text": "A superficial liver laceration caused by the Veress needle was noted at the beginning of the procedure and effectively managed using bipolar cautery .",
"entities": [
{
"entity_text": "liver laceration",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient ' s post-operative course was notable for marked thrombocytosis with her platelet count increasing for her baseline of 300 , 000 to a zenith of 1 . 3 million .",
"entities": [
{
"entity_text": "thrombocytosis",
"type": "CLINENTITY"
}
]
},
{
"text": "She was started on aspirin therapy and splenomegaly was noted on abdomen ultrasound .",
"entities": [
{
"entity_text": "splenomegaly",
"type": "CLINENTITY"
}
]
},
{
"text": "Her platelet count normalized to 334 , 000 .",
"entities": []
},
{
"text": "On pathology , the renal mass was classified as a papillary renal neoplasm consistent with a translocation carcinoma .",
"entities": [
{
"entity_text": "papillary renal neoplasm",
"type": "CLINENTITY"
},
{
"entity_text": "carcinoma",
"type": "CLINENTITY"
}
]
},
{
"text": "There was no splenic tissue in the specimen .",
"entities": []
},
{
"text": "It was noted that the complete lack of staining of any keratins or epithelial membrane antigens was not consistent with a usual renal cell carcinoma and hence the diagnosis of a translocation tumor was made .",
"entities": [
{
"entity_text": "renal cell carcinoma",
"type": "CLINENTITY"
},
{
"entity_text": "tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient was lost to follow up presenting 2 years later and a follow-up CT scan noted marked splenic atrophy with several splenules .",
"entities": [
{
"entity_text": "splenic atrophy",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient was completely asymptomatic and at the time received all the post-splenectomy vaccination and her platelet count remained within normal limits .",
"entities": []
},
{
"text": "A 20 - year-old right-handed female factory worker with no medical history is consulting in the emergency ward with an open trauma of the left hand resulting from an occupational accident .",
"entities": []
},
{
"text": "Her hand was crushed under a heavy object .",
"entities": []
},
{
"text": "Physical examination found an important swelling and obvious distortion at the dorsum of the hand associated with wounds of the ulnar and radial edges of the left hand .",
"entities": [
{
"entity_text": "swelling",
"type": "CLINENTITY"
},
{
"entity_text": "distortion at the dorsum of the hand",
"type": "CLINENTITY"
},
{
"entity_text": "wounds of the ulnar and radial edges of the left hand",
"type": "CLINENTITY"
}
]
},
{
"text": "The neurovascular examination was normal ; in particular no sensitive deficit in the median nerve area was noted .",
"entities": []
},
{
"text": "Plain radiographs with front and lateral views showed a dislocation of the three lesser fingers associated with fractures of the hamatum and the second metacarpal .",
"entities": [
{
"entity_text": "dislocation of the three lesser fingers",
"type": "CLINENTITY"
},
{
"entity_text": "fractures of the hamatum and the second metacarpal",
"type": "CLINENTITY"
}
]
},
{
"text": "The three lesser metacarpals and the distal fragment of the hamatum were medially displaced .",
"entities": []
},
{
"text": "The patient was immediately brought to the operating theatre .",
"entities": []
},
{
"text": "The treatment consisted of a reduction and stabilisation using a multiple carpo-metacarpal and cross inter-metacarpal pinning .",
"entities": []
},
{
"text": "The wound was cleaned up trimmed and sutured .",
"entities": []
},
{
"text": "The had and the wrist were immobilized with a splint for six weeks .",
"entities": []
},
{
"text": "The patient had an intense and regular rehabilitation program .",
"entities": []
},
{
"text": "At one year follow-up , the outcome is good : the patient is painless with good bone consolidation in right position , strictly normal range of motion ( metacarpophalangeal 90 ° , proximal interphalagienne 100 ° and distal interphalageal 90 ° ) and a 80 % grip strength compared to the right side .",
"entities": []
},
{
"text": "A 24 - year-old African-American man presented to our Emergency Department with a one-week history of fever , dyspnea , cough , and abdominal pain .",
"entities": [
{
"entity_text": "abdominal pain",
"type": "CLINENTITY"
}
]
},
{
"text": "A computed tomography scan of his chest and abdomen revealed bilateral lower lobe pneumonia and two retained Jackson-Pratt drains in the right upper quadrant .",
"entities": [
{
"entity_text": "bilateral lower lobe pneumonia",
"type": "CLINENTITY"
}
]
},
{
"text": "He was taken to the operating room for drain removal , a right hemicolectomy , debridement of a duodenal injury , a Roux-en-y duodenojejunostomy , and an end ileostomy .",
"entities": []
},
{
"text": "He subsequently became increasing hypoxemic in the intensive care unit and a bronchoperitoneal fistula was diagnosed .",
"entities": [
{
"entity_text": "hypoxemic",
"type": "CLINENTITY"
},
{
"entity_text": "fistula",
"type": "CLINENTITY"
}
]
},
{
"text": "He required high-frequency oscillatory ventilation followed by lung isolation , and was successfully resuscitated using these techniques .",
"entities": []
},
{
"text": "A 19 - year-old healthy man was admitted to our cardiology department following a syncopal episode .",
"entities": [
{
"entity_text": "syncopal episode",
"type": "CLINENTITY"
}
]
},
{
"text": "His past medical history was unremarkable .",
"entities": []
},
{
"text": "He no family history of heart disease or sudden death .",
"entities": [
{
"entity_text": "heart disease",
"type": "CLINENTITY"
},
{
"entity_text": "sudden death",
"type": "CLINENTITY"
}
]
},
{
"text": "Two-days prior the syncope , he developed chest pain and an influenza-like illness consisting of fevers , rhinorrhea , and sore throat .",
"entities": [
{
"entity_text": "syncope",
"type": "CLINENTITY"
},
{
"entity_text": "chest pain",
"type": "CLINENTITY"
},
{
"entity_text": "fevers",
"type": "CLINENTITY"
},
{
"entity_text": "rhinorrhea",
"type": "CLINENTITY"
},
{
"entity_text": "sore throat",
"type": "CLINENTITY"
}
]
},
{
"text": "At the physical exam , the patient was febrile at 39 ° C .",
"entities": [
{
"entity_text": "febrile",
"type": "CLINENTITY"
}
]
},
{
"text": "He had an inflamed throat , bradycardia at cardiac auscultation and there were no signs of heart failure .",
"entities": [
{
"entity_text": "inflamed throat",
"type": "CLINENTITY"
},
{
"entity_text": "bradycardia",
"type": "CLINENTITY"
},
{
"entity_text": "heart failure",
"type": "CLINENTITY"
}
]
},
{
"text": "The electrocardiogram ( EKG ) showed grade III atrioventricular ( AV ) bloc with a ventricular rate of 38 beats per minute .",
"entities": [
{
"entity_text": "grade III atrioventricular ( AV ) bloc",
"type": "CLINENTITY"
}
]
},
{
"text": "Laboratory studies were remarkable for a HS-troponin level 181 ng / L , a white blood cell count of 14270 / mm with 48 % lymphocytes , and elevated C-reactive protein at 90 mg / L .",
"entities": []
},
{
"text": "Serum electrolytes , kidney and liver functions were within normal limits .",
"entities": []
},
{
"text": "A chest X-ray showed an appropriate cardiac size .",
"entities": []
},
{
"text": "The initial transthoracic echocardiography ( TTE ) showed a normal global left ventricular function ( left ventricular ejection fraction ( LVEF ) 60 % ) and wall motion abnormalities ( anteroseptal hypokinesia ) , with reduced left ventricular global longitudinal strain ( LV GLS = -14 . 1 % ) .",
"entities": [
{
"entity_text": "hypokinesia",
"type": "CLINENTITY"
}
]
},
{
"text": "Cardiac magnetic resonance ( CMR ) showed increased signal intensity at the mid-lateral wall on T 2 - weighted images .",
"entities": []
},
{
"text": "Late enhancement revealed a patchy subepicardial hyperenhancement of the medio-distal segments of the anterior and anterolateral walls which confirm the diagnosis of myocarditis .",
"entities": [
{
"entity_text": "myocarditis",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient was treated with cefotaxime and doxycycline .",
"entities": []
},
{
"text": "All serological tests ( chlamydia , coxiella , mycoplasma , rickettsia , lyme and bartonella ) obtained during the hospitalization were negative .",
"entities": []
},
{
"text": "Five days later , the patient was asymptomatic .",
"entities": []
},
{
"text": "The 24 hours ECG monitoring showed a sinus rhythm .",
"entities": []
},
{
"text": "The TTE revealed a normal LVEF and an improvement in the LVGLS with segmental reduced values concordant with the CMR abnormalities .",
"entities": []
},
{
"text": "At one-month follow-up the patient made a full recovery without any recurring cardiovascular symptoms or abnormal electrocardiographic or echocardiographic findings .",
"entities": [
{
"entity_text": "cardiovascular symptoms",
"type": "CLINENTITY"
}
]
},
{
"text": "A 70 yrs old Female was admitted in our institution diagnosed with severe bilateral Osteoarthritis .",
"entities": [
{
"entity_text": "bilateral Osteoarthritis",
"type": "CLINENTITY"
}
]
},
{
"text": "The x-rays showed bone on bone Tricompartment OA Knee with Varus Malalignment .",
"entities": [
{
"entity_text": "OA Knee with Varus Malalignment",
"type": "CLINENTITY"
}
]
},
{
"text": "She was posted for Single Stage Bilateral Total Knee Replacement and as planned the Left Knee Was Operated first .",
"entities": []
},
{
"text": "After exposure , Proximal Tibial , Distal Femoral Cuts and measurement of extension gaps the synovium from the anterior Femur was removed and sizing was done .",
"entities": []
},
{
"text": "The AP cut was then proceeded with .",
"entities": []
},
{
"text": "We spotted a small Osteochondral Cyst in the Anterior Femur which was curretted to remove the cystic material , which is when we realised that the cyst was large and communicating with the medulary canal .",
"entities": [
{
"entity_text": "Cyst",
"type": "CLINENTITY"
},
{
"entity_text": "cyst",
"type": "CLINENTITY"
}
]
},
{
"text": "The remaining Femoral preparations was done keeping in mind the risk of iatrogenic fracture and extension Stem was used in the femur .",
"entities": [
{
"entity_text": "fracture",
"type": "CLINENTITY"
}
]
},
{
"text": "The defect was then packed cancellous bone graft .",
"entities": []
},
{
"text": "A 31 - year-old woman with no pathological history was admitted to our hospital for chest pain , bone and joint pain , hair loss and asthenia for the last 3 months .",
"entities": [
{
"entity_text": "chest pain",
"type": "CLINENTITY"
},
{
"entity_text": "bone and joint pain",
"type": "CLINENTITY"
},
{
"entity_text": "hair loss",
"type": "CLINENTITY"
}
]
},
{
"text": "On physical examination , we found fever at 38 ° C , polypnea at 32 cycles / min , arterial hypertension at 160 / 90 mmHg , malar rash , synovitis of wrists , elbows and ankles , and edema on both legs .",
"entities": [
{
"entity_text": "fever",
"type": "CLINENTITY"
},
{
"entity_text": "synovitis of wrists , elbows and ankles",
"type": "CLINENTITY"
},
{
"entity_text": "edema",
"type": "CLINENTITY"
}
]
},
{
"text": "Diagnostic assessment : laboratory tests disclosed the following values : Increase level of erythrocyte sedimentation rate 120 mm / 1 st hour , C reactive protein was 20 mg / l .",
"entities": []
},
{
"text": "The blood count showed hemoglobin at 9 g / dl , MCV at 85 3 , lymphopenia at 400 / mm 3 , while platelets were normal 450 000 / mm 3 .",
"entities": []
},
{
"text": "Direct coombs test was negative .",
"entities": []
},
{
"text": "Serum Albumin was 25 g / l ; proteins level was low at 50 g / l and proteinuria at 3 . 2 g / day .",
"entities": []
},
{
"text": "Creatinine was normal .",
"entities": []
},
{
"text": "Anti-nuclear antibody ANA were positive 1 / 320 with homogeneous pattern , anti-dsDNA level was 160 U / ml .",
"entities": []
},
{
"text": "Anti-cardiolipin IgG antibodies were positive 25 UGPL .",
"entities": []
},
{
"text": "Rheumatoid Factor was negative .",
"entities": []
},
{
"text": "C 3 and C 4 complement fractions were low ( 0 . 2 g / l and 0 . 05 g / l ) .",
"entities": []
},
{
"text": "Chest x-ray , electrocardiogram and echocardiography were normal .",
"entities": []
},
{
"text": "Chest computed tomography ( CT ) scan showed proximal pulmonary embolism .",
"entities": [
{
"entity_text": "pulmonary embolism",
"type": "CLINENTITY"
}
]
},
{
"text": "Renal ultrasound was normal .",
"entities": []
},
{
"text": "Renal biopsy reveals immunocomplex nephritis , lupus nephritis , segmental mesangial proliferation , mild activity lupus nephritis class III ( A / C ) .",
"entities": [
{
"entity_text": "nephritis",
"type": "CLINENTITY"
},
{
"entity_text": "lupus nephritis",
"type": "CLINENTITY"
},
{
"entity_text": "mesangial proliferation",
"type": "CLINENTITY"
}
]
},
{
"text": "Before starting corticosteroids , we analyzed electrolytes .",
"entities": []
},
{
"text": "Serum calcium was elevated 132 mg / l with hyper-calciuria 479 mg / 24 h . 25 OHD was normal .",
"entities": []
},
{
"text": "Alcaline phosphatase was 420 UI / l . the patient did not have any symptoms of hypercalcemia .",
"entities": []
},
{
"text": "Serum protein Electrophoresis showed polyclonal hypergammaglobulinaemia .",
"entities": []
},
{
"text": "Serum and urine immunofixation as well as Bence-Jones proteinuria were negative .",
"entities": []
},
{
"text": "Intact parathyroid hormone ( iPTH ) was high 628 pg / ml .",
"entities": []
},
{
"text": "CT scan and ultrasound of parathyroid imaging revealed a lower left parathyroid nodule measuring 2 cm x 1 cm .",
"entities": [
{
"entity_text": "nodule",
"type": "CLINENTITY"
}
]
},
{
"text": "Femoral and lumbar bone mineral density ( BMD ) showed osteoporosis ( T-score : -2 . 6 ) .",
"entities": []
},
{
"text": "In addition , we found multiple pelvic osteolytic lesions at CT scan .",
"entities": []
},
{
"text": "Other causes of hypercalcemia and bone lysis were excluded .",
"entities": []
},
{
"text": "The diagnosis in this case was SLE with lupus nephritis class III and anti-phospholipid syndrome , complicated by pulmonary embolism associated to primary hyperparathyroidism causing severe hypercalcemia , osteoporosis .",
"entities": [
{
"entity_text": "SLE with lupus nephritis class III",
"type": "CLINENTITY"
},
{
"entity_text": "pulmonary embolism",
"type": "CLINENTITY"
},
{
"entity_text": "hypercalcemia",
"type": "CLINENTITY"
},
{
"entity_text": "osteoporosis",
"type": "CLINENTITY"
}
]
},
{
"text": "Therapeutic intervention : the patient was given a pulse of methyl-prednisolone 15 mg / kg / day for 3 days followed by oral prednisone 1 mg / kg / day , associated with intravenous cyclophosphamide 750 mg / m 2 / month for 6 months .",
"entities": []
},
{
"text": "Mycophenolate mofetil 2 g / day was prescribed as a maintenance therapy of lupus nephritis with hydroxychloroquine at a dose of 400 mg / day .",
"entities": []
},
{
"text": "Treatment of pulmonary embolism was initiated with subcutaneous low molecular weight heparin ( enoxaparin 0 . 1 ml / 10 kg / 12 h ) followed by antivitamin K .",
"entities": [
{
"entity_text": "pulmonary embolism",
"type": "CLINENTITY"
}
]
},
{
"text": "For Hypercalcemia , patient has received intravenous fluid with furosemide .",
"entities": [
{
"entity_text": "Hypercalcemia",
"type": "CLINENTITY"
}
]
},
{
"text": "She also required Alendronate 70 mg / week with Vitamin D 400 u / day for osteoporosis .",
"entities": []
},
{
"text": "The left parathyroid gland was surgically removed .",
"entities": []
},
{
"text": "Histopathological examination revealed parathyroid adenoma .",
"entities": []
},
{
"text": "Her immediate postoperative parathyroid hormone level was 64 pg / ml with a calcium level of 98 mg / l .",
"entities": []
},
{
"text": "Follow-up and outcomes : forty-eight hours after the surgery she developed oral paresthesia .",
"entities": []
},
{
"text": "She had hypocalcemia at 72 mg / l .",
"entities": []
},
{
"text": "She required oral supplementation for few months .",
"entities": []
},
{
"text": "Additional investigations for multiple endocrine neoplasia were negative .",
"entities": []
},
{
"text": "The patient remained asymptomatic .",
"entities": []
},
{
"text": "Her SLE was calm without any relapse .",
"entities": [
{
"entity_text": "SLE",
"type": "CLINENTITY"
}
]
},
{
"text": "Control of proteinuria was negative .",
"entities": []
},
{
"text": "Corticosteroids was dropped .",
"entities": []
},
{
"text": "The follow-up was 4 years .",
"entities": []
},
{
"text": "Forty year old male presented with a huge mass in this left arm .",
"entities": []
},
{
"text": "The same patient apparently was admitted three years back for excision of the arm swelling which was relatively small that time .",
"entities": [
{
"entity_text": "arm swelling",
"type": "CLINENTITY"
}
]
},
{
"text": "However the patient did not undergo surgery and was takin treatment from local bone setters during the last three years and tumor grew to a larger size during this period .",
"entities": [
{
"entity_text": "tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "The current dimensions of tumor was 32 x 28 cms with circumference of 87 cms .",
"entities": [
{
"entity_text": "tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "X-ray showed complete destruction of the upper humerus with central calcification .",
"entities": []
},
{
"text": "Biopsy releveled a chondrosarcoma .",
"entities": [
{
"entity_text": "chondrosarcoma",
"type": "CLINENTITY"
}
]
},
{
"text": "Skeletal survey and bone scan did not reveal any other lesion in the body .",
"entities": []
},
{
"text": "A forequarter amputation was done and a 16 kg tumor mass was excised .",
"entities": [
{
"entity_text": "tumor mass",
"type": "CLINENTITY"
}
]
},
{
"text": "At three years follow up , the patient has no complains with no recurrence of the tumor .",
"entities": [
{
"entity_text": "tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "A 3 years old girl born from non-consanguineous parents , without any neonatal suffering ; with good psychomotor development , from a popular district in one of our cities , without any obvious contact with dogs ; presented with exophthalmia associated with unilateral blindness evolving rapidly within 3 months .",
"entities": [
{
"entity_text": "unilateral blindness",
"type": "CLINENTITY"
}
]
},
{
"text": "Clinical examination showed a non-pulsatile , painless , axial , irreducible exophthalmia with no sign of conjunctivitis or keratitis , and right monocular blindness , right ptosis ; and fundal examination had objectified right papillary oedema .",
"entities": [
{
"entity_text": "exophthalmia",
"type": "CLINENTITY"
},
{
"entity_text": "conjunctivitis",
"type": "CLINENTITY"
},
{
"entity_text": "keratitis",
"type": "CLINENTITY"
},
{
"entity_text": "monocular blindness",
"type": "CLINENTITY"
},
{
"entity_text": "right ptosis",
"type": "CLINENTITY"
}
]
},
{
"text": "The rest of the clinical examination was normal .",
"entities": []
},
{
"text": "Brain and orbital magnetic resonance imaging ( MRI ) revealed an extra-connal right orbital lesion near the orbital apex , measuring 28 x 18 mm , of oval shape , it appeared hypo-signal in T 1 and hyper-signal in T 2 , limited by a thin wall which took contrast product , this lesion compressed the optic nerve towards the nasal region .",
"entities": [
{
"entity_text": "extra-connal right orbital lesion",
"type": "CLINENTITY"
},
{
"entity_text": "lesion",
"type": "CLINENTITY"
}
]
},
{
"text": "Chest x-ray and abdominal ultrasound did not reveal any other localization .",
"entities": []
},
{
"text": "The patient was operated by performing a right extra-dural frontal approach , a cyst puncture was done in the first intention because the cyst was adherent to the neighbouring structures making its complete removal impossible , then a microscopic extirpation of the cystic membrane , combined with abundant washing by hypertonic serum to sterilize the cystic sit and reduce chances of dissemination .",
"entities": [
{
"entity_text": "cyst",
"type": "CLINENTITY"
}
]
},
{
"text": "Histological examination was in favour of intra-orbital hydatidosis .",
"entities": [
{
"entity_text": "hydatidosis",
"type": "CLINENTITY"
}
]
},
{
"text": "Postoperatively , the patient was given an antihelminthic treatment of albendazole at a dose of 10 mg per kilogram per day in 3 doses separated by 2 weeks ; the evolution was marked by the significant regression of the exophthalmia and the gradual improvement of the visual acuity .",
"entities": [
{
"entity_text": "exophthalmia",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient however still retains a right unilateral nasal hemianopia after two years of follow-up .",
"entities": [
{
"entity_text": "hemianopia",
"type": "CLINENTITY"
}
]
},
{
"text": "An MRI done in the same period shows a cure of the patient by a complete disappearance of the cyst .",
"entities": [
{
"entity_text": "cyst",
"type": "CLINENTITY"
}
]
},
{
"text": "We received a boy 3 - year-old boy with autistic disorder on hospital of pediatric ward A at university hospital Mohammed VI of Marrakesh .",
"entities": [
{
"entity_text": "autistic disorder",
"type": "CLINENTITY"
}
]
},
{
"text": "He has no family history of illness or autistic spectrum disorder .",
"entities": [
{
"entity_text": "autistic spectrum disorder",
"type": "CLINENTITY"
}
]
},
{
"text": "The history revealed that at 2 years of age .",
"entities": []
},
{
"text": "The child was diagnosed with a ‘ ‘ severe communication disorder , ' ' with social interaction difficulties and sensory processing delay .",
"entities": []
},
{
"text": "A composite follow-up of all previous assessments and investigations was undertaken .",
"entities": []
},
{
"text": "Blood work was normal ( thyroid-stimulating hormone ( TSH ) , hemoglobin , mean corpuscular volume ( MCV ) , and ferritin ) .",
"entities": []
},
{
"text": "Genetic testing was unremarkable ( normal karyotype , negative for fragile X ) and the magnetic resonance imaging ( MRI ) in search of a demyelinating attack of the white matter , electroencephalography ( EEG ) , optometry assessment were also normal .",
"entities": []
},
{
"text": "At the conclusion of this composite assessment , the boy was given a primary diagnosis of autistic spectrum disorder .",
"entities": [
{
"entity_text": "autistic spectrum disorder",
"type": "CLINENTITY"
}
]
},
{
"text": "A plan was instituted including speech-language therapy , intensive individualized educational programming , and contact was encouraged with the Autism Society .",
"entities": []
},
{
"text": "For that purpose , the parents moved to morocco to be surrounded by family without any huge improvement .",
"entities": []
},
{
"text": "Upon direct questioning at initial presentation , the 3 - year-old child was reported by the parents to have unexplained fatigue , Gastrointestinal symptoms included bloating , constipation and diarrhea .",
"entities": [
{
"entity_text": "bloating",
"type": "CLINENTITY"
},
{
"entity_text": "constipation",
"type": "CLINENTITY"
},
{
"entity_text": "diarrhea",
"type": "CLINENTITY"
}
]
},
{
"text": "Psychiatric symptoms included a frequently depressed mood , disproportionate anger , and emotional lability .",
"entities": []
},
{
"text": "On exploring his history , the child was born from yemenite father and Moroccan mother in Germany at-term weighing 3500 g with an Apgar score of 9 at 1 minute and 10 at 5 minutes after an uneventful pregnancy and delivery .",
"entities": []
},
{
"text": "No concerns were present in the neonatal period .",
"entities": []
},
{
"text": "Development in the first 24 months of life appeared fine according to the parents-his motor skills seemed to progress normally and he achieved expected milestones .",
"entities": []
},
{
"text": "After 2 years of age , however , his language skills slowly began to regress .",
"entities": []
},
{
"text": "He also demonstrated a change in temperament as he started to whine repeatedly and to scream without provocation .",
"entities": []
},
{
"text": "Physical examination revealed a height and weight normal for age .",
"entities": []
},
{
"text": "He was uncommunicative , restless , and somewhat agitated .",
"entities": []
},
{
"text": "General examination was unremarkable other than dark rings around the eyes .",
"entities": []
},
{
"text": "There were no dysmorphic features evident .",
"entities": []
},
{
"text": "He had difficulty maintaining eye contact , and he appeared disinterested in what was taking place .",
"entities": []
},
{
"text": "No abnormality was found on abdominal assessment .",
"entities": []
},
{
"text": "Anti-tissue transglutaminase antibodies levels were 76 U ( normal < 10 ) .",
"entities": []
},
{
"text": "The patient underwent upper endoscopy as duodenal biopsy to confirm a celiac disease diagnosis .",
"entities": []
},
{
"text": "It shows a total villous atrophy corresponding to a stage 4 of Marsh classification .",
"entities": [
{
"entity_text": "villous atrophy",
"type": "CLINENTITY"
}
]
},
{
"text": "Given the positive screen for celiac disease ( positive anti-tissue transglutaminase antibodies and results of duodenal biopsy ) , dietary intervention was immediately commenced .",
"entities": [
{
"entity_text": "celiac disease",
"type": "CLINENTITY"
}
]
},
{
"text": "All gluten was eliminated from the boy ' s diet .",
"entities": []
},
{
"text": "Within 1 month , the boy ' s gastrointestinal symptoms were relieved and his behavior had changed .",
"entities": []
},
{
"text": "The mother reported that her boy became progressively more communicative .",
"entities": []
},
{
"text": "The child has continued on the gluten-free diet and has progressed well and remained healthy over the following 6 months .",
"entities": []
},
{
"text": "A 46 - year-old man with hypertension and dyslipidemia diagnosed 4 - months before , as well as new-onset diabetes mellitus unveiled 1 - month earlier , was referred to emergency department for hypokalemia .",
"entities": [
{
"entity_text": "new-onset diabetes mellitus",
"type": "CLINENTITY"
}
]
},
{
"text": "Hormonal study and dynamic biochemical tests performed indicated ECS .",
"entities": []
},
{
"text": "Imaging and cytological findings pointed toward a likely primary right parotid malignancy with liver metastases .",
"entities": [
{
"entity_text": "primary right parotid malignancy",
"type": "CLINENTITY"
},
{
"entity_text": "liver metastases",
"type": "CLINENTITY"
}
]
},
{
"text": "Somatostatin receptor scintigraphy has shown an increased uptake in the parotid gland and mild expression in liver metastasis .",
"entities": [
{
"entity_text": "liver metastasis",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient underwent right parotidectomy , and histopathologic examination confirmed ACC .",
"entities": [
{
"entity_text": "ACC",
"type": "CLINENTITY"
}
]
},
{
"text": "Meanwhile , hypercortisolism was managed with metyrapone , ketoconazole , and lanreotide .",
"entities": [
{
"entity_text": "hypercortisolism",
"type": "CLINENTITY"
}
]
},
{
"text": "Despite chemotherapy onset , a rapid disease progression and clinical course deterioration was observed .",
"entities": [
{
"entity_text": "disease progression",
"type": "CLINENTITY"
}
]
},
{
"text": "A 3 years old boy without any particular diseases history , admitted to the emergency room for a bipolar trauma with a left hemicorporal point of impact following a domestic accident .",
"entities": []
},
{
"text": "The delay to consult was 5 hours after the incident .",
"entities": []
},
{
"text": "The clinical examination at admission had showed a deformed left superior member , painful on palpation with the presence of the humeral pulse and a right inferior member shortened and flexed , the thigh slightly in adduction , internal rotation with the member .",
"entities": []
},
{
"text": "A radiological assessment was performed immediately ; including a standard X-ray of the pelvis which showed a dislocated head of the right femur , completed secondarily by a CT Scan of the hip confirming the posterior type of the dislocation isolated from any fractures of the head of the femur .",
"entities": [
{
"entity_text": "dislocated head of the right femur",
"type": "CLINENTITY"
},
{
"entity_text": "fractures of the head of the femur",
"type": "CLINENTITY"
}
]
},
{
"text": "The standard radiography of the left shoulder showed a Salter I epiphyseal separation of the humerus .",
"entities": [
{
"entity_text": "Salter I epiphyseal separation of the humerus",
"type": "CLINENTITY"
}
]
},
{
"text": "After one hour , we performed an orthopedic reduction of the dislocated hip monitored under scope , with placement of a pelvic splint for an analgesic aim to be kept during three weeks .",
"entities": [
{
"entity_text": "dislocated hip",
"type": "CLINENTITY"
}
]
},
{
"text": "The radiological results were satisfactory with a restored bilateral symmetry of the articular anatomy .",
"entities": []
},
{
"text": "The Salter I detachment of the humerus was orthopedically reduced then immobilized by a thoracoabdominal plaster be kept during a month .",
"entities": []
},
{
"text": "The child has been discharged the next day .",
"entities": []
},
{
"text": "Revised after a month , showed a stable left hip on the clinical examination .",
"entities": []
},
{
"text": "In the decline of 2 years , we haven ' t noticed any recidivism and the functional results were good ; On the radiography we do not have any signs of avascular necrosis no changes of the head of femur , of the acetabulum or the joint space .",
"entities": [
{
"entity_text": "avascular necrosis",
"type": "CLINENTITY"
}
]
},
{
"text": "A 33 - year-old woman came to Department of Fertility , Endocrinology and Reproduction at Saiful Anwar public Hospital and consulted that she has not menstruated since 5 years ago ( 28 years old ) .",
"entities": [
{
"entity_text": "not menstruated",
"type": "CLINENTITY"
}
]
},
{
"text": "Her initial menarche was at the age of 14 years and it is in accordance with the normal growth of a child at her age .",
"entities": []
},
{
"text": "The patient had a regular menstrual period of 5-7 days , she replaced the pads for 2-3 times / day , and had no menstrual pain .",
"entities": [
{
"entity_text": "menstrual pain",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient has a history of injective contraceptive that was done every once a month in 2010 , and after the injection , she menstruated for two months and then it stopped .",
"entities": []
},
{
"text": "Based on clinical examination and a physical examination , the patient was diagnosed with secondary amenorrhea .",
"entities": [
{
"entity_text": "secondary amenorrhea",
"type": "CLINENTITY"
}
]
},
{
"text": "Investigations that were used are ultrasonography , thorax X-ray and CT Scan Head .",
"entities": []
},
{
"text": "Ultrasonography and thorax X-Ray showed that patient is suspected to have right pleural effusion .",
"entities": [
{
"entity_text": "right pleural effusion",
"type": "CLINENTITY"
}
]
},
{
"text": "CT-Scan examination showed that bilateral ethmoidal sinusitis and pituitary gland was within normal limits .",
"entities": []
},
{
"text": "The treatment plan in this patient is P test therapy with Prothyra 1 x 10 mg for 7 days , with control on 2 weeks after the use .",
"entities": []
},
{
"text": "P test showed a negative result , because after 14 days of progesterone consumption the prothyra is not bleeding .",
"entities": []
},
{
"text": "The treatment is followed by a E + P test ( Estrogen + Progesterone ) with Estrogen 1 x 0 . 625 mg for 21 days and an addition of Progesterone 1 x 10 mg on 12 th -21 st days , while the control was performed one week after the drug runs out .",
"entities": []
},
{
"text": "Based on the E + P test , the obtained results were FSH : 8 . 71 MIU / mL , LH : 3 . 1 IU / L , Prolactin : 319 . 4 ng / mL .",
"entities": []
},
{
"text": "The E + P test showed a negative result , so it was necessary to do hysteroscopy and curettage for the uterus evaluation .",
"entities": []
},
{
"text": "Hysteroscopy results showed that there were grade 4 adhesions in the uterine cavum , with a pale colored connective tissue in the uterine cavum , which refers to the diagnosis of secondary amenorrhea suspect tuberculosis endometritis , while the result of tissue curettage was examined on the Anatomical Pathology department .",
"entities": [
{
"entity_text": "adhesions in the uterine cavum",
"type": "CLINENTITY"
},
{
"entity_text": "secondary amenorrhea",
"type": "CLINENTITY"
},
{
"entity_text": "tuberculosis endometritis",
"type": "CLINENTITY"
}
]
},
{
"text": "Results of anatomical pathology hysteroscopy showed endometrial tissue with stromal looks granulomas with lymphocytes , histiocytes , epithelioid and Langhans multinucleated giant cells and no malignancy was found in this preparation , which showed that patient ' s diagnosis is secondary amenorrhea suspected tuberculosis endometritis .",
"entities": [
{
"entity_text": "secondary amenorrhea",
"type": "CLINENTITY"
},
{
"entity_text": "tuberculosis endometritis",
"type": "CLINENTITY"
}
]
},
{
"text": "Based on the Anatomical Pathology hysteroscopy result , treatment was done by using anti-tuberculosis drug category I ( FDC 1 X 3 tab ) for 6 months .",
"entities": []
},
{
"text": "Anatomical pathology result through macroscopic observation showed visible network of approximately 0 . 3 cm and 0 . 4 cm in diameter with a grayish-white color , while the microscopic observations showed fibromuscular tissue at high cylindrical epithelium with polyps shaped vacuolar , and inflammatory granulomatic and aplastic cells were not found .",
"entities": []
},
{
"text": "A 3 - day-old boy from Kosovo with dextro-transposition of the great arteries who developed progressive heart failure required an emergency arterial switch operation .",
"entities": [
{
"entity_text": "progressive heart failure",
"type": "CLINENTITY"
}
]
},
{
"text": "Because of persistent pulmonary edema after completion of the arterial switch operation at our institution , the patient could not be weaned off mechanical ventilation .",
"entities": []
},
{
"text": "Transthoracic echocardiography revealed an anomalous accelerated flow , indicating an anomalous systemic pulmonary shunt .",
"entities": []
},
{
"text": "Arterial catheterization revealed an abnormal bronchial artery originating from the left subclavian artery and bifurcating to both lungs .",
"entities": [
{
"entity_text": "abnormal bronchial artery",
"type": "CLINENTITY"
}
]
},
{
"text": "The anomalous ectatic bronchial artery was successfully occluded by coil embolization .",
"entities": [
{
"entity_text": "anomalous ectatic bronchial artery",
"type": "CLINENTITY"
}
]
},
{
"text": "The improvement of the patient ' s hemodynamic status resulted in an uneventful post-operative course .",
"entities": []
},
{
"text": "We present here a case of Macrophage activation syndrome associated with Griscelli syndrome type 2 in a 3 - years-old male born of consanguineous parentage .",
"entities": [
{
"entity_text": "Macrophage activation syndrome",
"type": "CLINENTITY"
},
{
"entity_text": "Griscelli syndrome type 2",
"type": "CLINENTITY"
}
]
},
{
"text": "His birth histories , his familie social history and developmental milestones were unremarkable .",
"entities": []
},
{
"text": "He was born at full term with no antenatal or perinatal complications , He was on exclusively breast-fed , food diversification was started at 6 months old , his weight , length and psychomotor development were within the normal range , the child was described as a good eater , was on a normal diet and was thriving appropriately .",
"entities": [
{
"entity_text": "perinatal complications",
"type": "CLINENTITY"
}
]
},
{
"text": "Furthermore the boy presented a progressive abdominal distension since birth , progressive pallor and recurrent episodes of fever since 1 year of age .",
"entities": [
{
"entity_text": "abdominal distension",
"type": "CLINENTITY"
},
{
"entity_text": "fever",
"type": "CLINENTITY"
}
]
},
{
"text": "There was history of blood transfusions for last 2 months .",
"entities": []
},
{
"text": "On the other side there was no history of jaundice , vomiting , urinary or bowel complaints , bleeding from any site or neurological complaints .",
"entities": [
{
"entity_text": "jaundice",
"type": "CLINENTITY"
},
{
"entity_text": "vomiting",
"type": "CLINENTITY"
},
{
"entity_text": "bowel complaints",
"type": "CLINENTITY"
}
]
},
{
"text": "On admission , he was very pale with silvery gray scalp hair , white eyelashes , he was hypotonic , tachycardic , fever of 40 ° C , lymphoadenopathy and hepato-splenomegaly .",
"entities": [
{
"entity_text": "hypotonic",
"type": "CLINENTITY"
},
{
"entity_text": "tachycardic",
"type": "CLINENTITY"
},
{
"entity_text": "fever",
"type": "CLINENTITY"
},
{
"entity_text": "lymphoadenopathy",
"type": "CLINENTITY"
},
{
"entity_text": "hepato-splenomegaly",
"type": "CLINENTITY"
}
]
},
{
"text": "The blood count showed pancytopenia ; 1980 white blood cells / L ( VN 4000-13 500 / L ) , neutrophils 820 / L , 910 cells / L , hemoglobin ( Hb ) 6 . 3 g / dL ( 11 . 5-14 VN , 5 g / dL ) , platelets 44 000 / L ( VN 150 000-400 000 / L ) , There were no giant cytoplasmic granules in leucocytes .",
"entities": [
{
"entity_text": "pancytopenia",
"type": "CLINENTITY"
},
{
"entity_text": "cytoplasmic granules",
"type": "CLINENTITY"
}
]
},
{
"text": "The liver function tests were normal expect low albumin ( 2 . 1 mg / dL ) and increased alkaline phosphatase ( 1196 mg / dL ) with low fibrinogen ( 1 . 7 g / l ) .",
"entities": [
{
"entity_text": "low albumin",
"type": "CLINENTITY"
},
{
"entity_text": "increased alkaline phosphatase",
"type": "CLINENTITY"
},
{
"entity_text": "low fibrinogen",
"type": "CLINENTITY"
}
]
},
{
"text": "Serum triglycerides , ferrintin and lactic dehydrogenase were very high ; respectively 4 . 75 g / L ; 2763 g / L and 597 U / L . the C reactive protein ( CRP ) was elevated at 83 mg / l .",
"entities": []
},
{
"text": "A chest X-ray was normal while the abdominal ultrasound showed a hepatomegaly and a splenomegaly , free biliary ducts without ascites .",
"entities": [
{
"entity_text": "hepatomegaly",
"type": "CLINENTITY"
},
{
"entity_text": "splenomegaly",
"type": "CLINENTITY"
},
{
"entity_text": "ascites",
"type": "CLINENTITY"
}
]
},
{
"text": "Because of hepato-splenomegaly , pancytopenia , hyperferritinemia and hypofibrinogenemia the diagnosis of Macrophage activation syndrome was evoked indicating a bone marrow aspiration that showed numerous morphologically benign macrophages with haemophagocytic activity that comforting the diagnosis of a SAM according to Ravelli and HLH- 2004 criteria .",
"entities": [
{
"entity_text": "hepato-splenomegaly",
"type": "CLINENTITY"
},
{
"entity_text": "pancytopenia",
"type": "CLINENTITY"
},
{
"entity_text": "hyperferritinemia",
"type": "CLINENTITY"
},
{
"entity_text": "hypofibrinogenemia",
"type": "CLINENTITY"
},
{
"entity_text": "Macrophage activation syndrome",
"type": "CLINENTITY"
},
{
"entity_text": "SAM",
"type": "CLINENTITY"
}
]
},
{
"text": "Blood culture , urine examination , malarial serology , Kala Azar serology , viral serologies such as EBV , hepatitis A , B , C and human immunodeficiency virus HIV , serologies of rickettsia , syphilis and toxoplasmosa were negatives .",
"entities": []
},
{
"text": "Serologies of CMV and rubella showed an old immunization .",
"entities": []
},
{
"text": "The immunological tests such as antinuclear antibodies ( ANA ) , anti-LKM 1 , anti-mitochondria and anti-smooth muscle antibodies were negatives .",
"entities": []
},
{
"text": "Because of the consanguineous family , notion of recurrent infection and the presence of silvery-gray color of the hair and eyebrows , diagnosis of Griscelli Syndrome was evoked directing a light microscopy examination of the hair that showed a large , irregular clumps of pigments characteristic of Griscelli Syndrome .",
"entities": [
{
"entity_text": "Griscelli Syndrome",
"type": "CLINENTITY"
},
{
"entity_text": "Griscelli Syndrome",
"type": "CLINENTITY"
}
]
},
{
"text": "The molecular biology showed mutation in RAB 27 A gene confirming the diagnosis of a Griscelli syndrome type 2 .",
"entities": [
{
"entity_text": "Griscelli syndrome type 2",
"type": "CLINENTITY"
}
]
},
{
"text": "The first-line therapy in management of Macrophage activation syndrome complicating Griscelli syndrome type 2 was based on the parenteral administration of high doses of corticosteroids ( methylprednisolone pulses 1 g / 0 . 73 m 2 / day for 3 days then 60 mg / m 2 ) with poor response ; persisting with involvement of the 3 cell lines in the blood count , elevated ferritin and triglycerides .",
"entities": [
{
"entity_text": "Macrophage activation syndrome",
"type": "CLINENTITY"
},
{
"entity_text": "Griscelli syndrome type 2",
"type": "CLINENTITY"
}
]
},
{
"text": "Given the lack of response to steroids , Etoposide was started for 3 days associated with cyclophosphamide , the evolution was good with improvement of count blood cells , ferritin was lessening while the bone marrow showed decreased numerous of macrophages with low haemophagocytic activity .",
"entities": []
},
{
"text": "On the other side the infectious process was good managed by perfusion of Antibiotics such as Ceftazidim in combination with aminoside .",
"entities": []
},
{
"text": "The patient was sent home with prednisone and cyclosporine , He was placed on the list of bone marrow transplantation ( BMT ) .",
"entities": []
},
{
"text": "A 16 - year-old Indian boy presented to our hospital with a history of a lump in the lower back region since birth .",
"entities": [
{
"entity_text": "lump",
"type": "CLINENTITY"
}
]
},
{
"text": "Initially , it was small , but its size increased gradually over time to a size of 15 cm × 15 cm at presentation .",
"entities": []
},
{
"text": "There were no other associated abnormalities .",
"entities": []
},
{
"text": "Investigations revealed the lump to be a benign cystic teratoma .",
"entities": [
{
"entity_text": "lump",
"type": "CLINENTITY"
},
{
"entity_text": "benign cystic teratoma",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient underwent surgery , and the whole tumor , from its base to the vertebrae , was excised .",
"entities": [
{
"entity_text": "tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "Bisection of the tumor revealed that it contained hair and pultaceous material consistent with a teratoma , which was later confirmed by histopathologic examination .",
"entities": [
{
"entity_text": "tumor",
"type": "CLINENTITY"
},
{
"entity_text": "teratoma",
"type": "CLINENTITY"
}
]
},
{
"text": "In May 2014 a 49 year gentleman was admitted for widespread mucocutaneous blistering diagnosed as PV by histology and immunofluorescence .",
"entities": []
},
{
"text": "After 6 weeks of treatment with systemic steroids and azathioprine the patient developed pulmonary emboli and started oral anticoagulation with warfarin .",
"entities": [
{
"entity_text": "pulmonary emboli",
"type": "CLINENTITY"
}
]
},
{
"text": "In late September , the patient re-presented with a severe flare of PV and a recurrent deep vein thrombosis despite oral anticoagulation within therapeutic range .",
"entities": [
{
"entity_text": "PV",
"type": "CLINENTITY"
},
{
"entity_text": "deep vein thrombosis",
"type": "CLINENTITY"
}
]
},
{
"text": "Warfarin was changed to subcutaneous low molecular heparin in therapeutic dose while treatment for pemphigus was escalated : first azathioprine was switched to mycophenolate mofetil and the steroids dose increased ; then due to poor response , intravenous immunoglobulins were given for three courses and finally he received four infusions of Rituximab that induced sustained remission .",
"entities": [
{
"entity_text": "pemphigus",
"type": "CLINENTITY"
}
]
},
{
"text": "In April 2015 the dose of mycophenolate was decreased but anticoagulation was continued until the beginning of July 2015 to ensure that decreasing immune suppression did not allow the emergence of another flare with attendant thrombotic risk .",
"entities": []
},
{
"text": "A 20 years old man presented with fever , myalgias , arthralgias , retro-orbital pain , vomiting and gum bleeding during a large dengue outbreak in Lahore , Pakistan .",
"entities": [
{
"entity_text": "retro-orbital pain",
"type": "CLINENTITY"
},
{
"entity_text": "gum bleeding",
"type": "CLINENTITY"
}
]
},
{
"text": "On 7 th day of illness patient became afebrile , but he developed severe headaches , unconsciousness followed by altered behavior .",
"entities": [
{
"entity_text": "headaches",
"type": "CLINENTITY"
},
{
"entity_text": "unconsciousness",
"type": "CLINENTITY"
},
{
"entity_text": "altered behavior",
"type": "CLINENTITY"
}
]
},
{
"text": "On 9 th day of illness patient developed painful neck swelling accompanied by fever , tremors , palpitations , hoarseness of voice and odynophagia .",
"entities": [
{
"entity_text": "neck swelling",
"type": "CLINENTITY"
},
{
"entity_text": "fever",
"type": "CLINENTITY"
},
{
"entity_text": "palpitations",
"type": "CLINENTITY"
},
{
"entity_text": "hoarseness of voice",
"type": "CLINENTITY"
},
{
"entity_text": "odynophagia",
"type": "CLINENTITY"
}
]
},
{
"text": "Examination revealed acutely swollen , tender thyroid gland along with features of hyperthyroidism .",
"entities": [
{
"entity_text": "swollen",
"type": "CLINENTITY"
},
{
"entity_text": "tender thyroid gland",
"type": "CLINENTITY"
},
{
"entity_text": "hyperthyroidism",
"type": "CLINENTITY"
}
]
},
{
"text": "Laboratory evaluation revealed stable hematocrit , thrombocytopenia and leukopenia .",
"entities": []
},
{
"text": "Patient had seroconverted for anti-dengue IgM antibodies on the 10 th day of illness .",
"entities": []
},
{
"text": "A non-contrast Computed Tomogram ( CT ) of the brain showed right frontal lobe hematoma .",
"entities": []
},
{
"text": "Thyroid profile showed increased free T 3 and T 4 and low TSH .",
"entities": []
},
{
"text": "Technetium thyroid scan showed reduced tracer uptake .",
"entities": [
{
"entity_text": "reduced tracer uptake",
"type": "CLINENTITY"
}
]
},
{
"text": "He was diagnosed as having subacute thyroiditis and treated with oral prednisolone and propranolol .",
"entities": [
{
"entity_text": "subacute thyroiditis",
"type": "CLINENTITY"
}
]
},
{
"text": "Follow up CT brain showed resolving hematoma .",
"entities": [
{
"entity_text": "hematoma",
"type": "CLINENTITY"
}
]
},
{
"text": "Patient ' s recovery was uneventful .",
"entities": []
},
{
"text": "A 65 year-old woman with hypertension and Parkinson ' s disease presented with sudden onset severe chest pain .",
"entities": [
{
"entity_text": "Parkinson ' s disease",
"type": "CLINENTITY"
},
{
"entity_text": "chest pain",
"type": "CLINENTITY"
}
]
},
{
"text": "Electrocardiogram showed ischemic ST-segment elevation in inferior and lateral leads .",
"entities": [
{
"entity_text": "ST-segment elevation",
"type": "CLINENTITY"
}
]
},
{
"text": "Urgent cardiac catheterization revealed focal dissections in four small caliber coronary arteries in right and left coronary systems including right posterior decending , posterolateral , obtuse marginal and septal arteries .",
"entities": [
{
"entity_text": "focal dissections",
"type": "CLINENTITY"
}
]
},
{
"text": "Angiography demonstrated no significant atherosclerotic coronary artery disease .",
"entities": [
{
"entity_text": "no significant atherosclerotic coronary artery disease",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient was medically managed with Eptifibatide , Aspirin , Clopidogrel and beta blocker since dissected vessels were not technically suitable for percutaneous coronary intervention .",
"entities": [
{
"entity_text": "dissected vessels",
"type": "CLINENTITY"
}
]
},
{
"text": "Antiparkinson medications were held as a potential cause of dissection .",
"entities": [
{
"entity_text": "dissection",
"type": "CLINENTITY"
}
]
},
{
"text": "She responded well to medical management .",
"entities": []
},
{
"text": "A 28 - year-old female patient presented to outpatient dental clinics for full mouth rehabilitation .",
"entities": []
},
{
"text": "On physical examination , the patient was awake , alert , oriented , and her blood pressure , temperature and heart rate were within normal limits .",
"entities": []
},
{
"text": "Upon taking medical history the patient revealed that was diagnosed with thymoma MG and on medication including pyridostigmine bromide 60 mg , azathioprine 50 mg and prednisone 20 mg .",
"entities": [
{
"entity_text": "thymoma MG",
"type": "CLINENTITY"
}
]
},
{
"text": "Intraoral examination showed fair oral hygiene multiple fixed prosthodontic restorations and multiple carious teeth , multiple remaining roots and lipomatous tongue atrophy .",
"entities": [
{
"entity_text": "carious teeth",
"type": "CLINENTITY"
},
{
"entity_text": "tongue atrophy",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient was referred to her neurologist to provide a detailed history about her medical condition and to coordinate with him regarding the steroid dose take to avoid any complication during patient management .",
"entities": []
},
{
"text": "A consultation letter had been received from her neurologist explaining the patient medical condition which starts with difficulty in breathing , chewing and swallowing , there was no external ocular weakness , motor weakness , sphincter dysfunction , sensory deficits , muscle wasting and no signs of diplopia , dizziness , double vision , ptosis or any difficulty in maintaining balance .",
"entities": [
{
"entity_text": "difficulty in breathing , chewing and swallowing",
"type": "CLINENTITY"
}
]
},
{
"text": "Patient underwent chest CT scan with contrast which show evidence of thymoma benign tumor of the thymus that has been the possible causes of MG .",
"entities": [
{
"entity_text": "thymoma benign tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "Diagnosis was confirmed with measuring serum level of acetylcholine receptor antibodies , later treatment plan had been formulated including drugs to control the condition and then thymectomy to avoid sever complication to the patient .",
"entities": []
},
{
"text": "Before proceeding to the dental management of the case ; CBC and blood chemistry had been requested form the patient .",
"entities": []
},
{
"text": "Creatinine level was below normal ( 42 . 23 umol / l ) , with normal levels of albumin , urea , uric acid , AST , ALT , cholesterol , triglycerides and bilirubin .",
"entities": []
},
{
"text": "Patient had elevated WBC “ 12 . 52 x 10 9 / L ” and Platelet “ 453 x 10 9 / L ” with reduction in RBC “ 4 . 4 x 10 9 / L ” and Eosinophil count “ 0 . 07 ” .",
"entities": []
},
{
"text": "Consultation with patient neurologist regarding the steroid dose to reduce the susceptibility of developing adrenal crisis .",
"entities": []
},
{
"text": "Mr F . B a 70 - year-old male patient presented in our institution because of the occurrence of a right epistaxis .",
"entities": [
{
"entity_text": "right epistaxis",
"type": "CLINENTITY"
}
]
},
{
"text": "First of all , the patient is not smoking and reported an aneurysm of the abdominal aorta surgically treated by prosthesis under plavix .",
"entities": [
{
"entity_text": "aneurysm of the abdominal aorta",
"type": "CLINENTITY"
}
]
},
{
"text": "The beginning of the symptomatology goes back to 2 months before with right nasal obstruction of progressive onset , associated with right epistaxis and bloody rhinorrhea with right chronic eye watering .",
"entities": [
{
"entity_text": "right epistaxis",
"type": "CLINENTITY"
},
{
"entity_text": "bloody rhinorrhea",
"type": "CLINENTITY"
},
{
"entity_text": "eye watering",
"type": "CLINENTITY"
}
]
},
{
"text": "Nasal Endoscopy examination revealed a pinnkish burgeoning mass bleeding on contact and filling the right nostril vestibule .",
"entities": []
},
{
"text": "The patient didn ' t presents neurological signs nor cervical lymph nods .",
"entities": [
{
"entity_text": "neurological signs",
"type": "CLINENTITY"
}
]
},
{
"text": "Otherwise , ophthalmologic examination found normal visual acuity and ocular mobility on both sides .",
"entities": []
},
{
"text": "Sinonasal computed tomography ( CT ) found a right nasal process enhanced after injection of contrast product with relatively little washing at the late time .",
"entities": []
},
{
"text": "Otherwise , there is no extension involvement at the level of the cavum and the pterygo palate fossa .",
"entities": []
},
{
"text": "This finding found also a crenate appearance of the posterior nasal mucosa especially of the middle turbinates and contralateral inferior turbinate with a left deviation of the nasal septum with nasal spur .",
"entities": []
},
{
"text": "Nasosinusal MRI shows a progressive increase in size of the tissue mass compared to the previously CT occupying the right nasal fossa on almost all of its height , measuring 4 × 2 . 8 × 3 . 5 cm without extension within the cavum with probable invasion of the lower part of the nasolacrimal duct and mass effect on both the sinusonasal bone septum and the intersinusonasal septum .",
"entities": [
{
"entity_text": "tissue mass",
"type": "CLINENTITY"
}
]
},
{
"text": "This finding shows ethmoidal sinus fluid retention .",
"entities": []
},
{
"text": "The appearance , even if it remains unspecific , is compatible with inverted papilloma .",
"entities": [
{
"entity_text": "inverted papilloma",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient underwent complete endoscopic removal of the tumor with ethmoidectomy and right maxillary antrostomy .",
"entities": [
{
"entity_text": "tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "The extemporaneous examination is in favor of a malignant tumor lesion .",
"entities": [
{
"entity_text": "malignant tumor lesion",
"type": "CLINENTITY"
}
]
},
{
"text": "Histopathologic analysis shows a tumor proliferation made of polymorphic cells with major anisocytosis , most often located in lobules .",
"entities": [
{
"entity_text": "tumor proliferation",
"type": "CLINENTITY"
}
]
},
{
"text": "There is sometimes a somewhat palisadic seat on the periphery of the tumor mass .",
"entities": [
{
"entity_text": "tumor mass",
"type": "CLINENTITY"
}
]
},
{
"text": "The mitotic index is 10 mitoses per 10 high power fields .",
"entities": []
},
{
"text": "The immunohistochemical study of the tumor found that the cytokeratin KL 1 and CK 7 and the neuroendocrine marker Chromogranin A , synaptophysin and CD 56 are positive .",
"entities": [
{
"entity_text": "tumor",
"type": "CLINENTITY"
}
]
},
{
"text": "Proliferation index Ki 67 is of the order of 80 % .",
"entities": []
},
{
"text": "Otherwise there is an absence of expression of PS 100 , MelanA , HMB 45 , desmin , p 40 , CD 45 and EBV .",
"entities": []
},
{
"text": "The clear positivity of cytokeratins formally excludes the diagnosis of olfactory neuroblastoma and leads to neuroendocrine carcinoma .",
"entities": [
{
"entity_text": "olfactory neuroblastoma",
"type": "CLINENTITY"
},
{
"entity_text": "neuroendocrine carcinoma",
"type": "CLINENTITY"
}
]
},
{
"text": "Given the atypia , the mitotic index , and the Ki 67 proliferation index , it is a high-grade large-cell neuroendocrine carcinoma .",
"entities": [
{
"entity_text": "large-cell neuroendocrine carcinoma",
"type": "CLINENTITY"
}
]
},
{
"text": "Extension assessment , comprising a PET SCAN , was negative .",
"entities": []
},
{
"text": "Postoperative treatment consisted in adjuvant polychemotherapy , with six cycles ( cisplatin and etoposide ) , Followed by loco regional external radiotherapy .",
"entities": []
},
{
"text": "After 6 month follow-up , the patient was in complete clinical and radiological remission .",
"entities": [
{
"entity_text": "in complete clinical and radiological remission",
"type": "CLINENTITY"
}
]
},
{
"text": "Mrs B . S . 28 years old multiparous that we had received 02 hours after a vaginal delivery of a newborn alive weighing 2750 grams in a peripheral maternity 3 km away .",
"entities": []
},
{
"text": "It was referred for postpartum hemorrhage .",
"entities": [
{
"entity_text": "postpartum hemorrhage",
"type": "CLINENTITY"
}
]
},
{
"text": "His medical history was featureless .",
"entities": []
},
{
"text": "On admission , she presented hypovolemic shock with blood pressure 76 / 44 mmHg , regular tachycardia at 136 beats per minute , polypnea to 39 cycles per minute .",
"entities": [
{
"entity_text": "hypovolemic shock",
"type": "CLINENTITY"
}
]
},
{
"text": "The obstetrical examination objectified an involuted uterus , an absence of vaginal and perineal cervical lesions , a fluid and red blood originating of endouterine .",
"entities": [
{
"entity_text": "involuted uterus",
"type": "CLINENTITY"
}
]
},
{
"text": "Furthermore , there was purpura .",
"entities": []
},
{
"text": "We therefore concluded a significant postpartum hemorrhage complicated by coagulopathy .",
"entities": [
{
"entity_text": "postpartum hemorrhage",
"type": "CLINENTITY"
},
{
"entity_text": "coagulopathy",
"type": "CLINENTITY"
}
]
},
{
"text": "Resuscitation measures were taken and an transfusion 1120 ml whole blood , red cell pellets 350 ml and 860 ml fresh frozen plasma have helped to management coagulopathy and anemia .",
"entities": [
{
"entity_text": "coagulopathy",
"type": "CLINENTITY"
},
{
"entity_text": "anemia",
"type": "CLINENTITY"
}
]
},
{
"text": "Blood count at admission highlighted severe thrombocytopenia 23 0000 platelets and hemoglobin levels of 3 . 9 g / dl .",
"entities": [
{
"entity_text": "severe thrombocytopenia",
"type": "CLINENTITY"
}
]
},
{
"text": "The post natal care was also administered .",
"entities": []
},
{
"text": "After seven days of hospitalization , she was going after an amendment to the clinical symptoms and normal laboratory tests .",
"entities": []
},
{
"text": "Twenty five days later , she returned to obstetric emergencies for significant bleeding with severe anemia with hemoglobin 9 g / dL without signs of hypovolemic shock .",
"entities": [
{
"entity_text": "bleeding",
"type": "CLINENTITY"
},
{
"entity_text": "severe anemia",
"type": "CLINENTITY"
},
{
"entity_text": "hypovolemic shock",
"type": "CLINENTITY"
}
]
},
{
"text": "The gynecological examination was normal .",
"entities": []
},
{
"text": "The balance sheet of the coagulation was normal including prothrombin to 92 % and a normal activated partial thromboplastin time .",
"entities": []
},
{
"text": "The treatments were based on oxytocin , tranexamic acid , etamsylate and strict regular monitoring .",
"entities": []
},
{
"text": "Transvaginal ultrasound coupled Doppler was normal .",
"entities": []
},
{
"text": "In the absence of arterial embolization , she was going with ambulatory monitoring .",
"entities": []
},
{
"text": "Two weeks later she presented again rebleeding requiring hospitalization resulting in a total hysterectomy after conditioning of the patient .",
"entities": [
{
"entity_text": "rebleeding",
"type": "CLINENTITY"
}
]
},
{
"text": "Histological examination of the surgical specimen objectified in the cervix and uterine body the presence of arterial vessels proliferation homes large and small caliber associated with tissue hemorrhage .",
"entities": [
{
"entity_text": "hemorrhage",
"type": "CLINENTITY"
}
]
},
{
"text": "The postoperative course was simple .",
"entities": []
},
{
"text": "A 29 - year-old man was admitted to our hospital with an unidentified fever .",
"entities": []
},
{
"text": "He was diagnosed with malignant lymphoma ( extra-nodal NK / T cell lymphoma nasal type ) , and chemotherapy was administered .",
"entities": [
{
"entity_text": "malignant lymphoma",
"type": "CLINENTITY"
},
{
"entity_text": "extra-nodal NK / T cell lymphoma nasal type )",
"type": "CLINENTITY"
}
]
},
{
"text": "After chemotherapy , nodular lung shadows along with new brain , cervical , and myocardial abscesses appeared , despite anti-bacterial / fungal therapy .",
"entities": [
{
"entity_text": "lung shadows",
"type": "CLINENTITY"
},
{
"entity_text": "brain , cervical , and myocardial abscesses",
"type": "CLINENTITY"
}
]
},
{
"text": "Gene analysis of the cervical abscess biopsy revealed the presence of Aspergillus fumigatus species , and the transesophageal echocardiogram showed a mobile mural vegetation in the left ventricle ( 22 × 8 mm ) .",
"entities": [
{
"entity_text": "Aspergillus fumigatus",
"type": "CLINENTITY"
},
{
"entity_text": "vegetation",
"type": "CLINENTITY"
}
]
},
{
"text": "He underwent surgical resection of this mural vegetation .",
"entities": [
{
"entity_text": "vegetation",
"type": "CLINENTITY"
}
]
},
{
"text": "His postoperative course was uneventful .",
"entities": []
},
{
"text": "He remains healthy at 28 months after surgery with continued oral antifungal therapy .",
"entities": []
},
{
"text": "A 33 - year man working in Gulf , presented with hemetemesis 15 days ago in the month of February this year .",
"entities": []
},
{
"text": "This was preceeded by low grade fever , bone pain , generalised bodyache , low back ache and generalised macular skin rashes .",
"entities": [
{
"entity_text": "fever",
"type": "CLINENTITY"
},
{
"entity_text": "bone pain",
"type": "CLINENTITY"
},
{
"entity_text": "generalised bodyache",
"type": "CLINENTITY"
},
{
"entity_text": "low back ache",
"type": "CLINENTITY"
},
{
"entity_text": "generalised macular skin rashes",
"type": "CLINENTITY"
}
]
},
{
"text": "There was no history of abdominal pain , jaundice or features of chronic liver disease .",
"entities": [
{
"entity_text": "abdominal pain",
"type": "CLINENTITY"
},
{
"entity_text": "jaundice",
"type": "CLINENTITY"
},
{
"entity_text": "chronic liver disease",
"type": "CLINENTITY"
}
]
},
{
"text": "He gave history of intake of analgesics for backache .",
"entities": [
{
"entity_text": "backache",
"type": "CLINENTITY"
}
]
},
{
"text": "After symptomatic treatment he returned back .",
"entities": []
},
{
"text": "He came to our OPD with Complete blood count which showed a haemoglobin of 8 g / dl , total count 6700 / mm 3 platelet count 24000 / mm 3 and ESR 55 mm / hr .",
"entities": []
},
{
"text": "On examination patient was pale with non pruritic macular rashes and mild splenomegaly .",
"entities": [
{
"entity_text": "macular rashes",
"type": "CLINENTITY"
},
{
"entity_text": "splenomegaly",
"type": "CLINENTITY"
}
]
},
{
"text": "Residing in Middle East with background history of fever , backache , skin rash , splenomegaly and a low platelet count possibility of atypical infection like Brucellosis with NSAID induced gi bleed was considered .",
"entities": [
{
"entity_text": "fever",
"type": "CLINENTITY"
},
{
"entity_text": "backache",
"type": "CLINENTITY"
},
{
"entity_text": "skin rash",
"type": "CLINENTITY"
},
{
"entity_text": "splenomegaly",
"type": "CLINENTITY"
},
{
"entity_text": "Brucellosis",
"type": "CLINENTITY"
},
{
"entity_text": "gi bleed",
"type": "CLINENTITY"
}
]
},
{
"text": "He was admitted for further evaluation and endoscopy done showed a nodular ulcerative lesions in the antrum of stomach and histopathologic examination confirmed adenocarcinoma of stomach .",
"entities": [
{
"entity_text": "nodular ulcerative lesions",
"type": "CLINENTITY"
},
{
"entity_text": "adenocarcinoma of stomach",
"type": "CLINENTITY"
}
]
},
{
"text": "Liver function tests showed a high ALP ( 1536 U / l ) , elevated INR ( 2 . 15 ) though bilirubin , transaminases and serum proteins were normal .",
"entities": []
},
{
"text": "Brucella agglutination test was negative .",
"entities": []
},
{
"text": "Xray Chest was normal .",
"entities": []
},
{
"text": "Ultrasound of abdomen showed normal echotexture of liver , no SOL , normal portal vein and no IHBRD .",
"entities": []
},
{
"text": "CT scan of the abdomen revealed gross pylorus thickening with regional lymphadenopathy and skeletal metastasis with sclerotic foci involving vertebrae and pelvic bones and lytic areas in bilateral iliac blades with no liver metastasis or ascites .",
"entities": [
{
"entity_text": "pylorus thickening",
"type": "CLINENTITY"
},
{
"entity_text": "lymphadenopathy",
"type": "CLINENTITY"
},
{
"entity_text": "metastasis",
"type": "CLINENTITY"
},
{
"entity_text": "liver metastasis",
"type": "CLINENTITY"
},
{
"entity_text": "ascites",
"type": "CLINENTITY"
}
]
},
{
"text": "A skeletal survey was done which showed lytic lesions in the iliac and femoral bones .",
"entities": [
{
"entity_text": "lytic lesions",
"type": "CLINENTITY"
}
]
},
{
"text": "Bone marrow aspirate showed decreased red cells and platelets and marrow biopsy done was reported as metastasis from adenocarcinoma .",
"entities": [
{
"entity_text": "metastasis",
"type": "CLINENTITY"
},
{
"entity_text": "adenocarcinoma",
"type": "CLINENTITY"
}
]
},
{
"text": "Coagulation profile done was suggestive of DIC due to the raised levels of FDP ( 5 , 170 ng / dl ) and a low fibrinogen \\ ( 152 mg / dl ) .",
"entities": []
},
{
"text": "He was transferred to Medical Oncology department for subsequent management and was treated with chemotherapy .",
"entities": []
},
{
"text": "He succumbed to his illness within 10 months of diagnosis .",
"entities": []
},
{
"text": "A 26 - year-old pregnant patient with a history of two previous cesarean deliveries was referred to our tertiary clinic .",
"entities": []
},
{
"text": "The patient was having severe right sided abdominal pain with sudden onset .",
"entities": [
{
"entity_text": "right sided abdominal pain",
"type": "CLINENTITY"
}
]
},
{
"text": "She was in the 18 th week of her pregnancy based on last menstrual period .",
"entities": []
},
{
"text": "Obstetric ultrasound measurements revealed a live pregnancy compatible with 18 weeks gestation without any abnormality .",
"entities": []
},
{
"text": "However , a 15 x 12 cm in size edematous multicystic adnexal mass occupying the mid and upper right abdomen without vascularity was identified .",
"entities": [
{
"entity_text": "adnexal mass",
"type": "CLINENTITY"
}
]
},
{
"text": "The mass was suspected to originate from right ovary .",
"entities": []
},
{
"text": "It was pushing the pregnant uterus into the left and anterior direction .",
"entities": []
},
{
"text": "There was no ultrasonographic evidence of malignancy .",
"entities": [
{
"entity_text": "malignancy",
"type": "CLINENTITY"
}
]
},
{
"text": "Considering the severe sudden pain complaint and adnexal mass finding , explorative laparotomy was planned for the suspected diagnosis of adnexal torsion .",
"entities": [
{
"entity_text": "adnexal mass",
"type": "CLINENTITY"
},
{
"entity_text": "adnexal torsion",
"type": "CLINENTITY"
}
]
},
{
"text": "A mediolateral ( near vertical ) skin incision was made originated from infra-umbilical level on the lateral side of right rectus muscle .",
"entities": []
},
{
"text": "Specifically , the starting point for this slightly oblique incision was at 3 cm lateral to the midline and near to lateral one third of the rectus muscle .",
"entities": []
},
{
"text": "The skin and fascia incisions were approximately 4 cm and 2 . 5 cm in length , respectively and this difference was due to the thick subcutaneous fat tissue .",
"entities": []
},
{
"text": "The oblique paramedian incision of the anterior rectus sheath was approximately 2 cm medial to the lateral border of the rectus muscle and it was extended to caudal-lateral direction , down to 1 / 2 cm to the lateral border of rectus muscle .",
"entities": []
},
{
"text": "The lateral edge of anterior rectus sheath incision was dissected off from the rectus muscle laterally up to semilunar line of rectus muscle in 1 cm width .",
"entities": []
},
{
"text": "Then , the rectus muscle was retracted medially to expose the posterior sheath of rectus ( below the arcuate line , only the transversalis fascia and parietal peritoneum are exposed ) .",
"entities": []
},
{
"text": "An oblique incision was made on the posterior sheath of rectus and peritoneum behind the rectus muscle , in a projection of the anterior sheath incision .",
"entities": []
},
{
"text": "In this manner , the abdominal wall incisions were located at anterior and posterior sheaths of rectus muscle at least 1 / 2 cm medial to the semilunar line and to the lateral border of rectus .",
"entities": []
},
{
"text": "In other words , incision was not made from fascial layers ' merging point or by muscle splitting dissection .",
"entities": []
},
{
"text": "Therefore , traction forces from enlarging uterus in advancing pregnant abdomen could be minimized .",
"entities": []
},
{
"text": "A large edematous , necrotic and dark purple torsion of a right adnexal mass was observed .",
"entities": [
{
"entity_text": "torsion of a right adnexal mass",
"type": "CLINENTITY"
}
]
},
{
"text": "It was pulled out and was partially dissected from its surface layer following a 2 cm incision .",
"entities": []
},
{
"text": "The cystic structure was aspirated and right salpingo-ooferectomy was performed .",
"entities": []
},
{
"text": "The operation was completed by avoiding the manipulation of the pregnant uterus .",
"entities": []
},
{
"text": "Frozen section pathology of the removed specimen was reported as benign ( necrotic tissues , teratoma ) and final pathology was mucinous cystadenoma .",
"entities": []
},
{
"text": "Follow up on the pregnant patient was uneventful a month later .",
"entities": []
},
{
"text": "Male infant 9 . 5 month old was examined in the emergency department of our hospital because of an empty scrotum and the ipsilateral testis lying in a high iliac crest position .",
"entities": [
{
"entity_text": "empty scrotum",
"type": "CLINENTITY"
}
]
},
{
"text": "With the increase in intrabdominal pressure [ crying etc . ] there was an ever-increasing swelling with spiral course from the groin to ipsilateral iliac crest .",
"entities": [
{
"entity_text": "swelling",
"type": "CLINENTITY"
}
]
},
{
"text": "On clinical examination , a reducible mass was present in the right ileac crest .",
"entities": []
},
{
"text": "The swelling looked like a spigelian hernia [ 4 ] .",
"entities": [
{
"entity_text": "swelling",
"type": "CLINENTITY"
},
{
"entity_text": "spigelian hernia",
"type": "CLINENTITY"
}
]
},
{
"text": "However no abdominal wall defect could be palpated at that area .",
"entities": []
},
{
"text": "Moreover the ipsilateral scrotum was empty and the testis could be palpated with difficulty lying in a high inguinal position .",
"entities": []
},
{
"text": "Ultrasonography showed a loop of herniated small bowel and an undescended testis on the right .",
"entities": [
{
"entity_text": "undescended testis on the right",
"type": "CLINENTITY"
}
]
},
{
"text": "At operation , under general anesthesia , an extended transverse inguinal incision was made .",
"entities": []
},
{
"text": "Upon entering the inguinal canal a large hernia sac was identified .",
"entities": [
{
"entity_text": "hernia sac",
"type": "CLINENTITY"
}
]
},
{
"text": "This followed a course through the superficial inguinal ring , extended upwards to the anterior abdomninal wall below the subcutaneous plane and was fixed in the area of the right iliac crest .",
"entities": []
},
{
"text": "We noticed that the hernia orifice was in a higher than normal position 5 cm from the pubic bone .",
"entities": []
},
{
"text": "This bulk was easily reduced back to the abdomen along with an ipsilateral mobile intravaginal testis .",
"entities": []
},
{
"text": "After careful isolation of the sac at a length of 3 cm the ipsilateral testis was isolated .",
"entities": []
},
{
"text": "The vas and the vessels were intravaginal , the gubernaculum was fixed in an ectopic position and the dorsal inguinal wall was lax .",
"entities": []
},
{
"text": "We removed the large sac after separating the vas and vessels and the testis .",
"entities": []
},
{
"text": "Moreover we strengthened the dorsal inguinal wall , fixated the testis in a subdartos pouch and closed the wound .",
"entities": []
},
{
"text": "Patient stayed for a day in the hospital .",
"entities": []
},
{
"text": "No postoperative complications happened .",
"entities": []
},
{
"text": "Three years later the boy was operated for left hydrocele .",
"entities": [
{
"entity_text": "left hydrocele",
"type": "CLINENTITY"
}
]
},
{
"text": "The boy remains in perfect health now five years after the initial operation .",
"entities": []
},
{
"text": "A male , 63 years old , complaining about a \" wound in the mouth \" for 6 months , without any pain or spontaneous bleeding .",
"entities": []
},
{
"text": "His medical history was free of disease .",
"entities": []
},
{
"text": "The patient was a smoker for 33 years .",
"entities": [
{
"entity_text": "smoker",
"type": "CLINENTITY"
}
]
},
{
"text": "Intraoral examination revealed a destructive ulcerative lesion around the upper left first and second molars that resembled an oral squamous cell carcinoma .",
"entities": [
{
"entity_text": "ulcerative lesion",
"type": "CLINENTITY"
},
{
"entity_text": "oral squamous cell carcinoma",
"type": "CLINENTITY"
}
]
},
{
"text": "Biopsy of the ulcerative lesion was performed and the microscopic features showed an inflammatory infiltrate rich in plasma cells .",
"entities": [
{
"entity_text": "ulcerative lesion",
"type": "CLINENTITY"
},
{
"entity_text": "inflammatory infiltrate",
"type": "CLINENTITY"
}
]
},
{
"text": "Based on this microscopical finding , the final diagnosis was periodontal disease associated with a proliferative non-neoplastic lesion .",
"entities": [
{
"entity_text": "periodontal disease",
"type": "CLINENTITY"
},
{
"entity_text": "lesion",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient was referred to a specialized dental surgeon and underwent periodontal therapy including surgical procedures .",
"entities": []
},
{
"text": "After that , according to follow-up with the patient , there were no signs of disease remission .",
"entities": []
},
{
"text": "The lesion increased in size , although the patient did not complain of any symptoms .",
"entities": [
{
"entity_text": "lesion",
"type": "CLINENTITY"
}
]
},
{
"text": "A second biopsy was performed and the microscopic features again showed a rich inflammatory infiltrate with mononuclear cells and histiocytic cells , characterized by pale histiocytes with lobed nuclei , resembling a bean .",
"entities": [
{
"entity_text": "inflammatory infiltrate",
"type": "CLINENTITY"
}
]
},
{
"text": "A varying number of eosinophils also were observed , without any evidence of atypical cells present in this infiltrate .",
"entities": []
},
{
"text": "An immunohistochemical staining panel was done to determine the nature of this inflammatory infiltrate by using antibodies S- 100 , CD 1 a , CD- 68 and CD 45 RO that were positive .",
"entities": [
{
"entity_text": "inflammatory infiltrate",
"type": "CLINENTITY"
}
]
},
{
"text": "These immunohistochemical findings were fundamental for the final diagnosis of LCH .",
"entities": [
{
"entity_text": "LCH",
"type": "CLINENTITY"
}
]
},
{
"text": "The treatment included surgical extraction of all superior teeth , radiation and systemic corticoid therapies .",
"entities": []
},
{
"text": "After 8 years of treatment , the patient is free of disease .",
"entities": []
},
{
"text": "A seventy two years old male presented to our clinic with swelling , pain , and limitation of movement at knee joint .",
"entities": [
{
"entity_text": "swelling , pain , and limitation of movement at knee joint",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient ' s history revealed swellings and pain at knee joint for nearly last 20 years .",
"entities": [
{
"entity_text": "swellings and pain at knee joint",
"type": "CLINENTITY"
}
]
},
{
"text": "He was prescribed nonsteroidal anti-inflammatory drugs and rest .",
"entities": []
},
{
"text": "But pain didn ' t relieve and limitations in range of motion occurred at knee joint .",
"entities": [
{
"entity_text": "pain",
"type": "CLINENTITY"
}
]
},
{
"text": "Physical examination findings included a solid and semi-mobile mass at anterior knee region .",
"entities": []
},
{
"text": "Knee joint range of motion was 80 degrees flexion and 0 degrees extension .",
"entities": []
},
{
"text": "There wasn ' t any neurovascular pathology .",
"entities": []
},
{
"text": "Antero-posterior and lateral knee X-rays showed degenerative changes and a giant , irregular , calcific mass which started below patella and extended to suprapatellar area .",
"entities": []
},
{
"text": "Knee MRI revealed many loose bodies ( consistent with synovial chondromatosis ) isointense with fatty bone marrow at all sequences at the level of right knee joint .",
"entities": [
{
"entity_text": "synovial chondromatosis",
"type": "CLINENTITY"
}
]
},
{
"text": "Scalloping was observed at tibial and femoral surfaces .",
"entities": []
},
{
"text": "Decision for a surgical intervention was made and after informing the patient , consent was taken .",
"entities": []
},
{
"text": "Under spinal anesthesia , a tourniquet was applied to right lower extremity .",
"entities": []
},
{
"text": "Right knee was entered with an anterior longitudinal incision .",
"entities": []
},
{
"text": "Cutaneous and subcutaneous tissues were passed .",
"entities": []
},
{
"text": "Quadriceps mechanism was opened with a medial parapatellar incision and patella was toppled to left side .",
"entities": []
},
{
"text": "Intraarticular mass was exposed .",
"entities": []
},
{
"text": "The mass was released from surrounding tissues by blunt excision and excised with enucleation .",
"entities": []
},
{
"text": "Then synovial tissue was excised with synoviectomy .",
"entities": []
},
{
"text": "Surgical area was irrigated using abundant isotonic solution .",
"entities": []
},
{
"text": "The excised mass was sent to pathology laboratory .",
"entities": []
},
{
"text": "Pathology evaluation showed that the mass was consistent with synovial chondromatosis .",
"entities": [
{
"entity_text": "synovial chondromatosis",
"type": "CLINENTITY"
}
]
},
{
"text": "Active and passive exercises were started at an early period after surgery .",
"entities": []
},
{
"text": "Recurrence was not detected at his last control visit .",
"entities": []
},
{
"text": "Knee movements were at full range when compared with the other knee .",
"entities": []
},
{
"text": "There was no pain or other complaints .",
"entities": []
},
{
"text": "It is the case of a 29 years old woman , G 2 P 1001 , married , at 9 weeks of pregnancy .",
"entities": []
},
{
"text": "She consulted at our emergency service for the exacerbation of a left pelvic pain that has been evolving for two weeks prior to admission .",
"entities": [
{
"entity_text": "pelvic pain",
"type": "CLINENTITY"
}
]
},
{
"text": "A transient lull was observed following a treatment with a progesteron ( hydroxyprogesterone caproate ) and an antispasmodic ( tiemonium methylsulfate ) in a community clinic .",
"entities": []
},
{
"text": "The resurgence of that lancinating and permanent pain irradiating to the loins and associated with slight vaginal bleeding prompted consultation .",
"entities": [
{
"entity_text": "vaginal bleeding",
"type": "CLINENTITY"
}
]
},
{
"text": "She had first menses at 14 and her menstrual cycle is regular with a length of 30 days .",
"entities": []
},
{
"text": "She has never practiced contraception .",
"entities": []
},
{
"text": "She has been adequately treated for acute pelvic inflammatory disease five years earlier .",
"entities": [
{
"entity_text": "acute pelvic inflammatory disease",
"type": "CLINENTITY"
}
]
},
{
"text": "Her only child is a girl born vaginally seven years ago .",
"entities": []
},
{
"text": "Her blood group is B rhesus positive and she has never undergone surgery .",
"entities": []
},
{
"text": "She presented with sympathetic signs of pregnancy and the urinary pregnancy test was positive but echography was not yet done .",
"entities": []
},
{
"text": "On admission , besides the main complain , the patient had vaginal bleeding and nausea but neither fever , nor vomiting .",
"entities": [
{
"entity_text": "vaginal bleeding",
"type": "CLINENTITY"
},
{
"entity_text": "nausea",
"type": "CLINENTITY"
},
{
"entity_text": "fever",
"type": "CLINENTITY"
},
{
"entity_text": "vomiting",
"type": "CLINENTITY"
}
]
},
{
"text": "On physical examination her general condition was good and the blood pressure was 110 / 70 millimeters of mercury , the respiratory rate : 20 cycles / minute ; the pulse rate : 70 pulsations / minute and the temperature : 37 . 3 degree Celsius .",
"entities": []
},
{
"text": "The conjunctivae were pink and the tongue was clean and moist .",
"entities": []
},
{
"text": "There were no cervical adenopathies .",
"entities": []
},
{
"text": "The breast and cardiopulmonary examination revealed no abnormalities .",
"entities": []
},
{
"text": "The abdomen was flat , and mobile with respiration .",
"entities": []
},
{
"text": "On palpation there was just a tenderness of the left iliac fossa and the bowel sounds were normal on auscultation .",
"entities": []
},
{
"text": "Inspection under speculum revealed normal gravid external cervical os and there was no vaginal discharge .",
"entities": []
},
{
"text": "On digital exploration , the cervix was posterior long and closed , the uterus was globular , increased in size and compatible with an eight weeks pregnancy .",
"entities": []
},
{
"text": "The left adnexae presented with a tender , smooth and mobile mass of seven centimeters diameter but the right one were normal .",
"entities": []
},
{
"text": "The posterior cervico-vaginal fornix was neither tender nor bulging .",
"entities": []
},
{
"text": "We suspected a non ruptured extra-uterine pregnancy with the following differentials : heterotopic pregnancy , torsion of ovarian cyst in pregnancy , and intra-cystic ovarian bleeding in pregnancy .",
"entities": []
},
{
"text": "Paraclinical investigations revealed : beta human Chorionic Gonadotropin ( hCG ) level of 96 702 milli International Units per milliliter of plasma ( mIU / ml ) .",
"entities": []
},
{
"text": "Ultrasonography revealed a heterogenous left ovarian mass of 82 millimeters in diameter , an empty uterus and no peritoneal effusion .",
"entities": []
},
{
"text": "This comforted our first diagnosis .",
"entities": []
},
{
"text": "After a normal pre-operative work up , an emergency laparotomy was done under general anesthesia .",
"entities": []
},
{
"text": "The findings were : left ovary containing a gestational sac and the corpus luteum , normal right adnexae , normal left tube and normal uterus .",
"entities": []
},
{
"text": "There was no hemoperitoneum .",
"entities": []
},
{
"text": "We dissected the ovarian capsule and carried out ablation of the gestational sac , then we did hemostasis .",
"entities": []
},
{
"text": "The specimen was analysed by the pathologist who found decidual cells and trophoblastic tissue within the ovarian capsule and thus confirmed the ovarian pregnancy .",
"entities": []
},
{
"text": "Post operative course was uneventful and the patient was discharged six days after surgery .",
"entities": []
},
{
"text": "The ?",
"entities": []
},
{
"text": "hCG level decreased and disappeared 25 days after surgery .",
"entities": []
},
{
"text": "We report the case of a 15 - year-old Caucasian girl who was diagnosed with Silver-Russell syndrome at the age of four and a half years .",
"entities": [
{
"entity_text": "Silver-Russell syndrome",
"type": "CLINENTITY"
}
]
},
{
"text": "Recombinant growth hormone was administered for 18 months without an appropriate increase in growth velocity .",
"entities": []
},
{
"text": "At the age of seven years , her serum growth hormone levels were high , and an insulin-like growth factor 1 generation test did not increase insulin-like growth factor 1 levels ( baseline insulin-like growth factor 1 levels , 52 g / L ; reference range , 75 g / L to 365 g / L ; and peak , 76 g / L and 50 g / L after 12 and 84 hours , respectively , from baseline ) .",
"entities": []
},
{
"text": "The genetic analysis showed that the patient was homozygous for the R 217 X mutation in the growth hormone receptor gene , which is characteristic of Laron syndrome .",
"entities": [
{
"entity_text": "Laron syndrome",
"type": "CLINENTITY"
}
]
},
{
"text": "On the basis of these results , the diagnosis of primary growth hormone insensitivity syndrome was made , and recombinant insulin-like growth factor 1 therapy was initiated .",
"entities": [
{
"entity_text": "growth hormone insensitivity syndrome",
"type": "CLINENTITY"
}
]
},
{
"text": "The patient ' s treatment was well tolerated , but unexplained central hypothyroidism occurred at the age of 12 . 9 years .",
"entities": [
{
"entity_text": "central hypothyroidism",
"type": "CLINENTITY"
}
]
},
{
"text": "At the age of 15 years , when the patient ' s sexual development was almost completed and her menstrual cycle occurred irregularly , her height was 129 . 8 cm , which is 4 . 71 standard deviations below the median for normal girls her age .",
"entities": []
},
{
"text": "This is a case report of a 59 - year old woman with a 5 - year clinical history of perimenopausal uterine bleeding and three explorative curettages .",
"entities": [
{
"entity_text": "perimenopausal uterine bleeding",
"type": "CLINENTITY"
}
]
},
{
"text": "Gynaecological and ultrasound examinations revealed ovarian enlargement with a diameter of 50 mm with hypoechoic zones suspected of benign teratoma .",
"entities": [
{
"entity_text": "ovarian enlargement",
"type": "CLINENTITY"
},
{
"entity_text": "benign teratoma",
"type": "CLINENTITY"
}
]
},
{
"text": "The diagnostic test such as Ca- 125 , AFP , free-T 4 and TSH was in normal range .",
"entities": []
},
{
"text": "A smooth , solid right ovarian 50 an mm-size tumour , as well as small amount of fluid in the Douglas pouch , was found during the total abdominal hysterectomy , bilateral salpingo-oophorectomy and staging biopsy .",
"entities": [
{
"entity_text": "tumour",
"type": "CLINENTITY"
}
]
},
{
"text": "The histopathology revealed teratoma with strumal carcinoid tumour IA stage according to AJCC 2010 of the right ovary and negative cytopathology of the fluid from the Douglas pouch .",
"entities": [
{
"entity_text": "teratoma",
"type": "CLINENTITY"
},
{
"entity_text": "strumal carcinoid tumour",
"type": "CLINENTITY"
}
]
},
{
"text": "On the postoperative 2 - year control , the patient was tumour free , and Ca- 125 , free-T 4 and TSH were in normal range .",
"entities": []
},
{
"text": "A 23 year old female patient ( weight 67 kg , height 171 cm , BMI 22 . 91 kg / cm 2 ) presented to emergency department with fever ( 39 . 4 oC ) , tachycardia ( 116 bpm ) , hypotension ( 95 / 45 mmHg ) , tachypnoea ( 25 breaths / min ) , sore throat , neck pain , diffuse pain and tissue oedema in the right-side gluteal region .",
"entities": [
{
"entity_text": "sore throat",
"type": "CLINENTITY"
},
{
"entity_text": "neck pain",
"type": "CLINENTITY"
}
]
},
{
"text": "She was appointed to hospital by a private outpatient surgical center where she had undergone perineal abscess drainage a week before .",
"entities": []
},
{
"text": "Recent medical history included also endometrial curettage for ERPC a month before and conservative therapy for hemorrhoids 15 days after .",
"entities": []
},
{
"text": "Past medical history included Henoch-Sch nlein purpura during childhood .",
"entities": [
{
"entity_text": "Henoch-Sch nlein purpura",
"type": "CLINENTITY"
}
]
},
{
"text": "Social history included smoking ( 11 pack-years ) , family history was non-contributory .",
"entities": []
},
{
"text": "She had no known drug allergies .",
"entities": []
},
{
"text": "Complete blood count revealed marked neutrophilic leukocytosis ( WBC 23 . 400 / lt ) .",
"entities": []
},
{
"text": "A CT scan revealed small bilateral pleural effusions , small hepatic enlargement , Gerota ' s fascia thickening , perineal soft tissue stranding with fascial thickening and small bubbles of air .",
"entities": []
},
{
"text": "Fournier ' s gangrene was set as working diagnosis ( calculated FGSI 8 , UFGSI 10 and LRINEC 7 ) and the patient was transported to operation room for immediate radical surgical debridement of necrotic tissue .",
"entities": [
{
"entity_text": "Fournier ' s gangrene",
"type": "CLINENTITY"
}
]
},
{
"text": "Blood and surgical material was taken for microbiologic analysis .",
"entities": []
},
{
"text": "Due to the extent of the surgical debridement , the patient was admitted postoperatively to the ICU ( SOFA score 6 , APACHE II score 12 ) ; where sedation ( midazolam 30 mcg / kg / hr c . iv ) , analgesia ( fentanyl 3 mcg / kg / min c . iv ) , triple antibiotic regimen with meropenem 2 gr q 8 h i . v . , clindamycin 600 mg q 6 h i . v . and daptomycin 500 mg q . d . i . v . , gastroprotective and antithrombotic prophylaxis were initiated .",
"entities": []
},
{
"text": "During the next 3 days a second CT and an obstetrical consultation were conducted with no significant findings .",
"entities": []
},
{
"text": "Human immunodeficiency virus and diabetic screen were also negative .",
"entities": []
},
{
"text": "Yet , the patient remained febrile .",
"entities": []
},
{
"text": "Microbiology cultures from material taken from the surgical trauma area revealed Candida albicans , Staphylococcus epidermidis and Klebsiella pneumonia ; hence antibiotic regimen was modified and antimycotic treatment ( caspofungin 100 mg q . d . i . v . ) was initiated too .",
"entities": []
},
{
"text": "Debridements were repeated every 24 hours but due to the extent of the lesions , on the 10 th day , the patient was transported to operation room for temporary ileostomy till the end of the therapy .",
"entities": []
},
{
"text": "Percutaneous tracheotomy was also performed .",
"entities": []
},
{
"text": "Hyperbaric oxygen therapy was not available at the setting .",
"entities": []
},
{
"text": "One day after the second surgery , patient ' s condition complicated with MRSA ventilation associated pneumonia .",
"entities": [
{
"entity_text": "ventilation associated pneumonia",
"type": "CLINENTITY"
}
]
},
{
"text": "Along with that , a localized oedema appeared in her left upper limb .",
"entities": []
},
{
"text": "A palpable mass along the anterior margin of the sternocleidomastoid muscle was also noticed .",
"entities": []
},
{
"text": "Vascular ultrasound examination revealed occlusion of left internal jugular vein .",
"entities": [
{
"entity_text": "occlusion of left internal jugular vein",
"type": "CLINENTITY"
}
]
},
{
"text": "Transcranial Doppler examination was normal .",
"entities": []
},
{
"text": "Dental consultation and examination of soft palate and peritonsilar tissues showed no abnormalities .",
"entities": []
},
{
"text": "Linezolide 600 mg q 12 h i . v . was added to antibiotic regimen .",
"entities": []
},
{
"text": "Since debridements were going on , simultaneous anticoagulation therapy was started with only bemiparine 2500 b . i . d . s . c .",
"entities": []
},
{
"text": "Gradually , the patient became afebrile and her clinical condition improved .",
"entities": []
},
{
"text": "She was discharged from ICU 13 days later .",
"entities": []
},
{
"text": "A follow-up CTA confirmed the disappearance of the left jugular vein thrombosis .",
"entities": [
{
"entity_text": "left jugular vein thrombosis",
"type": "CLINENTITY"
}
]
},
{
"text": "About a month after her ICU discharge , an operation was performed for ileostomy closure and reconstruction of the right gluteal region .",
"entities": []
},
{
"text": "On a follow-up examination 6 months later , the young woman had returned to her normal everyday life .",
"entities": []
}
] |