8323f89
| 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 | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_13e92794fed140c24ea2c7fcb8cfbe4e {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<style>html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
<style>#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-locatecontrol/0.66.2/L.Control.Locate.min.css"/>
</head>
<body>
<div style="
position:fixed;
top:10px;
right:10px;
z-index:10000;
direction:rtl;
font-family:Arial, sans-serif;
">
<button id="btn_stats_40" onclick="
var panel = document.getElementById('stats_40');
var btn = document.getElementById('btn_stats_40');
if (panel.style.display === 'none') {
panel.style.display = 'block';
btn.innerText = 'إخفاء';
} else {
panel.style.display = 'none';
btn.innerText = 'عرض الملخص';
}
" style="
background:rgba(255,255,255,0.92);
border:none;
border-radius:14px;
padding:10px 14px;
font-size:14px;
font-weight:bold;
cursor:pointer;
box-shadow:0 2px 10px rgba(0,0,0,0.18);
">إخفاء</button>
</div>
<div id="stats_40" style="
display:block;
position:fixed;
top:10px;
right:58px;
width:320px;
max-height:85vh;
overflow-y:auto;
background:rgba(255,255,255,0.86);
backdrop-filter:blur(4px);
-webkit-backdrop-filter:blur(4px);
border-radius:22px;
padding:18px 18px 16px 18px;
z-index:9999;
direction:rtl;
font-family:Arial, sans-serif;
box-shadow:0 8px 28px rgba(0,0,0,0.16);
line-height:1.9;
color:#222;
">
<div style="
font-size:18px;
font-weight:800;
text-align:center;
margin-bottom:10px;
">عبدالله فواز الشمري - 40</div>
<div style="font-size:15px;">
<div><b>عدد المواقع:</b> 95</div>
<div><b>عدد الحارات:</b> 11</div>
</div>
<div style="margin-top:10px;">
<div style="font-weight:bold;">أكثر الحارات:</div>
<div style="padding-right:8px;"><div>• المصانع: 56</div><div>• ج6: 24</div><div>• الحمراء: 6</div><div>• 7: 2</div><div>• الربوة: 1</div></div>
</div>
<div style="
margin-top:14px;
padding-top:10px;
border-top:1px solid rgba(0,0,0,0.08);
">
<a href="report_40_عبدالله_فواز_الشمري.pdf" target="_blank" style="
display:block;
text-align:center;
background:#16a34a;
color:#fff;
text-decoration:none;
padding:10px 12px;
border-radius:12px;
font-weight:700;
margin-bottom:14px;
">تصدير بيانات هذه الخريطة PDF</a>
<div style="font-weight:bold; margin-bottom:6px;">تلوين حسب نوع المسح</div>
<div style="font-size:13px;">
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:red;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>ربعي وسنوي</span>
</div>
<span style="color:#555;">(80)</span>
</div>
<div style="display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px;">
<div style="display:flex;align-items:center;gap:8px;">
<span style="
width:12px;
height:12px;
border-radius:50%;
display:inline-block;
background:blue;
border:1px solid rgba(0,0,0,0.15);
"></span>
<span>سنوي فقط</span>
</div>
<span style="color:#555;">(15)</span>
</div>
</div>
</div>
</div>
<div style="
position: fixed;
bottom: 8px; left: 8px;
background: rgba(255,255,255,0.85);
padding: 6px 10px;
border-radius: 10px;
font-size: 13px;
direction: rtl;
z-index: 9999;
box-shadow: 0 1px 8px rgba(0,0,0,0.15);
">
تصميم وإعداد <b>نوف الناصر</b>
</div>
<div class="folium-map" id="map_13e92794fed140c24ea2c7fcb8cfbe4e" ></div>
</body>
<script>
var map_13e92794fed140c24ea2c7fcb8cfbe4e = L.map(
"map_13e92794fed140c24ea2c7fcb8cfbe4e",
{
center: [27.005402310475812, 49.603602306404575],
crs: L.CRS.EPSG3857,
...{
"zoom": 13,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_78f099aa5c4ac92d9f4f117d678c9d49 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{
"minZoom": 0,
"maxZoom": 19,
"maxNativeZoom": 19,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_78f099aa5c4ac92d9f4f117d678c9d49.addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var tile_layer_aecccf567cd1fd80f2bebd3d982c2199 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{
"minZoom": 0,
"maxZoom": 19,
"maxNativeZoom": 19,
"noWrap": false,
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_aecccf567cd1fd80f2bebd3d982c2199.addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var tile_layer_fc552adc76737e7f56bfff6dd67b7e41 = L.tileLayer(
"https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}",
{
"minZoom": 0,
"maxZoom": 18,
"maxNativeZoom": 18,
"noWrap": false,
"attribution": "\u0026copy; Esri",
"subdomains": "abc",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_fc552adc76737e7f56bfff6dd67b7e41.addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var locate_control_3d97eb379e78da2eead033b4442adb1b = L.control.locate(
{}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var marker_6d18166ff53457a8b608e34db32f1a56 = L.marker(
[26.9418220679809, 49.6704946960231],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_5c70c52741fe57e8cec87c124893539c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_23193390c5fe364c35fac85d7d5c45f0 = L.popup({
"maxWidth": 320,
});
var html_2667694fd8c4dde0d16d213c777be4cb = $(`<div id="html_2667694fd8c4dde0d16d213c777be4cb" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أسدام للصناعة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7017782066<br> <b>السجل التجاري:</b> 2055128492<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.9418220679809,49.6704946960231" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_23193390c5fe364c35fac85d7d5c45f0.setContent(html_2667694fd8c4dde0d16d213c777be4cb);
marker_6d18166ff53457a8b608e34db32f1a56.bindPopup(popup_23193390c5fe364c35fac85d7d5c45f0)
;
marker_6d18166ff53457a8b608e34db32f1a56.setIcon(icon_5c70c52741fe57e8cec87c124893539c);
var marker_198d0b2bc9495c1aff3dc86a73555046 = L.marker(
[26.94025896498224, 49.67790124993884],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_3e70dfb04bca18228dcb1e543fa0fb1d = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_39cff0fc52ecb4e186eaec4c98c37ac7 = L.popup({
"maxWidth": 320,
});
var html_c85f67ee95636adc35cd41ab8b86f404 = $(`<div id="html_c85f67ee95636adc35cd41ab8b86f404" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة بروق الموحدة<br> <b>الرقم الموحد:</b> 7043121891<br> <b>السجل التجاري:</b> 2055158000<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.94025896498224,49.67790124993884" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_39cff0fc52ecb4e186eaec4c98c37ac7.setContent(html_c85f67ee95636adc35cd41ab8b86f404);
marker_198d0b2bc9495c1aff3dc86a73555046.bindPopup(popup_39cff0fc52ecb4e186eaec4c98c37ac7)
;
marker_198d0b2bc9495c1aff3dc86a73555046.setIcon(icon_3e70dfb04bca18228dcb1e543fa0fb1d);
var marker_dee619d3f1604dcbe528b9218fb1da47 = L.marker(
[26.94202584, 49.66959976],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_44d1dfcc179d291d6e508258f78b228e = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_baf96e5d24b2ae0e9d0c77fe1a50d0e8 = L.popup({
"maxWidth": 320,
});
var html_f47b925a3f270d9b493a2d0d9ca7734b = $(`<div id="html_f47b925a3f270d9b493a2d0d9ca7734b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع السعودي الألماني للصناعة<br> <b>الرقم الموحد:</b> 7011869042<br> <b>السجل التجاري:</b> 2055011592<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.94202584,49.66959976" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_baf96e5d24b2ae0e9d0c77fe1a50d0e8.setContent(html_f47b925a3f270d9b493a2d0d9ca7734b);
marker_dee619d3f1604dcbe528b9218fb1da47.bindPopup(popup_baf96e5d24b2ae0e9d0c77fe1a50d0e8)
;
marker_dee619d3f1604dcbe528b9218fb1da47.setIcon(icon_44d1dfcc179d291d6e508258f78b228e);
var marker_92ae7e85c7e0aa17650b50289735649a = L.marker(
[26.947379268250195, 49.66535848298482],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_ade2656991f8fc81a7ea5d05e17ba94d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ebb7375c09face5af35e57d35eab9415 = L.popup({
"maxWidth": 320,
});
var html_77b174a61a188ae693a31790ba6a7ba6 = $(`<div id="html_77b174a61a188ae693a31790ba6a7ba6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ريفاينري سولوشنز<br> <b>الرقم الموحد:</b> 7011776437<br> <b>السجل التجاري:</b> 4030221604<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.947379268250195,49.66535848298482" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ebb7375c09face5af35e57d35eab9415.setContent(html_77b174a61a188ae693a31790ba6a7ba6);
marker_92ae7e85c7e0aa17650b50289735649a.bindPopup(popup_ebb7375c09face5af35e57d35eab9415)
;
marker_92ae7e85c7e0aa17650b50289735649a.setIcon(icon_ade2656991f8fc81a7ea5d05e17ba94d);
var marker_2b907dcb2510560c08fad566155cac8b = L.marker(
[26.94892216, 49.66418767],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_184974dac1b17f17a5ad29c6e3c8d0a2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2967d177a543b46c9a553cb96b2ed526 = L.popup({
"maxWidth": 320,
});
var html_a9b720e9e98f8dfa8d0b69dff7fd9cdf = $(`<div id="html_a9b720e9e98f8dfa8d0b69dff7fd9cdf" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة كي كيم انجنيرينج سيرفيس السعودية<br> <b>الرقم الموحد:</b> 7001632582<br> <b>السجل التجاري:</b> 2055012533<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.94892216,49.66418767" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2967d177a543b46c9a553cb96b2ed526.setContent(html_a9b720e9e98f8dfa8d0b69dff7fd9cdf);
marker_2b907dcb2510560c08fad566155cac8b.bindPopup(popup_2967d177a543b46c9a553cb96b2ed526)
;
marker_2b907dcb2510560c08fad566155cac8b.setIcon(icon_184974dac1b17f17a5ad29c6e3c8d0a2);
var marker_9fa49ae15a32a4261cef00d0a5539899 = L.marker(
[26.9505194468458, 49.6575158986866],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_8b950f577450c82cc9a1c557b25a06d7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0a30bd9df2f18e4e5d6a7b04ed7da6c0 = L.popup({
"maxWidth": 320,
});
var html_91179bc0beb5110642435879dc60d95b = $(`<div id="html_91179bc0beb5110642435879dc60d95b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة جاسر للخدمات البترولية و الصناعية<br> <b>الرقم الموحد:</b> 7001883714<br> <b>السجل التجاري:</b> 2055023372<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.9505194468458,49.6575158986866" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0a30bd9df2f18e4e5d6a7b04ed7da6c0.setContent(html_91179bc0beb5110642435879dc60d95b);
marker_9fa49ae15a32a4261cef00d0a5539899.bindPopup(popup_0a30bd9df2f18e4e5d6a7b04ed7da6c0)
;
marker_9fa49ae15a32a4261cef00d0a5539899.setIcon(icon_8b950f577450c82cc9a1c557b25a06d7);
var marker_517c518dd2baa59d1a8c1d24f1d41b48 = L.marker(
[26.94148891, 49.67446742],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_9242fcf3e74095ad9d31698b8574c383 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_27f8176b482f0446e6dead83aea52550 = L.popup({
"maxWidth": 320,
});
var html_5216e637d4b7f0d05176b945681ddb05 = $(`<div id="html_5216e637d4b7f0d05176b945681ddb05" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الموارد الصناعية العربية للمقاولات<br> <b>الرقم الموحد:</b> 7006569441<br> <b>السجل التجاري:</b> 2055007603<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.94148891,49.67446742" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_27f8176b482f0446e6dead83aea52550.setContent(html_5216e637d4b7f0d05176b945681ddb05);
marker_517c518dd2baa59d1a8c1d24f1d41b48.bindPopup(popup_27f8176b482f0446e6dead83aea52550)
;
marker_517c518dd2baa59d1a8c1d24f1d41b48.setIcon(icon_9242fcf3e74095ad9d31698b8574c383);
var marker_9237e9041a725bcba0081841d19ed051 = L.marker(
[26.94394083, 49.67388257],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_4ff8050f1fbd098c1c1aa0fa4f630f60 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a8c818923cc4d12fc2a64c04412082a5 = L.popup({
"maxWidth": 320,
});
var html_dab5d5f956145b47fde9b650a48a7d37 = $(`<div id="html_dab5d5f956145b47fde9b650a48a7d37" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع سعودي ثاليت للصناعة<br> <b>الرقم الموحد:</b> 7012250424<br> <b>السجل التجاري:</b> 2055010968<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.94394083,49.67388257" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a8c818923cc4d12fc2a64c04412082a5.setContent(html_dab5d5f956145b47fde9b650a48a7d37);
marker_9237e9041a725bcba0081841d19ed051.bindPopup(popup_a8c818923cc4d12fc2a64c04412082a5)
;
marker_9237e9041a725bcba0081841d19ed051.setIcon(icon_4ff8050f1fbd098c1c1aa0fa4f630f60);
var marker_e254497aa07f00fdb9f3abc47ebdcd20 = L.marker(
[26.9576947361098, 49.6460803012129],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_c7706ce3b58a73386a25f4af4296712d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_043364100b40d722037221805c2f63ca = L.popup({
"maxWidth": 320,
});
var html_932bd3808135c015f29eb7b1c2da6176 = $(`<div id="html_932bd3808135c015f29eb7b1c2da6176" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فارس العرب للمقاولات<br> <b>الرقم الموحد:</b> 7016182235<br> <b>السجل التجاري:</b> 2055128165<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.9576947361098,49.6460803012129" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_043364100b40d722037221805c2f63ca.setContent(html_932bd3808135c015f29eb7b1c2da6176);
marker_e254497aa07f00fdb9f3abc47ebdcd20.bindPopup(popup_043364100b40d722037221805c2f63ca)
;
marker_e254497aa07f00fdb9f3abc47ebdcd20.setIcon(icon_c7706ce3b58a73386a25f4af4296712d);
var marker_df1eb3de0ce12ac0143a4be2c2b10bb9 = L.marker(
[26.9399535573571, 49.6718903776427],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_feecbe96d4b2d5cac0281023e8e15c4b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2d95168b2213aaa33c6bbb6a3a9f3a56 = L.popup({
"maxWidth": 320,
});
var html_3f486dba02e68ae48adbd5636ca1cd95 = $(`<div id="html_3f486dba02e68ae48adbd5636ca1cd95" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة النجم الثاقب للمقاولات<br> <b>الرقم الموحد:</b> 7009411906<br> <b>السجل التجاري:</b> 2055009616<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.9399535573571,49.6718903776427" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2d95168b2213aaa33c6bbb6a3a9f3a56.setContent(html_3f486dba02e68ae48adbd5636ca1cd95);
marker_df1eb3de0ce12ac0143a4be2c2b10bb9.bindPopup(popup_2d95168b2213aaa33c6bbb6a3a9f3a56)
;
marker_df1eb3de0ce12ac0143a4be2c2b10bb9.setIcon(icon_feecbe96d4b2d5cac0281023e8e15c4b);
var marker_0a8840fa408b3d5762b96fe75a2ccf50 = L.marker(
[26.9383885118819, 49.6752162191515],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_797dd6d01b33a677c71cb2459690857d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e7e205d75f80c68e9630c837656155af = L.popup({
"maxWidth": 320,
});
var html_5da485a3ff13c985ece3a7fc3c5f4ac4 = $(`<div id="html_5da485a3ff13c985ece3a7fc3c5f4ac4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اسكون كونترول المحدودة<br> <b>الرقم الموحد:</b> 7001684468<br> <b>السجل التجاري:</b> 2055014082<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.9383885118819,49.6752162191515" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e7e205d75f80c68e9630c837656155af.setContent(html_5da485a3ff13c985ece3a7fc3c5f4ac4);
marker_0a8840fa408b3d5762b96fe75a2ccf50.bindPopup(popup_e7e205d75f80c68e9630c837656155af)
;
marker_0a8840fa408b3d5762b96fe75a2ccf50.setIcon(icon_797dd6d01b33a677c71cb2459690857d);
var marker_5aee3034af66b904c04bc697e7b23dc5 = L.marker(
[26.9481219893812, 49.6653668916862],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_6a8730e2c721b24849e8708c5c9bbce7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2c14243c3e153deb7ab4ffd60d7f095c = L.popup({
"maxWidth": 320,
});
var html_e42b5bad8f3410298979ed25c5e8e3f1 = $(`<div id="html_e42b5bad8f3410298979ed25c5e8e3f1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع أنابيب الكوثر للصناعة<br> <b>الرقم الموحد:</b> 7011775546<br> <b>السجل التجاري:</b> 2055021270<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.9481219893812,49.6653668916862" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2c14243c3e153deb7ab4ffd60d7f095c.setContent(html_e42b5bad8f3410298979ed25c5e8e3f1);
marker_5aee3034af66b904c04bc697e7b23dc5.bindPopup(popup_2c14243c3e153deb7ab4ffd60d7f095c)
;
marker_5aee3034af66b904c04bc697e7b23dc5.setIcon(icon_6a8730e2c721b24849e8708c5c9bbce7);
var marker_b5145fd2cc65d1ac32acf92be0151acc = L.marker(
[26.94334606, 49.6743372],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_046d003d3fbbffce9861eb23d69d80ac = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7772bae408e5a6ce623431b9ae42927d = L.popup({
"maxWidth": 320,
});
var html_6b53ba64211894cc5f5b9754fda9f99e = $(`<div id="html_6b53ba64211894cc5f5b9754fda9f99e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مكانة للصناعة والخدمات المحدودة<br> <b>الرقم الموحد:</b> 7001669006<br> <b>السجل التجاري:</b> 2055009264<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.94334606,49.6743372" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7772bae408e5a6ce623431b9ae42927d.setContent(html_6b53ba64211894cc5f5b9754fda9f99e);
marker_b5145fd2cc65d1ac32acf92be0151acc.bindPopup(popup_7772bae408e5a6ce623431b9ae42927d)
;
marker_b5145fd2cc65d1ac32acf92be0151acc.setIcon(icon_046d003d3fbbffce9861eb23d69d80ac);
var marker_fd041a6aa0f5187719efef6fa1b0a4d4 = L.marker(
[26.9466540816357, 49.6580499796543],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_4df52741dde6afce733602a66718976c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5d23ef6ee66d78ae247839d26f0005a6 = L.popup({
"maxWidth": 320,
});
var html_fe31d9041e8d1027bfd542ace12b92ab = $(`<div id="html_fe31d9041e8d1027bfd542ace12b92ab" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة جال الدولية المحدودة<br> <b>الرقم الموحد:</b> 7001502124<br> <b>السجل التجاري:</b> 2051015946<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.9466540816357,49.6580499796543" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5d23ef6ee66d78ae247839d26f0005a6.setContent(html_fe31d9041e8d1027bfd542ace12b92ab);
marker_fd041a6aa0f5187719efef6fa1b0a4d4.bindPopup(popup_5d23ef6ee66d78ae247839d26f0005a6)
;
marker_fd041a6aa0f5187719efef6fa1b0a4d4.setIcon(icon_4df52741dde6afce733602a66718976c);
var marker_b9b0a2232a65f0f7a2ae2a92e11c7aea = L.marker(
[26.937921137502, 49.6788580482828],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_a7429371555f7e4783ad899364878d6e = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b557b45b05304758b11e73ce7edcb67b = L.popup({
"maxWidth": 320,
});
var html_ad0313878d53a10838ad4daab040351f = $(`<div id="html_ad0313878d53a10838ad4daab040351f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة دلتا الجبيل للمقاولات العامة<br> <b>الرقم الموحد:</b> 7013570176<br> <b>السجل التجاري:</b> 2055009153<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.937921137502,49.6788580482828" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b557b45b05304758b11e73ce7edcb67b.setContent(html_ad0313878d53a10838ad4daab040351f);
marker_b9b0a2232a65f0f7a2ae2a92e11c7aea.bindPopup(popup_b557b45b05304758b11e73ce7edcb67b)
;
marker_b9b0a2232a65f0f7a2ae2a92e11c7aea.setIcon(icon_a7429371555f7e4783ad899364878d6e);
var marker_f4903956ce8839bcfde048406fc432c1 = L.marker(
[26.93987523, 49.67190725],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_e5ff99361f830ef33ff091e5a0af877a = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_88a99859166330d8a9302b58ba234b4f = L.popup({
"maxWidth": 320,
});
var html_ef9af710ff20840b03de2f897d658498 = $(`<div id="html_ef9af710ff20840b03de2f897d658498" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة كوت التكنولوجيا للمقاولات<br> <b>الرقم الموحد:</b> 7006628320<br> <b>السجل التجاري:</b> 2055100880<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.93987523,49.67190725" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_88a99859166330d8a9302b58ba234b4f.setContent(html_ef9af710ff20840b03de2f897d658498);
marker_f4903956ce8839bcfde048406fc432c1.bindPopup(popup_88a99859166330d8a9302b58ba234b4f)
;
marker_f4903956ce8839bcfde048406fc432c1.setIcon(icon_e5ff99361f830ef33ff091e5a0af877a);
var marker_8ebce75bd0f1becc692e88ad9d43db85 = L.marker(
[26.93796821, 49.67714702],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_58b9073ae82db9ed2bd928017aff3d88 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cd745ff698ea116569ec8ed64b3a8c63 = L.popup({
"maxWidth": 320,
});
var html_cafae0aab31474badc5ba2e43c3a0cf6 = $(`<div id="html_cafae0aab31474badc5ba2e43c3a0cf6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ألوبان<br> <b>الرقم الموحد:</b> 7035175103<br> <b>السجل التجاري:</b> 2055136695<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.93796821,49.67714702" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cd745ff698ea116569ec8ed64b3a8c63.setContent(html_cafae0aab31474badc5ba2e43c3a0cf6);
marker_8ebce75bd0f1becc692e88ad9d43db85.bindPopup(popup_cd745ff698ea116569ec8ed64b3a8c63)
;
marker_8ebce75bd0f1becc692e88ad9d43db85.setIcon(icon_58b9073ae82db9ed2bd928017aff3d88);
var marker_736bd904e6730f0dcae239d93838dfb0 = L.marker(
[26.94247498, 49.67162315],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_0fb853fcb1fa0bb56037dcdca909e5e1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_17fa684ac05ca4a25f5f64fd10f13a55 = L.popup({
"maxWidth": 320,
});
var html_aa8f5b1c3c58dc156878ac51f8e2bb8e = $(`<div id="html_aa8f5b1c3c58dc156878ac51f8e2bb8e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أرفاد الدولية للصناعة<br> <b>الرقم الموحد:</b> 7001761712<br> <b>السجل التجاري:</b> 2055016211<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.94247498,49.67162315" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_17fa684ac05ca4a25f5f64fd10f13a55.setContent(html_aa8f5b1c3c58dc156878ac51f8e2bb8e);
marker_736bd904e6730f0dcae239d93838dfb0.bindPopup(popup_17fa684ac05ca4a25f5f64fd10f13a55)
;
marker_736bd904e6730f0dcae239d93838dfb0.setIcon(icon_0fb853fcb1fa0bb56037dcdca909e5e1);
var marker_b8c5726a832f4d88e41dd21b4230c3d6 = L.marker(
[26.95308727612281, 49.64887699711527],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_99bf1951fe756a36f384ae00f327318b = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fd086a6145e908904a9500fe203ac29d = L.popup({
"maxWidth": 320,
});
var html_fa54630cd983aa55c7cf09c70682f842 = $(`<div id="html_fa54630cd983aa55c7cf09c70682f842" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اس اس تي انفرا بروجكتس العربية المحدودة<br> <b>الرقم الموحد:</b> 7034990882<br> <b>السجل التجاري:</b> 2055136357<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.95308727612281,49.64887699711527" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fd086a6145e908904a9500fe203ac29d.setContent(html_fa54630cd983aa55c7cf09c70682f842);
marker_b8c5726a832f4d88e41dd21b4230c3d6.bindPopup(popup_fd086a6145e908904a9500fe203ac29d)
;
marker_b8c5726a832f4d88e41dd21b4230c3d6.setIcon(icon_99bf1951fe756a36f384ae00f327318b);
var marker_b7b0ff6a6f351da3a418dafcb9069fed = L.marker(
[26.9520500682401, 49.6572385943335],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_93c92f1223a27244b6d3507d535cf457 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_06448e51dc002f974c55d1f139f90fba = L.popup({
"maxWidth": 320,
});
var html_743912ca95ebab00a1a5c2414bf181c1 = $(`<div id="html_743912ca95ebab00a1a5c2414bf181c1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مصنع ثلج البرج للثلج<br> <b>الرقم الموحد:</b> 7013813022<br> <b>السجل التجاري:</b> 2055004132<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.9520500682401,49.6572385943335" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_06448e51dc002f974c55d1f139f90fba.setContent(html_743912ca95ebab00a1a5c2414bf181c1);
marker_b7b0ff6a6f351da3a418dafcb9069fed.bindPopup(popup_06448e51dc002f974c55d1f139f90fba)
;
marker_b7b0ff6a6f351da3a418dafcb9069fed.setIcon(icon_93c92f1223a27244b6d3507d535cf457);
var marker_e1a8957e0b825e455d42be8e1d99b258 = L.marker(
[26.94888848, 49.6644664],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_2ef6ea8b7c0d694969e32c3f80c63d78 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_454e2b6eea7e6e37eb70b7a0b5da2f74 = L.popup({
"maxWidth": 320,
});
var html_3db09360b6278d4204726d5417410e90 = $(`<div id="html_3db09360b6278d4204726d5417410e90" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الشركة العالمية للإنشاءات والخدمات الصناعية<br> <b>الرقم الموحد:</b> 7001628762<br> <b>السجل التجاري:</b> 2055013285<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.94888848,49.6644664" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_454e2b6eea7e6e37eb70b7a0b5da2f74.setContent(html_3db09360b6278d4204726d5417410e90);
marker_e1a8957e0b825e455d42be8e1d99b258.bindPopup(popup_454e2b6eea7e6e37eb70b7a0b5da2f74)
;
marker_e1a8957e0b825e455d42be8e1d99b258.setIcon(icon_2ef6ea8b7c0d694969e32c3f80c63d78);
var marker_cd313eea4a080bd67f0bf7094d6543cf = L.marker(
[26.94160258, 49.67404148],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_a4b21d24195270bc7223a05be4ba548d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c7210866d308968cc1dd52fe44223d73 = L.popup({
"maxWidth": 320,
});
var html_79e0005e910636dac1a030b85d3944e6 = $(`<div id="html_79e0005e910636dac1a030b85d3944e6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مسح العربية للفحص<br> <b>الرقم الموحد:</b> 7009788774<br> <b>السجل التجاري:</b> 2055104764<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.94160258,49.67404148" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c7210866d308968cc1dd52fe44223d73.setContent(html_79e0005e910636dac1a030b85d3944e6);
marker_cd313eea4a080bd67f0bf7094d6543cf.bindPopup(popup_c7210866d308968cc1dd52fe44223d73)
;
marker_cd313eea4a080bd67f0bf7094d6543cf.setIcon(icon_a4b21d24195270bc7223a05be4ba548d);
var marker_bfae91117530aadbfc20e4a8b73163b6 = L.marker(
[26.957739887883, 49.6461774648918],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_0dd569150198510808a32e6f1197ec0d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_61a02047382dfc6bf1d866f2d0a6eda4 = L.popup({
"maxWidth": 320,
});
var html_7f8d443f23a78aaaf0fa344296701b27 = $(`<div id="html_7f8d443f23a78aaaf0fa344296701b27" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الفارس الدولية للمقاولات العامة<br> <b>الرقم الموحد:</b> 7001752158<br> <b>السجل التجاري:</b> 2055013357<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.957739887883,49.6461774648918" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_61a02047382dfc6bf1d866f2d0a6eda4.setContent(html_7f8d443f23a78aaaf0fa344296701b27);
marker_bfae91117530aadbfc20e4a8b73163b6.bindPopup(popup_61a02047382dfc6bf1d866f2d0a6eda4)
;
marker_bfae91117530aadbfc20e4a8b73163b6.setIcon(icon_0dd569150198510808a32e6f1197ec0d);
var marker_409c9f494eda0429805316896d47d44c = L.marker(
[26.9415318085301, 49.6745703219111],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_4ae2808d5b8face11ddda7987b145057 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_253ad686f2dc8b0f700694313589b722 = L.popup({
"maxWidth": 320,
});
var html_0fbb5706dbc223f2a9f5abf274de7dda = $(`<div id="html_0fbb5706dbc223f2a9f5abf274de7dda" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الأنظمة الدولية للمقاولات العامة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7012655523<br> <b>السجل التجاري:</b> 2055007367<br> <b>الحي:</b> ج6<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.9415318085301,49.6745703219111" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_253ad686f2dc8b0f700694313589b722.setContent(html_0fbb5706dbc223f2a9f5abf274de7dda);
marker_409c9f494eda0429805316896d47d44c.bindPopup(popup_253ad686f2dc8b0f700694313589b722)
;
marker_409c9f494eda0429805316896d47d44c.setIcon(icon_4ae2808d5b8face11ddda7987b145057);
var marker_413d503aeaec95ba040bdcc894a39601 = L.marker(
[26.95130606, 49.66376909],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_9a1f8f4148367a2af4e1cfe4d9a01895 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_44ee9c150e5e9c2fb9c67f5dc1efffb5 = L.popup({
"maxWidth": 320,
});
var html_550044b563521438d8d109cc67ea7907 = $(`<div id="html_550044b563521438d8d109cc67ea7907" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة جبل الصايره<br> <b>الرقم الموحد:</b> 7006556414<br> <b>السجل التجاري:</b> 2055015519<br> <b>الحي:</b> الربوة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.95130606,49.66376909" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_44ee9c150e5e9c2fb9c67f5dc1efffb5.setContent(html_550044b563521438d8d109cc67ea7907);
marker_413d503aeaec95ba040bdcc894a39601.bindPopup(popup_44ee9c150e5e9c2fb9c67f5dc1efffb5)
;
marker_413d503aeaec95ba040bdcc894a39601.setIcon(icon_9a1f8f4148367a2af4e1cfe4d9a01895);
var marker_834bb1a0644c13c7d3ac6b6bb82b5d25 = L.marker(
[26.99469896279255, 49.66189791965295],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_1598005d5e0f5483bf900f3a08d55acf = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8ba14ab2f39e79a0679943d161938272 = L.popup({
"maxWidth": 320,
});
var html_167ebf79de3533b19461333131f881b1 = $(`<div id="html_167ebf79de3533b19461333131f881b1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة راس امبيشن الدولية للمقاولات شركة شخص واحد<br> <b>الرقم الموحد:</b> 7016074903<br> <b>السجل التجاري:</b> 2055126668<br> <b>الحي:</b> ج17<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.99469896279255,49.66189791965295" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8ba14ab2f39e79a0679943d161938272.setContent(html_167ebf79de3533b19461333131f881b1);
marker_834bb1a0644c13c7d3ac6b6bb82b5d25.bindPopup(popup_8ba14ab2f39e79a0679943d161938272)
;
marker_834bb1a0644c13c7d3ac6b6bb82b5d25.setIcon(icon_1598005d5e0f5483bf900f3a08d55acf);
var marker_baa5fd94239ba00d65f753aea6cbeec7 = L.marker(
[26.93998417, 49.68252544],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_c8fca2cc0aba5bc7d39f6ee8ba93710d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b3b0ea3005fa2299a4a38382bf5370b5 = L.popup({
"maxWidth": 320,
});
var html_edbd1ec718e5bd61d2480c1e3df7c10c = $(`<div id="html_edbd1ec718e5bd61d2480c1e3df7c10c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة بترومين<br> <b>الرقم الموحد:</b> 7000875240<br> <b>السجل التجاري:</b> 4030005930<br> <b>الحي:</b> ج4<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.93998417,49.68252544" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b3b0ea3005fa2299a4a38382bf5370b5.setContent(html_edbd1ec718e5bd61d2480c1e3df7c10c);
marker_baa5fd94239ba00d65f753aea6cbeec7.bindPopup(popup_b3b0ea3005fa2299a4a38382bf5370b5)
;
marker_baa5fd94239ba00d65f753aea6cbeec7.setIcon(icon_c8fca2cc0aba5bc7d39f6ee8ba93710d);
var marker_eceb1e926b4e566ec257c7f0521cf9cb = L.marker(
[26.898081694224203, 49.7097932146818],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_36405776ad5c46b735340cff70e97fdf = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2ec4d2653c970a873e441411c78b6175 = L.popup({
"maxWidth": 320,
});
var html_e84322df19acafa9b3dbbdc6b2812098 = $(`<div id="html_e84322df19acafa9b3dbbdc6b2812098" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة المختصة والحديثة للنقليات<br> <b>الرقم الموحد:</b> 7002760580<br> <b>السجل التجاري:</b> 2055123062<br> <b>الحي:</b> 7<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.8980216942242,49.7097932146818" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2ec4d2653c970a873e441411c78b6175.setContent(html_e84322df19acafa9b3dbbdc6b2812098);
marker_eceb1e926b4e566ec257c7f0521cf9cb.bindPopup(popup_2ec4d2653c970a873e441411c78b6175)
;
marker_eceb1e926b4e566ec257c7f0521cf9cb.setIcon(icon_36405776ad5c46b735340cff70e97fdf);
var marker_f00c275a6e66fa159b5bdec25b175aec = L.marker(
[26.8979616942242, 49.7097932146818],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_23528bbc5fc0826fc030303687dd22e2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_afd2d2be15ea32d88a93935aebe72c00 = L.popup({
"maxWidth": 320,
});
var html_75bf6e529d7be866cd3d63c8c34a33e9 = $(`<div id="html_75bf6e529d7be866cd3d63c8c34a33e9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة المختصة الحديثة المحدودة<br> <b>الرقم الموحد:</b> 7011898116<br> <b>السجل التجاري:</b> 2055100070<br> <b>الحي:</b> 7<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.8980216942242,49.7097932146818" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_afd2d2be15ea32d88a93935aebe72c00.setContent(html_75bf6e529d7be866cd3d63c8c34a33e9);
marker_f00c275a6e66fa159b5bdec25b175aec.bindPopup(popup_afd2d2be15ea32d88a93935aebe72c00)
;
marker_f00c275a6e66fa159b5bdec25b175aec.setIcon(icon_23528bbc5fc0826fc030303687dd22e2);
var marker_2bdea713989b36e09c686cec59e41e93 = L.marker(
[26.92408307926272, 49.72298242358375],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_af269e86ee6bfd3786ba0541a4d164aa = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_24167eab1388da4600b1b768d9acf247 = L.popup({
"maxWidth": 320,
});
var html_2f956af4e0e4e7d70ff03295f8c06e72 = $(`<div id="html_2f956af4e0e4e7d70ff03295f8c06e72" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ستره مبرك العصيمي للاعلاف<br> <b>الرقم الموحد:</b> 7015067692<br> <b>السجل التجاري:</b> 4032032209<br> <b>الحي:</b> الحمراء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.92408307926272,49.72298242358375" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_24167eab1388da4600b1b768d9acf247.setContent(html_2f956af4e0e4e7d70ff03295f8c06e72);
marker_2bdea713989b36e09c686cec59e41e93.bindPopup(popup_24167eab1388da4600b1b768d9acf247)
;
marker_2bdea713989b36e09c686cec59e41e93.setIcon(icon_af269e86ee6bfd3786ba0541a4d164aa);
var marker_071d47a3da0ea4f29c21b59e9b19e92f = L.marker(
[26.92373446844516, 49.72615283734773],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_d9e6dfef66118ba7b438a6b812812171 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bb02056ed6502447f5cc8dd499dd2042 = L.popup({
"maxWidth": 320,
});
var html_bce16bf27e1dd7a9ead94d01128c57f8 = $(`<div id="html_bce16bf27e1dd7a9ead94d01128c57f8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة عائش سعد محمد البلوي للمقاولات العامة<br> <b>الرقم الموحد:</b> 7049576882<br> <b>السجل التجاري:</b> 4651104989<br> <b>الحي:</b> الحمراء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.92373446844516,49.72615283734773" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bb02056ed6502447f5cc8dd499dd2042.setContent(html_bce16bf27e1dd7a9ead94d01128c57f8);
marker_071d47a3da0ea4f29c21b59e9b19e92f.bindPopup(popup_bb02056ed6502447f5cc8dd499dd2042)
;
marker_071d47a3da0ea4f29c21b59e9b19e92f.setIcon(icon_d9e6dfef66118ba7b438a6b812812171);
var marker_af906f1ebb1cb454f47d8600a6f96a88 = L.marker(
[26.92400637742611, 49.72542530331162],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_a94ee0b125be65431e2bb957084ba3c2 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b3719d20a349550d154227ca76586836 = L.popup({
"maxWidth": 320,
});
var html_574ab8668f9a8d1e932066589329f0e4 = $(`<div id="html_574ab8668f9a8d1e932066589329f0e4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة افاج العمرانية للمقاولات العامة<br> <b>الرقم الموحد:</b> 7030912252<br> <b>السجل التجاري:</b> 4030485491<br> <b>الحي:</b> الحمراء<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.92400637742611,49.72542530331162" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b3719d20a349550d154227ca76586836.setContent(html_574ab8668f9a8d1e932066589329f0e4);
marker_af906f1ebb1cb454f47d8600a6f96a88.bindPopup(popup_b3719d20a349550d154227ca76586836)
;
marker_af906f1ebb1cb454f47d8600a6f96a88.setIcon(icon_a94ee0b125be65431e2bb957084ba3c2);
var marker_4351ee3e4059af69c20c37da81106750 = L.marker(
[26.9290557756864, 49.7154863316559],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_389c6d1f39d0e91c99b4e83c7d20db05 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_04d396c341f2ff82fc63d686a210cc0b = L.popup({
"maxWidth": 320,
});
var html_28bd029ae7a4cebc2ff4be31cbc37774 = $(`<div id="html_28bd029ae7a4cebc2ff4be31cbc37774" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة نور شعاع الشمس التجارية<br> <b>الرقم الموحد:</b> 7005838763<br> <b>السجل التجاري:</b> 2055124771<br> <b>الحي:</b> الحمراء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.9290557756864,49.7154863316559" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_04d396c341f2ff82fc63d686a210cc0b.setContent(html_28bd029ae7a4cebc2ff4be31cbc37774);
marker_4351ee3e4059af69c20c37da81106750.bindPopup(popup_04d396c341f2ff82fc63d686a210cc0b)
;
marker_4351ee3e4059af69c20c37da81106750.setIcon(icon_389c6d1f39d0e91c99b4e83c7d20db05);
var marker_9a44ccf0b8b4c0ad1e27607db9598cf9 = L.marker(
[26.92885067, 49.71470595],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_7f29f6d1ab7ef1cb06e948fe1d16af49 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9b9e8737e8ecd090a7f434981718443a = L.popup({
"maxWidth": 320,
});
var html_8ca95a473bd37175daa91e091f653a8d = $(`<div id="html_8ca95a473bd37175daa91e091f653a8d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة امواج الجبيل للقرطاسية<br> <b>الرقم الموحد:</b> 7015670727<br> <b>السجل التجاري:</b> 2055126152<br> <b>الحي:</b> الحمراء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.92885067,49.71470595" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9b9e8737e8ecd090a7f434981718443a.setContent(html_8ca95a473bd37175daa91e091f653a8d);
marker_9a44ccf0b8b4c0ad1e27607db9598cf9.bindPopup(popup_9b9e8737e8ecd090a7f434981718443a)
;
marker_9a44ccf0b8b4c0ad1e27607db9598cf9.setIcon(icon_7f29f6d1ab7ef1cb06e948fe1d16af49);
var marker_e9226d9b4b8dccf50c34e08055ff7f05 = L.marker(
[26.924876778818607, 49.72464971371169],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_9e054f0528ce9f7c84ad600dfbfd2fbf = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_45aa584463ce0b8fae9683f24002fa65 = L.popup({
"maxWidth": 320,
});
var html_3b7fc00ab0eb8e645708b7b9ea15c3f3 = $(`<div id="html_3b7fc00ab0eb8e645708b7b9ea15c3f3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سواعد الإنشاء للمقاولات العامة<br> <b>الرقم الموحد:</b> 7021248989<br> <b>السجل التجاري:</b> 4700112988<br> <b>الحي:</b> الحمراء<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.924876778818607,49.72464971371169" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_45aa584463ce0b8fae9683f24002fa65.setContent(html_3b7fc00ab0eb8e645708b7b9ea15c3f3);
marker_e9226d9b4b8dccf50c34e08055ff7f05.bindPopup(popup_45aa584463ce0b8fae9683f24002fa65)
;
marker_e9226d9b4b8dccf50c34e08055ff7f05.setIcon(icon_9e054f0528ce9f7c84ad600dfbfd2fbf);
var marker_20ec75e7de544002d651187b5a188ee8 = L.marker(
[26.88573604, 49.75268187],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_ee2500d41e728aa86da4a05c577aa6c3 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_92c9d644e008e42d4713d39245ee37eb = L.popup({
"maxWidth": 320,
});
var html_5129bcf76758392e1f70d2fd7aafc54e = $(`<div id="html_5129bcf76758392e1f70d2fd7aafc54e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> المركز الطفل المثابر الصغير ضيافة الأطفال الأهلية<br> <b>الرقم الموحد:</b> 7009128401<br> <b>السجل التجاري:</b> 2055129102<br> <b>الحي:</b> غرناطة<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.88573604,49.75268187" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_92c9d644e008e42d4713d39245ee37eb.setContent(html_5129bcf76758392e1f70d2fd7aafc54e);
marker_20ec75e7de544002d651187b5a188ee8.bindPopup(popup_92c9d644e008e42d4713d39245ee37eb)
;
marker_20ec75e7de544002d651187b5a188ee8.setIcon(icon_ee2500d41e728aa86da4a05c577aa6c3);
var marker_a488ad016dad0d990372dfe69373315d = L.marker(
[26.84949054, 49.79454994],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_13f6c012cb44f4f2a44b4b40e9f05dd8 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_84fa565474631b814d974411d79b33be = L.popup({
"maxWidth": 320,
});
var html_e9e17e56943e03d6ab53a122f18f5dab = $(`<div id="html_e9e17e56943e03d6ab53a122f18f5dab" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مركز كوادر الغد لضيافة الأطفال<br> <b>الرقم الموحد:</b> 7012331851<br> <b>السجل التجاري:</b> 2055023840<br> <b>الحي:</b> اشبيليه<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=26.84949054,49.79454994" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_84fa565474631b814d974411d79b33be.setContent(html_e9e17e56943e03d6ab53a122f18f5dab);
marker_a488ad016dad0d990372dfe69373315d.bindPopup(popup_84fa565474631b814d974411d79b33be)
;
marker_a488ad016dad0d990372dfe69373315d.setIcon(icon_13f6c012cb44f4f2a44b4b40e9f05dd8);
var marker_0186c3c1f30a4b967111d5abd91236ea = L.marker(
[26.84986576, 49.82555875],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_c80810b07c269d467cc3402f08fa3536 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3734805b42846e9f940a7571716d55c7 = L.popup({
"maxWidth": 320,
});
var html_4212ba1c418e722b4d666fe3b0fe34d8 = $(`<div id="html_4212ba1c418e722b4d666fe3b0fe34d8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة سوماك للمقاولات<br> <b>الرقم الموحد:</b> 7001494769<br> <b>السجل التجاري:</b> 2050004497<br> <b>الحي:</b> العزيزية<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.84986576,49.82555875" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3734805b42846e9f940a7571716d55c7.setContent(html_4212ba1c418e722b4d666fe3b0fe34d8);
marker_0186c3c1f30a4b967111d5abd91236ea.bindPopup(popup_3734805b42846e9f940a7571716d55c7)
;
marker_0186c3c1f30a4b967111d5abd91236ea.setIcon(icon_c80810b07c269d467cc3402f08fa3536);
var marker_5c502877b8c08040171fd3cf6475b713 = L.marker(
[26.88407482891666, 49.74603897801409],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_c2fd48c7b8c94273d3f3913c37542a09 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ef181b82e2c34ede5af71fe8bcf21cb8 = L.popup({
"maxWidth": 320,
});
var html_f923f580242939622e199176cd9dfe5e = $(`<div id="html_f923f580242939622e199176cd9dfe5e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة علي عايش بن عبدالله آل جميع للنقليات<br> <b>الرقم الموحد:</b> 7026465372<br> <b>السجل التجاري:</b> 2053119698<br> <b>الحي:</b> ج3<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.88407482891666,49.74603897801409" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ef181b82e2c34ede5af71fe8bcf21cb8.setContent(html_f923f580242939622e199176cd9dfe5e);
marker_5c502877b8c08040171fd3cf6475b713.bindPopup(popup_ef181b82e2c34ede5af71fe8bcf21cb8)
;
marker_5c502877b8c08040171fd3cf6475b713.setIcon(icon_c2fd48c7b8c94273d3f3913c37542a09);
var marker_7b407be5cb699fe778b70081d5880e2d = L.marker(
[27.01279748, 49.5427805],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_bba23702ae9130cd0738e9ddaf808697 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f20e57ba7ccae7745126e9e1b11a5faa = L.popup({
"maxWidth": 320,
});
var html_11e6c5ebeac9f3f842c88afbafe8c0b0 = $(`<div id="html_11e6c5ebeac9f3f842c88afbafe8c0b0" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة نماء للكيماويات<br> <b>الرقم الموحد:</b> 7001520811<br> <b>السجل التجاري:</b> 2055007420<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.01273748,49.5427805" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f20e57ba7ccae7745126e9e1b11a5faa.setContent(html_11e6c5ebeac9f3f842c88afbafe8c0b0);
marker_7b407be5cb699fe778b70081d5880e2d.bindPopup(popup_f20e57ba7ccae7745126e9e1b11a5faa)
;
marker_7b407be5cb699fe778b70081d5880e2d.setIcon(icon_bba23702ae9130cd0738e9ddaf808697);
var marker_edfa1bbddc0c0b13b1a1865a4dca6b3c = L.marker(
[27.06584337, 49.53553636],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_4effdda2b53dbb9521334d47f7d989fe = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_eadcd6179b9261814c97e8f719e38111 = L.popup({
"maxWidth": 320,
});
var html_54d6bc80ccc1f180ac76e938ad0178c4 = $(`<div id="html_54d6bc80ccc1f180ac76e938ad0178c4" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع الجبيل للمواسير الصحية المحدودة<br> <b>الرقم الموحد:</b> 7010475007<br> <b>السجل التجاري:</b> 2055001637<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.06584337,49.53553636" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_eadcd6179b9261814c97e8f719e38111.setContent(html_54d6bc80ccc1f180ac76e938ad0178c4);
marker_edfa1bbddc0c0b13b1a1865a4dca6b3c.bindPopup(popup_eadcd6179b9261814c97e8f719e38111)
;
marker_edfa1bbddc0c0b13b1a1865a4dca6b3c.setIcon(icon_4effdda2b53dbb9521334d47f7d989fe);
var marker_c3bacd5714df1c085023ff2e9be7ee16 = L.marker(
[27.0831851732488, 49.559851106715],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_1a83bbc98b89cc7b0fc8150d80118384 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d489d7013f43e5d42066b4ff9e4bcb78 = L.popup({
"maxWidth": 320,
});
var html_6dfda0daa5b908380c7506127d6096e1 = $(`<div id="html_6dfda0daa5b908380c7506127d6096e1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة محاسن الخليج للخدمات التجارية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001553325<br> <b>السجل التجاري:</b> 2055008800<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0831851732488,49.559851106715" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d489d7013f43e5d42066b4ff9e4bcb78.setContent(html_6dfda0daa5b908380c7506127d6096e1);
marker_c3bacd5714df1c085023ff2e9be7ee16.bindPopup(popup_d489d7013f43e5d42066b4ff9e4bcb78)
;
marker_c3bacd5714df1c085023ff2e9be7ee16.setIcon(icon_1a83bbc98b89cc7b0fc8150d80118384);
var marker_fd115de1f79dd5130f68a7ec22bd58c7 = L.marker(
[27.0394443161121, 49.4996034946321],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_af047eae2541eda80753705f1bc55c46 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5ce9f18e2970a99043dc4a5f6dd1ca6f = L.popup({
"maxWidth": 320,
});
var html_36dbdca9edcb0b7fda0c835e161ce1a7 = $(`<div id="html_36dbdca9edcb0b7fda0c835e161ce1a7" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ماريتايم اندستريال سيرفيسز العربية المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001382659<br> <b>السجل التجاري:</b> 2055003868<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0394443161121,49.4996034946321" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5ce9f18e2970a99043dc4a5f6dd1ca6f.setContent(html_36dbdca9edcb0b7fda0c835e161ce1a7);
marker_fd115de1f79dd5130f68a7ec22bd58c7.bindPopup(popup_5ce9f18e2970a99043dc4a5f6dd1ca6f)
;
marker_fd115de1f79dd5130f68a7ec22bd58c7.setIcon(icon_af047eae2541eda80753705f1bc55c46);
var marker_8fc37d3e4d065725ad9bcea7de8b71c8 = L.marker(
[27.0717775408003, 49.574910108767696],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_b9a49b6f9814ac176f0668a8b0423306 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a0344a7a53ee0a0cafcb6c6c60748e6e = L.popup({
"maxWidth": 320,
});
var html_99ee785572f5d9c8ae835c385248560c = $(`<div id="html_99ee785572f5d9c8ae835c385248560c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة رابطه الشرق الأوسط للمقاولات<br> <b>الرقم الموحد:</b> 7002980790<br> <b>السجل التجاري:</b> 2055012458<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0717775408003,49.574910108767696" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a0344a7a53ee0a0cafcb6c6c60748e6e.setContent(html_99ee785572f5d9c8ae835c385248560c);
marker_8fc37d3e4d065725ad9bcea7de8b71c8.bindPopup(popup_a0344a7a53ee0a0cafcb6c6c60748e6e)
;
marker_8fc37d3e4d065725ad9bcea7de8b71c8.setIcon(icon_b9a49b6f9814ac176f0668a8b0423306);
var marker_ae821791953d2c8bcbdcc1d638beb525 = L.marker(
[27.070939519362305, 49.5490301977107],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_6c25877c0f5cd282fc9a4169e5b938ef = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0af5a3870f76c905bb59a5f5e5790ca8 = L.popup({
"maxWidth": 320,
});
var html_56f2e78d7553d1b132bc74cabbdfdead = $(`<div id="html_56f2e78d7553d1b132bc74cabbdfdead" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة جودة الهواء للخدمات البيئية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001712541<br> <b>السجل التجاري:</b> 2055015648<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.070939519362305,49.5490301977107" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0af5a3870f76c905bb59a5f5e5790ca8.setContent(html_56f2e78d7553d1b132bc74cabbdfdead);
marker_ae821791953d2c8bcbdcc1d638beb525.bindPopup(popup_0af5a3870f76c905bb59a5f5e5790ca8)
;
marker_ae821791953d2c8bcbdcc1d638beb525.setIcon(icon_6c25877c0f5cd282fc9a4169e5b938ef);
var marker_5b66a34195c0d1a8b18122cd67ad4605 = L.marker(
[27.0481746715998, 49.5369065787535],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_a5a4b4a1556ba7b9de24f37159b0a3dd = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_05aa1ad598c26406e210ea0c8fc9acb3 = L.popup({
"maxWidth": 320,
});
var html_62a1e9135de4af34ffede6495581f41c = $(`<div id="html_62a1e9135de4af34ffede6495581f41c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة انجينيا بوليمرز المحدودة شركة الشخص الواحد<br> <b>الرقم الموحد:</b> 7001550123<br> <b>السجل التجاري:</b> 2055008465<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0481746715998,49.5369065787535" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_05aa1ad598c26406e210ea0c8fc9acb3.setContent(html_62a1e9135de4af34ffede6495581f41c);
marker_5b66a34195c0d1a8b18122cd67ad4605.bindPopup(popup_05aa1ad598c26406e210ea0c8fc9acb3)
;
marker_5b66a34195c0d1a8b18122cd67ad4605.setIcon(icon_a5a4b4a1556ba7b9de24f37159b0a3dd);
var marker_53259dd12bd93adfe04c1fa4bf605ec0 = L.marker(
[27.01417506, 49.53302845],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_0788e59b354fe302c8a4453c4dfa914c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c741884e2bdb0de136bac7e937d8e838 = L.popup({
"maxWidth": 320,
});
var html_e05f465727d4383caa3df4d9af5efd3b = $(`<div id="html_e05f465727d4383caa3df4d9af5efd3b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الصلب المتحدة السعودية للصلب<br> <b>الرقم الموحد:</b> 7001665079<br> <b>السجل التجاري:</b> 2055013721<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.01417506,49.53302845" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c741884e2bdb0de136bac7e937d8e838.setContent(html_e05f465727d4383caa3df4d9af5efd3b);
marker_53259dd12bd93adfe04c1fa4bf605ec0.bindPopup(popup_c741884e2bdb0de136bac7e937d8e838)
;
marker_53259dd12bd93adfe04c1fa4bf605ec0.setIcon(icon_0788e59b354fe302c8a4453c4dfa914c);
var marker_324dd6b7a0e1fedf8c4b7782cd9e8e5a = L.marker(
[27.034513938657895, 49.596900418997],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_795497858139c48b7e4a3963991958ea = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_884f6d6d3f5a80147d995360964d0757 = L.popup({
"maxWidth": 320,
});
var html_2b9aa89642809edd4ad1f2a059a18557 = $(`<div id="html_2b9aa89642809edd4ad1f2a059a18557" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة ركن اكشنها لزينة السيارات<br> <b>الرقم الموحد:</b> 7012202748<br> <b>السجل التجاري:</b> 2055020524<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=27.034513938657895,49.596900418997" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_884f6d6d3f5a80147d995360964d0757.setContent(html_2b9aa89642809edd4ad1f2a059a18557);
marker_324dd6b7a0e1fedf8c4b7782cd9e8e5a.bindPopup(popup_884f6d6d3f5a80147d995360964d0757)
;
marker_324dd6b7a0e1fedf8c4b7782cd9e8e5a.setIcon(icon_795497858139c48b7e4a3963991958ea);
var marker_c7fde31091d2e9d7895de465dbc9f5af = L.marker(
[27.0824760794121, 49.5577091741883],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_884c1ca1d460ba1f12a77b965e230991 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_3e1234490b8e1f17cd74c1242a8b170d = L.popup({
"maxWidth": 320,
});
var html_cb09710439d8859141f9d6e3a15429f3 = $(`<div id="html_cb09710439d8859141f9d6e3a15429f3" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة إستدامة الشرق الأوسط للتجارة<br> <b>الرقم الموحد:</b> 7017686325<br> <b>السجل التجاري:</b> 2055128384<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=27.0824760794121,49.5577091741883" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_3e1234490b8e1f17cd74c1242a8b170d.setContent(html_cb09710439d8859141f9d6e3a15429f3);
marker_c7fde31091d2e9d7895de465dbc9f5af.bindPopup(popup_3e1234490b8e1f17cd74c1242a8b170d)
;
marker_c7fde31091d2e9d7895de465dbc9f5af.setIcon(icon_884c1ca1d460ba1f12a77b965e230991);
var marker_ac2c01cc9f40cb16ee1da687f5fb30b6 = L.marker(
[27.081535856664505, 49.5535740207195],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_d170064017bfef45c760840a5aa6f1c8 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_05f521ee742ee4c62b431cb19448811d = L.popup({
"maxWidth": 320,
});
var html_5b3cbaf624fdfc4996ffe29b2015d7fe = $(`<div id="html_5b3cbaf624fdfc4996ffe29b2015d7fe" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع صالح ناصر العيوني للصناعة<br> <b>الرقم الموحد:</b> 7012190893<br> <b>السجل التجاري:</b> 2055009876<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.081535856664505,49.5535740207195" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_05f521ee742ee4c62b431cb19448811d.setContent(html_5b3cbaf624fdfc4996ffe29b2015d7fe);
marker_ac2c01cc9f40cb16ee1da687f5fb30b6.bindPopup(popup_05f521ee742ee4c62b431cb19448811d)
;
marker_ac2c01cc9f40cb16ee1da687f5fb30b6.setIcon(icon_d170064017bfef45c760840a5aa6f1c8);
var marker_67b4b3c3585596861013a21d3484784b = L.marker(
[27.0428481439695, 49.5138961769691],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_a55b3f65c941d50cb509b1f186d63d8d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8edc4a4719add1047a7a87cdbeda7447 = L.popup({
"maxWidth": 320,
});
var html_ff4c8677444ed1f1d56b5582e10c4302 = $(`<div id="html_ff4c8677444ed1f1d56b5582e10c4302" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة كيب الصناعية المحدودة<br> <b>الرقم الموحد:</b> 7001480289<br> <b>السجل التجاري:</b> 2055006875<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0428481439695,49.5138961769691" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8edc4a4719add1047a7a87cdbeda7447.setContent(html_ff4c8677444ed1f1d56b5582e10c4302);
marker_67b4b3c3585596861013a21d3484784b.bindPopup(popup_8edc4a4719add1047a7a87cdbeda7447)
;
marker_67b4b3c3585596861013a21d3484784b.setIcon(icon_a55b3f65c941d50cb509b1f186d63d8d);
var marker_3676f5c624d6465bcd1bd303004fbc1f = L.marker(
[27.02974439, 49.54005279],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_7e77613ec005d6359159780e2f580372 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4a334c600f24e0dd745c5568775d84ae = L.popup({
"maxWidth": 320,
});
var html_45bbd27fe1ad6dc0dfaf6e847826e41d = $(`<div id="html_45bbd27fe1ad6dc0dfaf6e847826e41d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة زجاج جارديان السعوديه الدوليه المحدودة<br> <b>الرقم الموحد:</b> 7001375075<br> <b>السجل التجاري:</b> 2055003612<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.02974439,49.54005279" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4a334c600f24e0dd745c5568775d84ae.setContent(html_45bbd27fe1ad6dc0dfaf6e847826e41d);
marker_3676f5c624d6465bcd1bd303004fbc1f.bindPopup(popup_4a334c600f24e0dd745c5568775d84ae)
;
marker_3676f5c624d6465bcd1bd303004fbc1f.setIcon(icon_7e77613ec005d6359159780e2f580372);
var marker_c8537fe8bc5341fbb3812081631cbff6 = L.marker(
[27.0811843802372, 49.5603734088262],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_e48f4c5eca0a56c490875793300be260 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_902580039155db25acdf883ad9cefaf4 = L.popup({
"maxWidth": 320,
});
var html_a8de5732dfa77860a05d28ba46285781 = $(`<div id="html_a8de5732dfa77860a05d28ba46285781" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة سياج الأمان للحراسات الأمنية<br> <b>الرقم الموحد:</b> 7012305194<br> <b>السجل التجاري:</b> 2055007280<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0811843802372,49.5603734088262" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_902580039155db25acdf883ad9cefaf4.setContent(html_a8de5732dfa77860a05d28ba46285781);
marker_c8537fe8bc5341fbb3812081631cbff6.bindPopup(popup_902580039155db25acdf883ad9cefaf4)
;
marker_c8537fe8bc5341fbb3812081631cbff6.setIcon(icon_e48f4c5eca0a56c490875793300be260);
var marker_c28a865e9a927665e427928df973825d = L.marker(
[27.0386894, 49.61612214],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_b395d2806900969c4e57b05ce5f9b546 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6dfbebc98dbdac44a81e28a11300c6d2 = L.popup({
"maxWidth": 320,
});
var html_022079ba6a370c0bb2d83f07a5c6f688 = $(`<div id="html_022079ba6a370c0bb2d83f07a5c6f688" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة هدف الطاقة الدولية<br> <b>الرقم الموحد:</b> 7010888084<br> <b>السجل التجاري:</b> 2055122026<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0386894,49.61612214" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6dfbebc98dbdac44a81e28a11300c6d2.setContent(html_022079ba6a370c0bb2d83f07a5c6f688);
marker_c28a865e9a927665e427928df973825d.bindPopup(popup_6dfbebc98dbdac44a81e28a11300c6d2)
;
marker_c28a865e9a927665e427928df973825d.setIcon(icon_b395d2806900969c4e57b05ce5f9b546);
var marker_f842104bfe93df54fe9f681f72383ee4 = L.marker(
[27.03795898, 49.50368163],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_a3fca3457b1719b3da184cdceb319137 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_2e0f469855fcd25f0c58c75dc2e320b4 = L.popup({
"maxWidth": 320,
});
var html_3c24dbd03d9843a52c914bd48534f507 = $(`<div id="html_3c24dbd03d9843a52c914bd48534f507" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع الجبيل هت لتشكيل المعادن<br> <b>الرقم الموحد:</b> 7011153538<br> <b>السجل التجاري:</b> 2055007891<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.03795898,49.50368163" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_2e0f469855fcd25f0c58c75dc2e320b4.setContent(html_3c24dbd03d9843a52c914bd48534f507);
marker_f842104bfe93df54fe9f681f72383ee4.bindPopup(popup_2e0f469855fcd25f0c58c75dc2e320b4)
;
marker_f842104bfe93df54fe9f681f72383ee4.setIcon(icon_a3fca3457b1719b3da184cdceb319137);
var marker_dac65bd0d88f6494579261e4b699cd43 = L.marker(
[27.04604118, 49.5140155],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_88ad914e9f2da38a717ac89573db4410 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_d94176bc6c7e392e501f3a11bd57d275 = L.popup({
"maxWidth": 320,
});
var html_e3bd701e87dc256a7510f5a24fdb6522 = $(`<div id="html_e3bd701e87dc256a7510f5a24fdb6522" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة العمارة العالمية للتجارة والمقاولات<br> <b>الرقم الموحد:</b> 7001558985<br> <b>السجل التجاري:</b> 2055003030<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.04604118,49.5140155" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_d94176bc6c7e392e501f3a11bd57d275.setContent(html_e3bd701e87dc256a7510f5a24fdb6522);
marker_dac65bd0d88f6494579261e4b699cd43.bindPopup(popup_d94176bc6c7e392e501f3a11bd57d275)
;
marker_dac65bd0d88f6494579261e4b699cd43.setIcon(icon_88ad914e9f2da38a717ac89573db4410);
var marker_332cfdeb8446c7f4e5fd68b88883505b = L.marker(
[27.0449740808276, 49.509979853190096],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_8063b84247c5e4aa7faa473f2ff6836a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_61d0e56885c2fbfff486f0f5e40bbe9d = L.popup({
"maxWidth": 320,
});
var html_e4304c8f5b0e292459886df6783dac26 = $(`<div id="html_e4304c8f5b0e292459886df6783dac26" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة اف اس اليوت العربيةالسعودية المحدودة<br> <b>الرقم الموحد:</b> 7001626279<br> <b>السجل التجاري:</b> 2055011939<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0449740808276,49.509979853190096" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_61d0e56885c2fbfff486f0f5e40bbe9d.setContent(html_e4304c8f5b0e292459886df6783dac26);
marker_332cfdeb8446c7f4e5fd68b88883505b.bindPopup(popup_61d0e56885c2fbfff486f0f5e40bbe9d)
;
marker_332cfdeb8446c7f4e5fd68b88883505b.setIcon(icon_8063b84247c5e4aa7faa473f2ff6836a);
var marker_efa4c0dab831bbdf1e4b6a168fcc12ce = L.marker(
[27.0748726550912, 49.5538165782707],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_4d562cbeda2bfe1931e4c7c7cb013898 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_9c70c807acc9e204f83fc3c9016a8f20 = L.popup({
"maxWidth": 320,
});
var html_1031f64b3b9fef2cabaa8eab1c73d409 = $(`<div id="html_1031f64b3b9fef2cabaa8eab1c73d409" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> المصنع العربي لتشكيل المعادن<br> <b>الرقم الموحد:</b> 7012169814<br> <b>السجل التجاري:</b> 2055000580<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0748726550912,49.5538165782707" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_9c70c807acc9e204f83fc3c9016a8f20.setContent(html_1031f64b3b9fef2cabaa8eab1c73d409);
marker_efa4c0dab831bbdf1e4b6a168fcc12ce.bindPopup(popup_9c70c807acc9e204f83fc3c9016a8f20)
;
marker_efa4c0dab831bbdf1e4b6a168fcc12ce.setIcon(icon_4d562cbeda2bfe1931e4c7c7cb013898);
var marker_d7c7ef9bf2d5e76c4c2e14733d7ded5a = L.marker(
[27.0366296029113, 49.505919745707295],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_0a553d8efcb62b7e17b0a9f6095c81b0 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_78749bc3a0383192b9101098962cc6c3 = L.popup({
"maxWidth": 320,
});
var html_4b169ee23eda189df3f4a2de9ab1035a = $(`<div id="html_4b169ee23eda189df3f4a2de9ab1035a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ضمن البناء للمقاولات العامة<br> <b>الرقم الموحد:</b> 7009977336<br> <b>السجل التجاري:</b> 2055104968<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0366296029113,49.505919745707295" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_78749bc3a0383192b9101098962cc6c3.setContent(html_4b169ee23eda189df3f4a2de9ab1035a);
marker_d7c7ef9bf2d5e76c4c2e14733d7ded5a.bindPopup(popup_78749bc3a0383192b9101098962cc6c3)
;
marker_d7c7ef9bf2d5e76c4c2e14733d7ded5a.setIcon(icon_0a553d8efcb62b7e17b0a9f6095c81b0);
var marker_13378abf6f943250bfcdfc98af2508a2 = L.marker(
[27.04165815, 49.51165867],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_f1e2242f780e354502af3fa6199c4114 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1e639b6aa95c87926b639ade80324ba6 = L.popup({
"maxWidth": 320,
});
var html_40b6b9d51a3862ba0ee9ea002a69976e = $(`<div id="html_40b6b9d51a3862ba0ee9ea002a69976e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة آي بلاست السعودية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7004127721<br> <b>السجل التجاري:</b> 2055123350<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.04165815,49.51165867" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1e639b6aa95c87926b639ade80324ba6.setContent(html_40b6b9d51a3862ba0ee9ea002a69976e);
marker_13378abf6f943250bfcdfc98af2508a2.bindPopup(popup_1e639b6aa95c87926b639ade80324ba6)
;
marker_13378abf6f943250bfcdfc98af2508a2.setIcon(icon_f1e2242f780e354502af3fa6199c4114);
var marker_a03462cab31e73abefddded242086358 = L.marker(
[27.023642764202705, 49.5392302857211],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_4b41859c814c6435ed5dcfe5b8d3a758 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_c7834d0416e01abb1d043c781ee44a2f = L.popup({
"maxWidth": 320,
});
var html_9288271cccd8e95f828c9ee881d47d06 = $(`<div id="html_9288271cccd8e95f828c9ee881d47d06" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة السعودي للطابوق الخلوي<br> <b>الرقم الموحد:</b> 7012393380<br> <b>السجل التجاري:</b> 2055006699<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.023642764202705,49.5392302857211" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_c7834d0416e01abb1d043c781ee44a2f.setContent(html_9288271cccd8e95f828c9ee881d47d06);
marker_a03462cab31e73abefddded242086358.bindPopup(popup_c7834d0416e01abb1d043c781ee44a2f)
;
marker_a03462cab31e73abefddded242086358.setIcon(icon_4b41859c814c6435ed5dcfe5b8d3a758);
var marker_7617c6a5ab8d93e756e0f79eeaf75d56 = L.marker(
[27.04637524751285, 49.53490071568304],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_6e5d6d1a32c4870891e86ce3a636e78f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f1242f29d1f9a8be5ed4d78e8b950b68 = L.popup({
"maxWidth": 320,
});
var html_3b2eff8355a882f3678f7a681a8aa57c = $(`<div id="html_3b2eff8355a882f3678f7a681a8aa57c" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> الشركة العالمية للأنابيب<br> <b>الرقم الموحد:</b> 7001615462<br> <b>السجل التجاري:</b> 2055011330<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.04637524751285,49.53490071568304" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f1242f29d1f9a8be5ed4d78e8b950b68.setContent(html_3b2eff8355a882f3678f7a681a8aa57c);
marker_7617c6a5ab8d93e756e0f79eeaf75d56.bindPopup(popup_f1242f29d1f9a8be5ed4d78e8b950b68)
;
marker_7617c6a5ab8d93e756e0f79eeaf75d56.setIcon(icon_6e5d6d1a32c4870891e86ce3a636e78f);
var marker_bff2a73449dafe673650b0479b5d648f = L.marker(
[27.0775770836944, 49.5563001136379],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_17e9229ffdd921cede8ce4fcaac007c6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_94b5ef19a188b12a8bbbefba2e84310c = L.popup({
"maxWidth": 320,
});
var html_fa230c41494b5d5dd7cbbde8a572aadd = $(`<div id="html_fa230c41494b5d5dd7cbbde8a572aadd" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة مصنع الزاهد لشبكات حديد التسليح وتشكيل القضبان الحديدية<br> <b>الرقم الموحد:</b> 7012926023<br> <b>السجل التجاري:</b> 2055002926<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0775770836944,49.5563001136379" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_94b5ef19a188b12a8bbbefba2e84310c.setContent(html_fa230c41494b5d5dd7cbbde8a572aadd);
marker_bff2a73449dafe673650b0479b5d648f.bindPopup(popup_94b5ef19a188b12a8bbbefba2e84310c)
;
marker_bff2a73449dafe673650b0479b5d648f.setIcon(icon_17e9229ffdd921cede8ce4fcaac007c6);
var marker_95d376bb64999bdf57b8bf84c7f25933 = L.marker(
[27.086109694083095, 49.554711172329],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_333b641ccb3c3c04014b29eb08ad7add = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_dfe43c27b9395f85cdaeb7c4fb8f0eb9 = L.popup({
"maxWidth": 320,
});
var html_9160c2c70a1f1b3f3743de5b73a201c2 = $(`<div id="html_9160c2c70a1f1b3f3743de5b73a201c2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة نبراس الوطنية للتقنية المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7004728783<br> <b>السجل التجاري:</b> 2055123889<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.086109694083095,49.554711172329" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_dfe43c27b9395f85cdaeb7c4fb8f0eb9.setContent(html_9160c2c70a1f1b3f3743de5b73a201c2);
marker_95d376bb64999bdf57b8bf84c7f25933.bindPopup(popup_dfe43c27b9395f85cdaeb7c4fb8f0eb9)
;
marker_95d376bb64999bdf57b8bf84c7f25933.setIcon(icon_333b641ccb3c3c04014b29eb08ad7add);
var marker_6b78eb90daa0146f90a00257b127ea13 = L.marker(
[27.06629473, 49.54163022],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_b2318dcaa9336f20cf0fef481f938d48 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_73f7df3aa585292d777e01fc4415e6b1 = L.popup({
"maxWidth": 320,
});
var html_450f7cd1b4cc3e1eaf4a1fd17e350677 = $(`<div id="html_450f7cd1b4cc3e1eaf4a1fd17e350677" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع أسس التقدم للصناعات البلاستيكية شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001803613<br> <b>السجل التجاري:</b> 2050091917<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.06629473,49.54163022" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_73f7df3aa585292d777e01fc4415e6b1.setContent(html_450f7cd1b4cc3e1eaf4a1fd17e350677);
marker_6b78eb90daa0146f90a00257b127ea13.bindPopup(popup_73f7df3aa585292d777e01fc4415e6b1)
;
marker_6b78eb90daa0146f90a00257b127ea13.setIcon(icon_b2318dcaa9336f20cf0fef481f938d48);
var marker_f77b0610efa01957730bd56cecdaf197 = L.marker(
[27.0796698820001, 49.5553292450002],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_1bade7ec83a7266cea628dadd51b894f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_f20da3a51c36ca75b251e25585787581 = L.popup({
"maxWidth": 320,
});
var html_091a5bba4568f934b8de40d3dbbf1918 = $(`<div id="html_091a5bba4568f934b8de40d3dbbf1918" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة بايرن انفستمنت السعودية المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001546444<br> <b>السجل التجاري:</b> 2050058637<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0796698820001,49.5553292450002" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_f20da3a51c36ca75b251e25585787581.setContent(html_091a5bba4568f934b8de40d3dbbf1918);
marker_f77b0610efa01957730bd56cecdaf197.bindPopup(popup_f20da3a51c36ca75b251e25585787581)
;
marker_f77b0610efa01957730bd56cecdaf197.setIcon(icon_1bade7ec83a7266cea628dadd51b894f);
var marker_0f6319fdda8a1a85ca63f8fba834a8e4 = L.marker(
[27.072785947108695, 49.5521692877835],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_3cba4da6336413ad4de02b7f37cdb9f7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_5d01afaa46adb14f1aa234059db45cd0 = L.popup({
"maxWidth": 320,
});
var html_b53c08f8207fd415482f900213559c18 = $(`<div id="html_b53c08f8207fd415482f900213559c18" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ام كي لانظمة حماية الكابلات السعودية المحدوده شركة الشخص الواحد<br> <b>الرقم الموحد:</b> 7000906623<br> <b>السجل التجاري:</b> 2055001475<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.072785947108695,49.5521692877835" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_5d01afaa46adb14f1aa234059db45cd0.setContent(html_b53c08f8207fd415482f900213559c18);
marker_0f6319fdda8a1a85ca63f8fba834a8e4.bindPopup(popup_5d01afaa46adb14f1aa234059db45cd0)
;
marker_0f6319fdda8a1a85ca63f8fba834a8e4.setIcon(icon_3cba4da6336413ad4de02b7f37cdb9f7);
var marker_518083e9d6c42f2088f021dffbc78ddb = L.marker(
[27.0778082860724, 49.5533428509355],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_eb835fc802d929add08b6d6c19252c7c = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_30d5573949a0ddfc981b2bab909c513e = L.popup({
"maxWidth": 320,
});
var html_04ded2356886b8ea3f796cd77609057e = $(`<div id="html_04ded2356886b8ea3f796cd77609057e" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة النظافة الفنية<br> <b>الرقم الموحد:</b> 7001604938<br> <b>السجل التجاري:</b> 2055024585<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0778082860724,49.5533428509355" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_30d5573949a0ddfc981b2bab909c513e.setContent(html_04ded2356886b8ea3f796cd77609057e);
marker_518083e9d6c42f2088f021dffbc78ddb.bindPopup(popup_30d5573949a0ddfc981b2bab909c513e)
;
marker_518083e9d6c42f2088f021dffbc78ddb.setIcon(icon_eb835fc802d929add08b6d6c19252c7c);
var marker_b6b432aa16a591f11179c1a2dd790eb1 = L.marker(
[27.0844736997307, 49.559861508067],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_1cb7a2e2b9c55c0935e93fb92692c2be = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_77ca8ddf283e497e69f9d8dc4b4c242e = L.popup({
"maxWidth": 320,
});
var html_e2c531a4e1dbc6b1ab01c393f87a4819 = $(`<div id="html_e2c531a4e1dbc6b1ab01c393f87a4819" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الزامل للصناعات الغذائية المحدودة<br> <b>الرقم الموحد:</b> 7000682422<br> <b>السجل التجاري:</b> 2055000170<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0844736997307,49.559861508067" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_77ca8ddf283e497e69f9d8dc4b4c242e.setContent(html_e2c531a4e1dbc6b1ab01c393f87a4819);
marker_b6b432aa16a591f11179c1a2dd790eb1.bindPopup(popup_77ca8ddf283e497e69f9d8dc4b4c242e)
;
marker_b6b432aa16a591f11179c1a2dd790eb1.setIcon(icon_1cb7a2e2b9c55c0935e93fb92692c2be);
var marker_d6a37bf16a4b9abc102fe10ba19d51a4 = L.marker(
[27.07371854, 49.55420574],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_467c8e12564f9c9fdcbd57844c3335c3 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_4bd5786ed60562c0fed641c46aeb5045 = L.popup({
"maxWidth": 320,
});
var html_335cc8094a906d784f4a8be33d31abad = $(`<div id="html_335cc8094a906d784f4a8be33d31abad" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الرشيد درسر للصمامات والاجهزه المحدودة<br> <b>الرقم الموحد:</b> 7000681192<br> <b>السجل التجاري:</b> 2055001111<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.07371854,49.55420574" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_4bd5786ed60562c0fed641c46aeb5045.setContent(html_335cc8094a906d784f4a8be33d31abad);
marker_d6a37bf16a4b9abc102fe10ba19d51a4.bindPopup(popup_4bd5786ed60562c0fed641c46aeb5045)
;
marker_d6a37bf16a4b9abc102fe10ba19d51a4.setIcon(icon_467c8e12564f9c9fdcbd57844c3335c3);
var marker_f07a649e7abb96c11f0b41f88ae01964 = L.marker(
[27.074325340771, 49.5450111209606],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_4d4731334bcd8733242cdb811822e25d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_15ffe62e396afae037b19ec79f4c8ec4 = L.popup({
"maxWidth": 320,
});
var html_53983b54e19b6e1537dd1e678f375bc1 = $(`<div id="html_53983b54e19b6e1537dd1e678f375bc1" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الخطى السريعة للمقاولات<br> <b>الرقم الموحد:</b> 7014552371<br> <b>السجل التجاري:</b> 2055102088<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.074325340771,49.5450111209606" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_15ffe62e396afae037b19ec79f4c8ec4.setContent(html_53983b54e19b6e1537dd1e678f375bc1);
marker_f07a649e7abb96c11f0b41f88ae01964.bindPopup(popup_15ffe62e396afae037b19ec79f4c8ec4)
;
marker_f07a649e7abb96c11f0b41f88ae01964.setIcon(icon_4d4731334bcd8733242cdb811822e25d);
var marker_94f069a347f24393462927fd184fa20f = L.marker(
[27.04490515, 49.51968764],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_682a304fdcfe7d76d69b3298f024cce1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_76843b2d1fc6ae8239651d86fd60b422 = L.popup({
"maxWidth": 320,
});
var html_78080532c91578282fd7b25aae1dd8ce = $(`<div id="html_78080532c91578282fd7b25aae1dd8ce" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> الشركة المتحده لزيوت التشحيم المعالجه مساهمة مقفلة<br> <b>الرقم الموحد:</b> 7001397103<br> <b>السجل التجاري:</b> 2055004390<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.04490515,49.51968764" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_76843b2d1fc6ae8239651d86fd60b422.setContent(html_78080532c91578282fd7b25aae1dd8ce);
marker_94f069a347f24393462927fd184fa20f.bindPopup(popup_76843b2d1fc6ae8239651d86fd60b422)
;
marker_94f069a347f24393462927fd184fa20f.setIcon(icon_682a304fdcfe7d76d69b3298f024cce1);
var marker_b55c771ee17f2a750306e6b60ba12f34 = L.marker(
[27.06254308, 49.53263163],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_ac18b2bd7090b54cecbb34cfd3274a19 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_35c3b2999f7c03d0eea569973bfb2a29 = L.popup({
"maxWidth": 320,
});
var html_6e8c499a6d8287ea74faca905ffd0095 = $(`<div id="html_6e8c499a6d8287ea74faca905ffd0095" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> الشركة السعوديه لتصنيع مواد البناء شركة شخص واحد السعودية لتصنيع مواد البناء شركة شخص واحد<br> <b>الرقم الموحد:</b> 7000890413<br> <b>السجل التجاري:</b> 2055000979<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.06254308,49.53263163" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_35c3b2999f7c03d0eea569973bfb2a29.setContent(html_6e8c499a6d8287ea74faca905ffd0095);
marker_b55c771ee17f2a750306e6b60ba12f34.bindPopup(popup_35c3b2999f7c03d0eea569973bfb2a29)
;
marker_b55c771ee17f2a750306e6b60ba12f34.setIcon(icon_ac18b2bd7090b54cecbb34cfd3274a19);
var marker_7070c11016bcc75bcfb34ab4e5c6e762 = L.marker(
[27.0836089493662, 49.5576392745025],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_855a714b62fc8a4d98c4b3a2b0261f59 = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_8f2c3dc73e938a54ed3f85277b79d4b2 = L.popup({
"maxWidth": 320,
});
var html_12049998d273906657a3bc262f9f8ab8 = $(`<div id="html_12049998d273906657a3bc262f9f8ab8" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة معالم الاصيل لقطع غيار السيارات<br> <b>الرقم الموحد:</b> 7015542041<br> <b>السجل التجاري:</b> 2055125997<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=27.0836089493662,49.5576392745025" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_8f2c3dc73e938a54ed3f85277b79d4b2.setContent(html_12049998d273906657a3bc262f9f8ab8);
marker_7070c11016bcc75bcfb34ab4e5c6e762.bindPopup(popup_8f2c3dc73e938a54ed3f85277b79d4b2)
;
marker_7070c11016bcc75bcfb34ab4e5c6e762.setIcon(icon_855a714b62fc8a4d98c4b3a2b0261f59);
var marker_daf69cd6318c9f10fef86aaeb007a10d = L.marker(
[27.0801937327172, 49.5561418097047],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_0674165bf4422e139ad3dd8b44e46c86 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ff1f82be6c997462137aac22b3aa776e = L.popup({
"maxWidth": 320,
});
var html_b3781e1408c500332f15cc2ccf7a0306 = $(`<div id="html_b3781e1408c500332f15cc2ccf7a0306" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مؤسسة الآليات الصناعيه للتجارة<br> <b>الرقم الموحد:</b> 7014873884<br> <b>السجل التجاري:</b> 2055002921<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0801937327172,49.5561418097047" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ff1f82be6c997462137aac22b3aa776e.setContent(html_b3781e1408c500332f15cc2ccf7a0306);
marker_daf69cd6318c9f10fef86aaeb007a10d.bindPopup(popup_ff1f82be6c997462137aac22b3aa776e)
;
marker_daf69cd6318c9f10fef86aaeb007a10d.setIcon(icon_0674165bf4422e139ad3dd8b44e46c86);
var marker_dc1625b3b9e56c78cb277e69a3aa4cd8 = L.marker(
[27.0396156, 49.50450783],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_4df42fd43db394a9e3fdc418fa2756ec = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6f80ea9af3d8d2c422b929c74d3449f6 = L.popup({
"maxWidth": 320,
});
var html_8dc40f7fdd01f681ff7c8e05d3181cea = $(`<div id="html_8dc40f7fdd01f681ff7c8e05d3181cea" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع اسيا للحديد المحدودة<br> <b>الرقم الموحد:</b> 7001491773<br> <b>السجل التجاري:</b> 2055023084<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0396156,49.50450783" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6f80ea9af3d8d2c422b929c74d3449f6.setContent(html_8dc40f7fdd01f681ff7c8e05d3181cea);
marker_dc1625b3b9e56c78cb277e69a3aa4cd8.bindPopup(popup_6f80ea9af3d8d2c422b929c74d3449f6)
;
marker_dc1625b3b9e56c78cb277e69a3aa4cd8.setIcon(icon_4df42fd43db394a9e3fdc418fa2756ec);
var marker_798af8b9489ddf8e978b3a9818b67ea3 = L.marker(
[27.073927, 49.5449247],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_aad3886d5918a6bdb43cfe467fd707f7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ab5b647eecd56386c6fd0448db8406b5 = L.popup({
"maxWidth": 320,
});
var html_4db2d569c2cde5c6d459dd86ba41b37b = $(`<div id="html_4db2d569c2cde5c6d459dd86ba41b37b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة فرع شركة يوكوجاوا العربية السعودية للصناعة<br> <b>الرقم الموحد:</b> 7001644546<br> <b>السجل التجاري:</b> 2059101606<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.073927,49.5449247" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ab5b647eecd56386c6fd0448db8406b5.setContent(html_4db2d569c2cde5c6d459dd86ba41b37b);
marker_798af8b9489ddf8e978b3a9818b67ea3.bindPopup(popup_ab5b647eecd56386c6fd0448db8406b5)
;
marker_798af8b9489ddf8e978b3a9818b67ea3.setIcon(icon_aad3886d5918a6bdb43cfe467fd707f7);
var marker_da6183afaf23d3bf28dd57a3b9e60ee4 = L.marker(
[27.042536899452905, 49.5844342546192],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_cd8d59655f5d1be1d1615a4090e000ef = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6a7568f8e1b9b7f838a2e88cb2a02e04 = L.popup({
"maxWidth": 320,
});
var html_4c48916b07234eb4d3f3c408bffcd171 = $(`<div id="html_4c48916b07234eb4d3f3c408bffcd171" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة أم أي أ القابضة وشريكه المحدودة<br> <b>الرقم الموحد:</b> 7001515357<br> <b>السجل التجاري:</b> 2051034195<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.042536899452905,49.5844342546192" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6a7568f8e1b9b7f838a2e88cb2a02e04.setContent(html_4c48916b07234eb4d3f3c408bffcd171);
marker_da6183afaf23d3bf28dd57a3b9e60ee4.bindPopup(popup_6a7568f8e1b9b7f838a2e88cb2a02e04)
;
marker_da6183afaf23d3bf28dd57a3b9e60ee4.setIcon(icon_cd8d59655f5d1be1d1615a4090e000ef);
var marker_eb8906944a82e6fc382df183065dd600 = L.marker(
[27.08361503, 49.56399968],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_90969d1559af7635822f4ed0591de0fa = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b534c68a718f8e30342263d0e725a591 = L.popup({
"maxWidth": 320,
});
var html_93d1caf39081559675045da9935882bc = $(`<div id="html_93d1caf39081559675045da9935882bc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة التوكيلات العالمية للسيارات المحدودة<br> <b>الرقم الموحد:</b> 7018062765<br> <b>السجل التجاري:</b> 2055004025<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.08361503,49.56399968" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b534c68a718f8e30342263d0e725a591.setContent(html_93d1caf39081559675045da9935882bc);
marker_eb8906944a82e6fc382df183065dd600.bindPopup(popup_b534c68a718f8e30342263d0e725a591)
;
marker_eb8906944a82e6fc382df183065dd600.setIcon(icon_90969d1559af7635822f4ed0591de0fa);
var marker_696242c643629dba4f04120e40212e9d = L.marker(
[27.0713853166569, 49.5479895701935],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_dccea69351447e21336e5f8d87a494c1 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_ada8d42590423a16acbca520c9fe02e3 = L.popup({
"maxWidth": 320,
});
var html_3f56d8d81f25db5759acc8a488157cd9 = $(`<div id="html_3f56d8d81f25db5759acc8a488157cd9" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع استناد للصناعات<br> <b>الرقم الموحد:</b> 7014589662<br> <b>السجل التجاري:</b> 2055002207<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0713853166569,49.5479895701935" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_ada8d42590423a16acbca520c9fe02e3.setContent(html_3f56d8d81f25db5759acc8a488157cd9);
marker_696242c643629dba4f04120e40212e9d.bindPopup(popup_ada8d42590423a16acbca520c9fe02e3)
;
marker_696242c643629dba4f04120e40212e9d.setIcon(icon_dccea69351447e21336e5f8d87a494c1);
var marker_dde1931a029b2c0be5c9a9baa4105b05 = L.marker(
[26.98012451235327, 49.515377992656255],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_9242d1a776b09a6c328d6febacb9bd59 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_bc2a85e853c22580fce176880d8e3c7d = L.popup({
"maxWidth": 320,
});
var html_ff7bdf0d735b389361c3a94d455b01ea = $(`<div id="html_ff7bdf0d735b389361c3a94d455b01ea" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع عبدالرحمن العطيشان وابناءه المحدودة شركة شخص واحد<br> <b>الرقم الموحد:</b> 7007976322<br> <b>السجل التجاري:</b> 2055026370<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=26.98012451235327,49.515377992656255" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_bc2a85e853c22580fce176880d8e3c7d.setContent(html_ff7bdf0d735b389361c3a94d455b01ea);
marker_dde1931a029b2c0be5c9a9baa4105b05.bindPopup(popup_bc2a85e853c22580fce176880d8e3c7d)
;
marker_dde1931a029b2c0be5c9a9baa4105b05.setIcon(icon_9242d1a776b09a6c328d6febacb9bd59);
var marker_059289dc60ede9ed265a64b5ff71e49f = L.marker(
[27.08151868, 49.56408093],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_3296e40284fad0fd9728ef5af5c57a35 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_edd81e707a259130384624c370edfb79 = L.popup({
"maxWidth": 320,
});
var html_87025a236280dc7dc7d649e9a346e3cc = $(`<div id="html_87025a236280dc7dc7d649e9a346e3cc" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع الزاهد لبودرة رمل السيليكا<br> <b>الرقم الموحد:</b> 7013881698<br> <b>السجل التجاري:</b> 2055009285<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.08151868,49.56408093" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_edd81e707a259130384624c370edfb79.setContent(html_87025a236280dc7dc7d649e9a346e3cc);
marker_059289dc60ede9ed265a64b5ff71e49f.bindPopup(popup_edd81e707a259130384624c370edfb79)
;
marker_059289dc60ede9ed265a64b5ff71e49f.setIcon(icon_3296e40284fad0fd9728ef5af5c57a35);
var marker_877cc9b7723080b5a408a2cb60d0cc1f = L.marker(
[27.00828987, 49.54160001],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_c4e95fc380ce87b6ee039b8bdc79531d = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_43e9806fe6462dd2538e42931810caaf = L.popup({
"maxWidth": 320,
});
var html_b8f0bbff8312049030aa25fefe8b387b = $(`<div id="html_b8f0bbff8312049030aa25fefe8b387b" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة زين للصناعات<br> <b>الرقم الموحد:</b> 7013617316<br> <b>السجل التجاري:</b> 2055003373<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.00828987,49.54160001" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_43e9806fe6462dd2538e42931810caaf.setContent(html_b8f0bbff8312049030aa25fefe8b387b);
marker_877cc9b7723080b5a408a2cb60d0cc1f.bindPopup(popup_43e9806fe6462dd2538e42931810caaf)
;
marker_877cc9b7723080b5a408a2cb60d0cc1f.setIcon(icon_c4e95fc380ce87b6ee039b8bdc79531d);
var marker_86b46104182acfc4d9257d1e51af7978 = L.marker(
[27.0815782326038, 49.5579272239333],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_10b5dc63a65d3778eeca0b4848422b13 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_a7a64fc5f4dc6d266a093b5e8715ab13 = L.popup({
"maxWidth": 320,
});
var html_9f5bb06d1cc04d8a2e00e418ec838f80 = $(`<div id="html_9f5bb06d1cc04d8a2e00e418ec838f80" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة ثيرمال إير الصناعيه العربيه المحدودة<br> <b>الرقم الموحد:</b> 7000325220<br> <b>السجل التجاري:</b> 2055000940<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0815782326038,49.5579272239333" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_a7a64fc5f4dc6d266a093b5e8715ab13.setContent(html_9f5bb06d1cc04d8a2e00e418ec838f80);
marker_86b46104182acfc4d9257d1e51af7978.bindPopup(popup_a7a64fc5f4dc6d266a093b5e8715ab13)
;
marker_86b46104182acfc4d9257d1e51af7978.setIcon(icon_10b5dc63a65d3778eeca0b4848422b13);
var marker_fb2094533a2fece607d68fb8f33bfcc9 = L.marker(
[27.04212384741, 49.4998713678018],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_67642c249d47db17b559aa2e2077ab99 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6b73466d2205826e0fa6b7eb9e5d9beb = L.popup({
"maxWidth": 320,
});
var html_c5050f4f488d0d75617538d0b0a3f0b5 = $(`<div id="html_c5050f4f488d0d75617538d0b0a3f0b5" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الخليج للصناعات الثقيلة<br> <b>الرقم الموحد:</b> 7000728159<br> <b>السجل التجاري:</b> 2055003692<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.04212384741,49.4998713678018" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6b73466d2205826e0fa6b7eb9e5d9beb.setContent(html_c5050f4f488d0d75617538d0b0a3f0b5);
marker_fb2094533a2fece607d68fb8f33bfcc9.bindPopup(popup_6b73466d2205826e0fa6b7eb9e5d9beb)
;
marker_fb2094533a2fece607d68fb8f33bfcc9.setIcon(icon_67642c249d47db17b559aa2e2077ab99);
var marker_3442166e5b8db8bd2baed3a9950e53e6 = L.marker(
[27.012677479999997, 49.5427805],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_e80b43efdff78657bf8bf501b2211d3f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fb4548d70a810aea46d8be011d3d39db = L.popup({
"maxWidth": 320,
});
var html_aba3d6d189cb02bf1b4187cb490d2b7f = $(`<div id="html_aba3d6d189cb02bf1b4187cb490d2b7f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة الجبيل للصناعات الكيماوية جنا شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001397012<br> <b>السجل التجاري:</b> 2055004384<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.01273748,49.5427805" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fb4548d70a810aea46d8be011d3d39db.setContent(html_aba3d6d189cb02bf1b4187cb490d2b7f);
marker_3442166e5b8db8bd2baed3a9950e53e6.bindPopup(popup_fb4548d70a810aea46d8be011d3d39db)
;
marker_3442166e5b8db8bd2baed3a9950e53e6.setIcon(icon_e80b43efdff78657bf8bf501b2211d3f);
var marker_cb822fc4a8a509d26493b95ded9167c2 = L.marker(
[27.0794215475512, 49.55499386200751],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_ab391f535992c2c27ade18dcfbf27207 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_7baf528aa7c5041caa575ba94c3040cd = L.popup({
"maxWidth": 320,
});
var html_861ba3d33adb8158b1e47b8d348e6bf6 = $(`<div id="html_861ba3d33adb8158b1e47b8d348e6bf6" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> الشركة العربية الموحدة للتجارة<br> <b>الرقم الموحد:</b> 7010460959<br> <b>السجل التجاري:</b> 2055001616<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0794215475512,49.55499386200751" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_7baf528aa7c5041caa575ba94c3040cd.setContent(html_861ba3d33adb8158b1e47b8d348e6bf6);
marker_cb822fc4a8a509d26493b95ded9167c2.bindPopup(popup_7baf528aa7c5041caa575ba94c3040cd)
;
marker_cb822fc4a8a509d26493b95ded9167c2.setIcon(icon_ab391f535992c2c27ade18dcfbf27207);
var marker_161c383fe188abc967cc889ae2df3022 = L.marker(
[27.04648842, 49.5113534],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_3dd350b3893b08b4b9bb649307fb4d6a = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_cccc77a4b0e6d2005fdcfd52ef1a17c0 = L.popup({
"maxWidth": 320,
});
var html_b7d674416f3c5c1a846a2f4d073815a2 = $(`<div id="html_b7d674416f3c5c1a846a2f4d073815a2" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع رواد الصلب للحديد<br> <b>الرقم الموحد:</b> 7011559932<br> <b>السجل التجاري:</b> 2055008917<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.04648842,49.5113534" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_cccc77a4b0e6d2005fdcfd52ef1a17c0.setContent(html_b7d674416f3c5c1a846a2f4d073815a2);
marker_161c383fe188abc967cc889ae2df3022.bindPopup(popup_cccc77a4b0e6d2005fdcfd52ef1a17c0)
;
marker_161c383fe188abc967cc889ae2df3022.setIcon(icon_3dd350b3893b08b4b9bb649307fb4d6a);
var marker_923f3508a39065c0ce2914ab406c88fd = L.marker(
[27.05036027, 49.51306285],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_410bc4275cb59071392e818e7c067bcf = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_b6f40bf25f9ee0b6beb27c2239005fd8 = L.popup({
"maxWidth": 320,
});
var html_86e4badc4ad67b399d6dbdfa541bbe50 = $(`<div id="html_86e4badc4ad67b399d6dbdfa541bbe50" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع النجم الاحمر للصناعة<br> <b>الرقم الموحد:</b> 7006476266<br> <b>السجل التجاري:</b> 2055022486<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=27.05036027,49.51306285" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_b6f40bf25f9ee0b6beb27c2239005fd8.setContent(html_86e4badc4ad67b399d6dbdfa541bbe50);
marker_923f3508a39065c0ce2914ab406c88fd.bindPopup(popup_b6f40bf25f9ee0b6beb27c2239005fd8)
;
marker_923f3508a39065c0ce2914ab406c88fd.setIcon(icon_410bc4275cb59071392e818e7c067bcf);
var marker_c424b6e91a46458e4be42315dc6e8ec6 = L.marker(
[27.0455583195414, 49.5450648755303],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_ecac9ec98a2b5b98f2c8e6bbba05720f = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_e25130eecef980ce13d4d5644dea2d97 = L.popup({
"maxWidth": 320,
});
var html_f6a80e7d55d749368766f2984479861f = $(`<div id="html_f6a80e7d55d749368766f2984479861f" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> مصنع الشركة الخليجية للمواد الكيماوية المضافة<br> <b>الرقم الموحد:</b> 7001400782<br> <b>السجل التجاري:</b> 2055004513<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0455583195414,49.5450648755303" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_e25130eecef980ce13d4d5644dea2d97.setContent(html_f6a80e7d55d749368766f2984479861f);
marker_c424b6e91a46458e4be42315dc6e8ec6.bindPopup(popup_e25130eecef980ce13d4d5644dea2d97)
;
marker_c424b6e91a46458e4be42315dc6e8ec6.setIcon(icon_ecac9ec98a2b5b98f2c8e6bbba05720f);
var marker_a1dc6547f0132c4d95db47b29cacfc59 = L.marker(
[27.03022035, 49.55992968],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_79d633b72aa0bfb3412f42796d3a2163 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_0f193697260f3723d8d98ef651d21216 = L.popup({
"maxWidth": 320,
});
var html_026011168fd9a2b5c0f1b8ac92c10262 = $(`<div id="html_026011168fd9a2b5c0f1b8ac92c10262" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة هاريس باي السعودية<br> <b>الرقم الموحد:</b> 7001470801<br> <b>السجل التجاري:</b> 2055008500<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.03022035,49.55992968" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_0f193697260f3723d8d98ef651d21216.setContent(html_026011168fd9a2b5c0f1b8ac92c10262);
marker_a1dc6547f0132c4d95db47b29cacfc59.bindPopup(popup_0f193697260f3723d8d98ef651d21216)
;
marker_a1dc6547f0132c4d95db47b29cacfc59.setIcon(icon_79d633b72aa0bfb3412f42796d3a2163);
var marker_b91ab65558fb61f95507ce837a7ccb93 = L.marker(
[27.07470605, 49.54957081],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_b0fbe6ae020fc220415d61ea5dd0a89d = L.AwesomeMarkers.icon(
{
"markerColor": "blue",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_fbd56e2d1c67aadd20bf2b0150c75135 = L.popup({
"maxWidth": 320,
});
var html_d6a17bc00f18613a285a3f5d9879b526 = $(`<div id="html_d6a17bc00f18613a285a3f5d9879b526" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع شركة اوربيتوس العربية المحدودة<br> <b>الرقم الموحد:</b> 7001771653<br> <b>السجل التجاري:</b> 2055017743<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> سنوي فقط<br> <a href="https://www.google.com/maps?q=27.07470605,49.54957081" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_fbd56e2d1c67aadd20bf2b0150c75135.setContent(html_d6a17bc00f18613a285a3f5d9879b526);
marker_b91ab65558fb61f95507ce837a7ccb93.bindPopup(popup_fbd56e2d1c67aadd20bf2b0150c75135)
;
marker_b91ab65558fb61f95507ce837a7ccb93.setIcon(icon_b0fbe6ae020fc220415d61ea5dd0a89d);
var marker_7b7eb8c64df8df1979b32dcaaa11686c = L.marker(
[27.0230811934994, 49.5724247817498],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_e27e8f7a220e9368c33e37dc370a1ce6 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_6db15a87cdd3aac6df4db3b5c9d17680 = L.popup({
"maxWidth": 320,
});
var html_f6ca1c0e693fc172e9c70e4c7c75d93a = $(`<div id="html_f6ca1c0e693fc172e9c70e4c7c75d93a" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة مصنع الطاقة الكامنه<br> <b>الرقم الموحد:</b> 7011744401<br> <b>السجل التجاري:</b> 2051037048<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.0230811934994,49.5724247817498" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_6db15a87cdd3aac6df4db3b5c9d17680.setContent(html_f6ca1c0e693fc172e9c70e4c7c75d93a);
marker_7b7eb8c64df8df1979b32dcaaa11686c.bindPopup(popup_6db15a87cdd3aac6df4db3b5c9d17680)
;
marker_7b7eb8c64df8df1979b32dcaaa11686c.setIcon(icon_e27e8f7a220e9368c33e37dc370a1ce6);
var marker_078696a47f334c3ef0951eea481c68f1 = L.marker(
[27.06405657, 49.53975151],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_dfe3442b04a22b8d23c3bb44f1210204 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_1b3f84425d8c0fb7afce207ee432e66c = L.popup({
"maxWidth": 320,
});
var html_498f2aef69e504271ffa58218d7b8d8d = $(`<div id="html_498f2aef69e504271ffa58218d7b8d8d" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة المصنع السعودي للرافعات وأعمال الحديد المحدودة<br> <b>الرقم الموحد:</b> 7001699763<br> <b>السجل التجاري:</b> 2055004753<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.06405657,49.53975151" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_1b3f84425d8c0fb7afce207ee432e66c.setContent(html_498f2aef69e504271ffa58218d7b8d8d);
marker_078696a47f334c3ef0951eea481c68f1.bindPopup(popup_1b3f84425d8c0fb7afce207ee432e66c)
;
marker_078696a47f334c3ef0951eea481c68f1.setIcon(icon_dfe3442b04a22b8d23c3bb44f1210204);
var marker_cd2e62a238758524d4ebadef7b491017 = L.marker(
[27.078975227479695, 49.5611673420137],
{
}
).addTo(map_13e92794fed140c24ea2c7fcb8cfbe4e);
var icon_be41ceee36b130f0ae4e062fff4926d7 = L.AwesomeMarkers.icon(
{
"markerColor": "red",
"iconColor": "white",
"icon": "info-sign",
"prefix": "glyphicon",
"extraClasses": "fa-rotate-0",
}
);
var popup_77f88825706179ddd5016e1a15d3d60f = L.popup({
"maxWidth": 320,
});
var html_eb43d89323b245180c9327df77c42004 = $(`<div id="html_eb43d89323b245180c9327df77c42004" style="width: 100.0%; height: 100.0%;"> <div style="direction:rtl;font-size:13px;line-height:1.9;"> <b>اسم المنشأة:</b> شركة البترول والكيماويات والتعدين شركة شخص واحد<br> <b>الرقم الموحد:</b> 7001631410<br> <b>السجل التجاري:</b> 2055003728<br> <b>الحي:</b> المصانع<br> <b>نوع المسح:</b> ربعي وسنوي<br> <a href="https://www.google.com/maps?q=27.078975227479695,49.5611673420137" target="_blank">فتح في خرائط جوجل</a> </div> </div>`)[0];
popup_77f88825706179ddd5016e1a15d3d60f.setContent(html_eb43d89323b245180c9327df77c42004);
marker_cd2e62a238758524d4ebadef7b491017.bindPopup(popup_77f88825706179ddd5016e1a15d3d60f)
;
marker_cd2e62a238758524d4ebadef7b491017.setIcon(icon_be41ceee36b130f0ae4e062fff4926d7);
</script>
</html> |