Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save geeksambhu/a2886e571b9ba003023448a0b3cbbf5c to your computer and use it in GitHub Desktop.
Save geeksambhu/a2886e571b9ba003023448a0b3cbbf5c to your computer and use it in GitHub Desktop.
Scrap nepsealpha
  1. install npm

  2. Run mkdir nepsealpha-scrap; cd nepsealpha-scrap; npm init

  3. Install dependencies

npm install csv-writer puppeteer
  1. Run Script
node script.js
const puppeteer = require('puppeteer');
const createCsvWriter = require('csv-writer').createObjectCsvWriter;
(async () => {
const browser = await puppeteer.launch({ headless: true });
const page = await browser.newPage();
await page.setUserAgent('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36');
await page.setViewport({
width: 1440,
height: 900,
deviceScaleFactor: 1,
});
// Navigate to the traded stocks page
await page.goto('https://nepsealpha.com/traded-stocks', { waitUntil: 'networkidle2' });
const extractedData = [];
let hasNextPage = true;
while (hasNextPage) {
const extractedData = [];
// Wait for the table to load
await page.waitForSelector('#DataTables_Table_0');
// Extract stock links and names
const stockData = await page.evaluate(() => {
return Array.from(document.querySelectorAll('#DataTables_Table_0 tbody tr')).map(row => {
const linkElement = row.querySelector('td a');
const link = linkElement ? linkElement.href : null;
const name = linkElement ? linkElement.innerText.trim() : null;
return { link, name };
}).filter(data => data.link && data.link.includes('/stocks/'));
});
console.log(stockData);
// Extract info from each stock link
for (let { link, name } of stockData) {
const stockPage = await browser.newPage();
await stockPage.setUserAgent('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36');
await stockPage.goto(link , { waitUntil: 'networkidle2' });
await stockPage.setViewport({
width: 1440,
height: 900,
deviceScaleFactor: 1,
});
// Extract company general information in tabular form
const companyInfo = await stockPage.evaluate(() => {
const table = document.querySelector('#home > div > div.box-body > div:nth-child(1) > div.col-md-4 > div');
table2 = document.querySelector('#home > div > div.box-body > div:nth-child(1) > div.col-md-5 > div > table');
if (!table) return null;
console.log(table);
rows2 = table2.querySelectorAll('tr');
const rows = table.querySelectorAll('tr');
// rows.concat(rows2);
console.log({rows, rows2});
const info = {};
rows.forEach(row => {
const cols = row.querySelectorAll('td');
if (cols.length === 2) {
const key = cols[0].innerText.trim();
const value = cols[1].innerText.trim();
info[key] = value;
}
});
rows2.forEach(row => {
const cols = row.querySelectorAll('td');
if (cols.length === 2) {
const key = cols[0].innerText.trim();
const value = cols[1].innerText.trim();
info[key] = value;
}
});
return info;
});
extractedData.push({ name, ...companyInfo });
await stockPage.close();
}
// Check if there's a next page
hasNextPage = await page.evaluate(() => {
const nextButton = document.querySelector('#DataTables_Table_0_next');
console.log({nextButton})
if (nextButton && !nextButton.parentElement.classList.contains('disabled')) {
nextButton.click();
// return false;
return true;
}
return false;
});
console.log({hasNextPage})
const csvWriter = createCsvWriter({
path: 'company_info.csv',
header: [
{ id: 'name', title: 'Company Name' },
{ id: 'Promoter Holding', title: 'Promoter Holding' },
{ id: 'Public Holding', title: 'Public Holding' },
{ id: 'Government Holding', title: 'Government Holding' },
{ id: 'Foreign Ownership', title: 'Foreign Ownership' },
{ id: 'Address', title: 'Address' },
{ id: 'Phone', title: 'Phone' },
{ id: 'Fax', title: 'Fax' },
{ id: 'Email', title: 'Email' },
{ id: 'Website', title: 'Website' },
{ id: 'Registrar', title: 'Registrar' },
{ id: 'Listed Shares', title: 'Listed Shares' },
{ id: 'Paid Up Capital', title: 'Paid Up Capital' },
{ id: 'Market Capitalization', title: 'Market Capitalization' },
// Add more fields as necessary
],
append: true
});
// Write records to CSV file
await csvWriter.writeRecords(extractedData);
console.log('CSV file written successfully');
// if (hasNextPage) {
// await page.waitForNavigation({ waitUntil: 'networkidle2' });
// }
}
await browser.close();
// Define the CSV writer
// const csvWriter = createCsvWriter({
// path: 'company_info.csv',
// header: [
// { id: 'name', title: 'Company Name' },
// { id: 'Promoter Holding', title: 'Promoter Holding' },
// { id: 'Public Holding', title: 'Public Holding' },
// { id: 'Government Holding', title: 'Government Holding' },
// { id: 'Foreign Ownership', title: 'Foreign Ownership' },
// { id: 'Address', title: 'Address' },
// { id: 'Phone', title: 'Phone' },
// { id: 'Fax', title: 'Fax' },
// { id: 'Email', title: 'Email' },
// { id: 'Website', title: 'Website' },
// { id: 'Registrar', title: 'Registrar' },
// { id: 'Listed Shares', title: 'Listed Shares' },
// { id: 'Paid Up Capital', title: 'Paid Up Capital' },
// { id: 'Market Capitalization', title: 'Market Capitalization' },
// // Add more fields as necessary
// ],
// append: true
// });
// // Write records to CSV file
// await csvWriter.writeRecords(extractedData);
// console.log('CSV file written successfully');
})();
@geeksambhu
Copy link
Author

csv file

Company Name,Promoter Holding,Public Holding,Government Holding,Foreign Ownership,Address,Phone,Fax,Email,Website,Registrar,Listed Shares,Paid Up Capital,Market Capitalization
ACLBSL,60.00 %,40.00 %,-,-,,,,[email protected],http://www.aarambhachautari.com/,,,"NPR 367,143,410.00","NPR 3,436,462,317.60"
ADBL,51.00 %,49.00 %,51.00 %,-,,,,[email protected],https://www.adbl.gov.np/,,,"NPR 13,451,674,197.60","NPR 37,261,137,527.35"
AHL,65.29 %,34.71 %,-,-,,,,[email protected],https://www.urjadeveloper.com/about/group-of-company/asian-hydropower-ltd,,,"NPR 340,000,000.00","NPR 1,594,600,000.00"
AHPC,0.00 %,100.00 %,-,-,,,,[email protected],https://arunhydro.com.np/,,,"NPR 1,867,962,466.55","NPR 3,037,306,970.61"
AKJCL,-,100.00 %,0.00 %,0.00 %,,,,[email protected],http://www.aankhukholahydro.com.np/,,,"NPR 800,000,000.00","NPR 1,644,000,000.00"
AKPL,-,100.00 %,0.00 %,0.00 %,,,,[email protected],https://www.arunkabeli.com.np/,,,"NPR 3,895,942,100.00","NPR 6,701,020,412.00"
ALBSL,67.50 %,32.50 %,0.00 %,0.00 %,,,,[email protected],https://www.ashamicrofinance.com.np/,,,"NPR 641,616,000.00","NPR 6,384,079,200.00"
ALICL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.asianlife.com.np/,,,"NPR 3,399,836,306.39","NPR 19,848,244,356.73"
ANLB,67.37 %,32.63 %,-,-,,,,[email protected],https://aatmanirbhar.org.np/,,,"NPR 68,571,800.00","NPR 1,645,723,200.00"
API,-,100.00 %,-,-,,,,[email protected],http://apipower.com.np/,,,"NPR 5,786,597,910.00","NPR 10,010,814,384.30"
AVYAN,61.00 %,39.00 %,-,-,,,,[email protected],https://www.aviyanlaghubitta.com/,,,"NPR 250,000,000.00","NPR 2,150,750,000.00"
BARUN,-,100.00 %,-,-,,,,[email protected],https://www.barunhydro.com.np/,,,"NPR 535,815,000.00","NPR 1,264,523,400.00"
BBC,14.74 %,85.26 %,-,-,,,,[email protected],http://www.bishalbazar.com.np/,,,"NPR 49,140,000.00","NPR 1,843,831,080.00"
BEDC,70.00 %,30.00 %,-,-,,,,[email protected],https://bedc.com.np/,,,"NPR 544,053,400.00","NPR 2,042,920,517.00"
BFC,60.00 %,40.00 %,0.00 %,0.00 %,,,,[email protected],http://bestfinance.com.np/,,,"NPR 854,816,780.00","NPR 3,470,556,126.80"
BGWT,75.00 %,25.00 %,0.00 %,0.00 %,,,,[email protected],https://bhagawatihydro.com.np/,,,"NPR 572,064,700.00","NPR 3,948,390,559.40"
BHDC,75.00 %,25.00 %,-,-,,,,[email protected],https://bindhyabasinihydro.com.np/,,,"NPR 1,050,000,000.00","NPR 5,838,000,000.00"
BHL,80.00 %,20.00 %,-,-,,,,[email protected],https://balephihydro.com/,,,"NPR 1,827,970,000.00","NPR 5,940,902,500.00"
BHPL,72.00 %,28.00 %,-,-,,,,[email protected] [email protected],https://barahihydropower.com.np/,,,"NPR 250,000,000.00","NPR 1,547,500,000.00"
BNHC,70.00 %,30.00 %,-,-,,,,[email protected],https://buddhabhuminepalhydro.com.np/,,,"NPR 400,000,000.00","NPR 2,592,000,000.00"
BNL,90.78 %,9.22 %,0.00 %,0.00 %,,,,[email protected],https://bnl.com.np/,,,"NPR 194,888,700.00","NPR 30,110,304,150.00"
BNT,90.78 %,9.22 %,0.00 %,0.00 %,,,,[email protected],https://bnl.com.np/,,,"NPR 121,000,000.00","NPR 15,440,931,000.00"
BPCL,67.50 %,32.50 %,7.42 %,2.95 %,,,,[email protected],https://www.bpc.com.np/,,,"NPR 3,409,872,081.00","NPR 10,202,337,266.35"
CBBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://chhimekbank.org/,,,"NPR 2,977,172,100.00","NPR 25,556,045,306.40"
CFCL,51.24 %,48.76 %,0.00 %,0.00 %,,,,central@ ntc.net.np,http://www.centralfinance.com.np/,,,"NPR 948,875,458.73","NPR 3,672,148,025.30"
CGH,-,100.00 %,-,-,,,,[email protected],http://www.chandragirihills.com/,,,"NPR 1,534,091,008.00","NPR 13,500,000,870.40"
CHCL,0.00 %,100.00 %,-,-,,,,[email protected],http://www.chilime.com.np/,,,"NPR 7,983,997,200.00","NPR 36,167,507,316.00"
CHDC,0.00 %,100.00 %,-,-,,,,[email protected],https://www.chdc.com.np/,,,"NPR 839,410,000.00","NPR 7,328,049,300.00"
CHL,-,100.00 %,-,-,,,,[email protected],http://chpl.com.np/,,,"NPR 386,977,500.00","NPR 1,265,416,425.00"
CIT,80.00 %,20.00 %,23.34 %,0.00 %,,,,[email protected],http://nlk.org.np/,,,"NPR 5,313,750,000.00","NPR 114,777,000,000.00"
CITY,90.00 %,10.00 %,-,-,,,,[email protected],https://cityhotel.com.np/,,,"NPR 1,674,000,000.00","NPR 10,981,440,000.00"
CKHL,70.00 %,30.00 %,-,-,,,,,,,,"NPR 400,000,000.00","NPR 2,212,000,000.00"
CLI,70.00 %,30.00 %,0.00 %,0.00 %,,,,Contact Email,https://citizenlifenepal.com/,,,"NPR 3,937,500,000.00","NPR 18,903,937,500.00"
CORBL,70.00 %,30.00 %,-,-,,,,[email protected],https://www.corporatebank.com.np/,,,"NPR 525,000,000.00","NPR 2,545,725,000.00"
CYCL,67.50 %,32.50 %,-,-,,,,[email protected],https://cycnlbsl.org.np/,,,"NPR 266,424,390.00","NPR 3,925,763,386.65"
CZBIL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://ctznbank.com/,,,"NPR 14,203,119,279.42","NPR 25,423,583,510.15"
DDBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.deproscbank.com.np/,,,"NPR 1,706,196,987.00","NPR 12,677,043,613.41"
DHPL,0.00 %,100.00 %,-,-,,,,[email protected],http://www.dibyashwarihydro.com/,,,"NPR 264,000,000.00","NPR 514,800,000.00"
DLBS,67.90 %,32.10 %,-,-,,,,[email protected],https://dhaulagiribank.com/,,,"NPR 133,100,000.00","NPR 1,634,468,000.00"
DOLTI,70.00 %,30.00 %,-,-,,,,[email protected],,,,"NPR 536,486,000.00","NPR 2,221,052,040.00"
DORDI,72.00 %,28.00 %,-,-,,,,[email protected],https://dordikhola.com.np/,,,"NPR 1,054,260,400.00","NPR 4,354,095,452.00"
EBL,59.23 %,40.77 %,0.00 %,20.03 %,,,,[email protected],https://everestbankltd.com/,,,"NPR 11,767,903,620.00","NPR 63,546,679,548.00"
EDBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],http://www.edb.com.np/,,,"NPR 1,249,694,506.06","NPR 4,886,305,518.68"
EHPL,80.00 %,20.00 %,-,-,,,,[email protected],https://ehpl.com.np/,,,"NPR 620,000,000.00","NPR 3,304,600,000.00"
ENL,90.00 %,10.00 %,0.45 %,-,,,,[email protected],https://emergingnep.com/,,,"NPR 555,600,080.00","NPR 4,944,840,712.00"
FMDBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],http://fmdb.com.np/,,,"NPR 1,233,826,902.70","NPR 8,932,906,775.55"
FOWAD,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],https://forwardmfbank.com.np/,,,"NPR 1,055,563,734.38","NPR 13,268,436,141.09"
GBBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://garimabank.com.np/,,,"NPR 5,680,517,330.70","NPR 21,012,233,606.26"
GBIME,51.20 %,48.80 %,0.00 %,0.00 %,,,,[email protected],https://globalimebank.com/,,,"NPR 36,128,770,600.00","NPR 68,644,664,140.00"
GBLBS,70.07 %,29.93 %,32.07 %,0.00 %,,,,[email protected],https://gblbs.com.np/,,,"NPR 982,500,000.00","NPR 7,437,525,000.00"
GCIL,80.00 %,20.00 %,-,-,,,,[email protected],https://ghorahicement.com.np/,,,"NPR 4,567,685,690.00","NPR 23,021,135,877.60"
GFCL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://goodwillfinance.com.np/,,,"NPR 946,115,200.00","NPR 4,352,129,920.00"
GHL,-,100.00 %,0.00 %,0.00 %,,,,[email protected],http://www.ghalemdi.com/,,,"NPR 1,650,000,000.00","NPR 2,466,750,000.00"
GILB,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],https://gilb.com.np/,,,"NPR 618,900,043.78","NPR 7,767,195,549.39"
GLBSL,67.74 %,32.26 %,0.00 %,0.00 %,,,,[email protected],http://guranslaghubitta.com.np/,,,"NPR 101,403,057.60","NPR 1,903,335,391.15"
GLH,-,100.00 %,-,-,,,,[email protected],http://www.greenlifehydropower.com.np/,,,"NPR 1,800,000,000.00","NPR 3,805,200,000.00"
GMFBS,67.63 %,32.37 %,0.00 %,0.00 %,,,,[email protected],https://www.ganapatimicro.com.np/,,,"NPR 151,554,532.50","NPR 1,921,711,472.10"
GMFIL,52.34 %,47.66 %,0.00 %,0.00 %,,,,[email protected],https://www.gmbf.com.np/,,,"NPR 1,012,176,000.00","NPR 3,998,095,200.00"
GRDBL,55.00 %,45.00 %,0.00 %,0.00 %,,,,[email protected],https://greenbank.com.np/,,,"NPR 538,722,000.00","NPR 2,316,504,600.00"
GUFL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.gurkhasfinance.com.np/,,,"NPR 867,993,800.00","NPR 5,832,918,336.00"
GVL,80.00 %,20.00 %,-,-,,,,[email protected],https://greenventuresnepal.com/,,,"NPR 3,125,000,000.00","NPR 13,718,750,000.00"
HATHY,87.50 %,12.50 %,0.00 %,0.00 %,,,,[email protected],https://www.hathwaynepal.com.np/,,,"NPR 2,574,000,000.00","NPR 23,371,920,000.00"
HBL,65.00 %,15.00 %,0.00 %,20.00 %,,,,[email protected],https://www.himalayanbank.com/,,,"NPR 21,656,615,630.00","NPR 42,446,966,634.80"
HDHPC,-,100.00 %,-,-,,,,[email protected],http://himaldolakhahydro.com/,,,"NPR 2,800,000,000.00","NPR 3,721,200,000.00"
HDL,58.00 %,42.00 %,-,-,,,,[email protected],http://himalayandistillery.com/,,,"NPR 2,672,523,330.40","NPR 35,504,472,444.36"
HEI,51.00 %,49.00 %,-,-,,,,[email protected],https://hei.com.np/,,,"NPR 2,500,157,761.09","NPR 15,400,971,808.29"
HHL,79.45 %,20.55 %,-,-,,,,[email protected],https://hhpl.com.np/,,,"NPR 1,095,000,000.00","NPR 3,799,650,000.00"
HIDCL,80.00 %,20.00 %,50.00 %,0.00 %,,,,[email protected],http://www.hidcl.org.np/,,,"NPR 22,775,799,380.00","NPR 38,604,979,949.10"
HLBSL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.civillaghubitta.com.np/,,,"NPR 319,818,200.00","NPR 3,911,376,586.00"
HLI,51.00 %,49.00 %,-,-,,,,[email protected],https://himalayanlife.com.np/,,,"NPR 8,020,383,600.00","NPR 32,241,942,072.00"
HPPL,-,100.00 %,-,-,,,,[email protected],https://hpp.com.np/,,,"NPR 1,065,417,000.00","NPR 2,770,084,200.00"
HRL,70.00 %,30.00 %,-,-,,,,[email protected],https://himalayanre.com/,,,"NPR 10,400,000,000.00","NPR 60,850,400,000.00"
HURJA,-,100.00 %,-,-,,,,[email protected],https://www.himalurja.com/,,,"NPR 990,000,000.00","NPR 2,762,100,000.00"
ICFC,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],http://www.icfcbank.com/,,,"NPR 1,183,470,960.00","NPR 6,094,875,444.00"
IGI,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.iginepal.com/,,,"NPR 3,029,335,000.00","NPR 16,434,142,375.00"
IHL,70.00 %,30.00 %,-,-,,,,[email protected],https://www.ingwahydropowerltd.com.np/,,,"NPR 600,000,000.00","NPR 2,375,400,000.00"
ILBS,67.50 %,32.50 %,0.00 %,0.00 %,,,,[email protected],https://infinitylbsl.com.np/,,,"NPR 497,422,357.43","NPR 6,789,815,178.89"
ILI,70.00 %,30.00 %,-,-,,,,[email protected],https://imelifeinsurance.com/,,,"NPR 5,000,000,000.00","NPR 22,850,000,000.00"
JALPA,67.38 %,32.63 %,-,-,,,,[email protected],http://jalpamf.com/,,,"NPR 182,800,000.00","NPR 2,678,020,000.00"
JBBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.jbbl.com.np/,,,"NPR 4,395,785,890.00","NPR 13,002,734,662.62"
JBLB,67.00 %,33.00 %,-,-,,,,[email protected],https://jeevanbikasmf.com/,,,"NPR 1,347,510,663.72","NPR 18,865,149,292.08"
JFL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],http://jfcjanakpur.com/,,,"NPR 690,472,840.90","NPR 3,659,506,056.77"
JOSHI,-,100.00 %,0.00 %,0.00 %,,,,[email protected],www.joshihydropower.com,,,"NPR 371,400,000.00","NPR 1,136,484,000.00"
JSLBB,55.00 %,45.00 %,0.00 %,0.00 %,,,,[email protected],https://www.jucbank.com.np/,,,"NPR 170,091,900.00","NPR 2,318,352,597.00"
KBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.kumaribank.com/,,,"NPR 26,225,863,400.00","NPR 39,469,924,417.00"
KBSH,80.00 %,20.00 %,-- %,-,,,,[email protected],https://kuthelihydropower.com/,,,"NPR 121,867,500.00","NPR 1,377,102,750.00"
KDL,80.00 %,20.00 %,-,-,,,,[email protected],https://kalinchowkdarshan.com.np/,,,"NPR 596,369,170.00","NPR 6,727,044,237.60"
KKHC,-,100.00 %,-,-,,,,[email protected],https://www.kkhpcl.com.np/,,,"NPR 465,714,300.00","NPR 1,046,460,032.10"
KLBSL,67.00 %,33.00 %,0.00 %,0.00 %,,,,[email protected],https://kisanlaghubitta.com.np/,,,"NPR 504,366,473.52","NPR 5,003,315,417.32"
KMCDB,64.52 %,35.48 %,0.00 %,0.00 %,,,,[email protected],https://www.kalikabank.com.np/,,,"NPR 372,321,737.90","NPR 4,021,074,769.32"
KPCL,-,100.00 %,0.00 %,0.00 %,,,,[email protected],https://kalikapower.com.np/,,,"NPR 872,850,000.00","NPR 3,822,210,150.00"
KRBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,"[email protected],",https://www.kdblnepal.com/,,,"NPR 502,830,000.00","NPR 2,147,084,100.00"
KSBBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.kamanasewabank.com/,,,"NPR 3,281,164,739.38","NPR 12,566,860,951.84"
LBBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.lumbinibikasbank.com/,,,"NPR 3,518,147,803.88","NPR 13,646,895,331.26"
LEC,-,100.00 %,0.00 %,0.00 %,,,,[email protected],https://www.libertyenergy.com.np/,,,"NPR 1,500,000,000.00","NPR 2,776,500,000.00"
LICN,70.00 %,30.00 %,0.00 %,55.00 %,,,,[email protected],https://www.licnepal.com.np/,,,"NPR 2,653,200,000.00","NPR 36,746,820,000.00"
LLBS,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],http://www.llbs.com.np/,,,"NPR 441,662,100.00","NPR 4,814,116,890.00"
LSL,51.05 %,48.95 %,0.00 %,0.00 %,,,,[email protected],https://www.laxmisunrise.com/,,,"NPR 23,187,154,660.00","NPR 39,070,355,602.10"
MAKAR,70.00 %,30.00 %,-,-,,,,[email protected]/[email protected],https://www.mjshydropower.com.np/,,,"NPR 760,000,000.00","NPR 2,849,240,000.00"
MANDU,88.00 %,12.00 %,0.00 %,0.00 %,,,,[email protected],,,,"NPR 1,363,637,000.00","NPR 11,563,641,760.00"
MBJC,51.00 %,49.00 %,-,-,,,,[email protected],http://mbjcl.com.np/,,,"NPR 6,000,000,000.00","NPR 18,180,000,000.00"
MBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.machbank.com/,,,"NPR 11,621,357,272.14","NPR 21,615,724,526.18"
MCHL,70.00 %,30.00 %,-,-,,,,[email protected],https://menchhiyamhydro.com/,,,"NPR 542,583,300.00","NPR 2,083,519,872.00"
MDB,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://miteribank.com.np/,,,"NPR 1,111,426,576.84","NPR 5,412,647,429.22"
MEHL,65.00 %,35.00 %,0.00 %,0.00 %,,,,[email protected],https://www.hydromanakamana.com.np/,,,"NPR 800,000,000.00","NPR 2,520,000,000.00"
MEL,75.00 %,25.00 %,-,-,,,,[email protected],https://modihydro.com/,,,"NPR 2,900,000,000.00","NPR 6,583,000,000.00"
MEN,-,100.00 %,-,-,,,,[email protected],https://mountainenergy.com.np/,,,"NPR 2,263,231,050.00","NPR 13,262,533,953.00"
MERO,59.40 %,40.60 %,0.00 %,0.00 %,,,,[email protected],https://www.meromicrofinance.com/,,,"NPR 1,320,000,945.12","NPR 9,106,686,520.38"
MFIL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://manjushreefinance.com.np/,,,"NPR 1,351,552,412.00","NPR 6,845,612,966.78"
MHCL,56.00 %,44.00 %,-,-,,,,"[email protected],",https://molunghydropower.com.np/,,,"NPR 802,500,000.00","NPR 3,121,725,000.00"
MHL,70.00 %,30.00 %,-,-,,,,[email protected],http://www.mandakinihydro.com.np/,,,"NPR 615,968,652.75","NPR 2,890,124,918.70"
MHNL,-,100.00 %,-,-,,,,[email protected],https://www.mhnl.com.np/,,,"NPR 1,250,000,000.00","NPR 2,912,500,000.00"
MKCL,80.00 %,20.00 %,-,-,,,,,,,,"NPR 700,000,000.00","NPR 6,685,700,000.00"
MKHC,66.00 %,34.00 %,-,-,,,,[email protected],https://mkhpcl.com.np/,,,"NPR 1,000,000,000.00","NPR 3,080,000,000.00"
MKHL,51.00 %,49.00 %,-,-,,,,[email protected],https://maikholahydropower.com.np/,,,"NPR 392,156,800.00","NPR 1,674,509,536.00"
MKJC,70.00 %,30.00 %,-,-,,,,,https://mailungkhola.com/,,,"NPR 376,319,824.17","NPR 1,753,274,060.82"
MKLB,68.00 %,32.00 %,-,-,,,,[email protected],http://manakamanalbs.com/,,,"NPR 148,478,411.25","NPR 1,566,447,238.69"
MLBBL,60.00 %,40.00 %,0.00 %,0.00 %,,,,[email protected],https://mlbbank.com.np/,,,"NPR 196,002,751.25","NPR 2,528,435,491.13"
MLBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],http://www.mahalaxmibank.com/,,,"NPR 4,171,318,557.18","NPR 13,807,064,424.27"
MLBS,64.00 %,36.00 %,-,-,,,,[email protected],https://www.manushilbs.com/,,,"NPR 109,375,000.00","NPR 1,480,937,500.00"
MLBSL,60.00 %,40.00 %,-,-,,,,[email protected],https://www.mlbsl.com.np/,,,"NPR 217,562,500.00","NPR 4,107,580,000.00"
MMKJL,70.00 %,30.00 %,-,-,,,,,,,,"NPR 1,000,000,000.00","NPR 4,346,000,000.00"
MNBBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://muktinathbank.com.np/,,,"NPR 7,047,237,443.98","NPR 24,813,323,040.24"
MPFL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.multipurposefinance.com/,,,"NPR 610,200,000.00","NPR 2,709,288,000.00"
MSHL,80.00 %,20.00 %,0.00 %,0.00 %,,,,[email protected],https://midsoluhydropower.com.np/,,,"NPR 748,400,000.00","NPR 4,789,760,000.00"
MSLB,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],http://www.mslbsl.com.np/,,,"NPR 322,378,539.50","NPR 4,126,445,305.60"
NABBC,71.00 %,29.00 %,0.00 %,0.00 %,,,,[email protected],https://ndbl.com.np/,,,"NPR 262,467,600.00","NPR 1,548,296,372.40"
NABIL,60.00 %,40.00 %,0.00 %,50.00 %,,,,[email protected],https://nabilbank.com/,,,"NPR 27,056,997,165.00","NPR 137,422,488,601.03"
NADEP,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],http://www.nadeplaghubitta.com/,,,"NPR 485,760,000.00","NPR 3,803,500,800.00"
NBL,51.00 %,49.00 %,51.00 %,0.00 %,,,,[email protected],https://nepalbank.com.np/,,,"NPR 14,694,022,927.99","NPR 33,208,491,817.25"
NESDO,67.50 %,32.50 %,-,-,,,,[email protected],https://nesdonepal.org/,,,"NPR 255,000,000.00","NPR 4,811,850,000.00"
NFS,60.00 %,40.00 %,0.00 %,0.00 %,,,,[email protected],https://nepalfinancelimited.com.np/,,,"NPR 729,502,000.00","NPR 3,737,968,248.00"
NGPL,-,100.00 %,-,-,,,,[email protected],http://ngpl.com.np/,,,"NPR 1,851,279,222.50","NPR 5,642,699,070.18"
NHDL,-,100.00 %,-,-,,,,[email protected],http://www.charnawatihydro.com/,,,"NPR 359,441,355.00","NPR 1,704,111,464.06"
NHPC,80.00 %,20.00 %,-,-,,,,[email protected],https://www.nhpcl.com/,,,"NPR 2,467,162,912.00","NPR 3,624,262,317.73"
NICA,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.nicasiabank.com/,,,"NPR 14,917,566,922.04","NPR 63,847,186,426.32"
NICL,50.87 %,49.13 %,0.00 %,0.00 %,,,,[email protected],https://nepalinsurance.com.np/,,,"NPR 1,644,241,500.00","NPR 13,946,456,403.00"
NICLBSL,68.00 %,32.00 %,0.00 %,0.00 %,,,,[email protected],http://www.nicasialaghubitta.com/,,,"NPR 1,739,440,000.00","NPR 11,567,276,000.00"
NIFRA,60.00 %,40.00 %,10.00 %,0.00 %,,,,[email protected],https://www.nifrabank.com/,,,"NPR 21,600,000,000.00","NPR 44,496,000,000.00"
NIL,60.00 %,40.00 %,0.00 %,0.00 %,,,,[email protected],https://neco.com.np/,,,"NPR 2,012,360,606.60","NPR 16,159,255,671.02"
NIMB,79.45 %,20.55 %,-,-,,,,[email protected],https://nimb.com.np/,,,"NPR 34,128,595,000.00","NPR 57,984,482,905.00"
NLG,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],http://www.nlg.com.np/,,,"NPR 1,539,535,838.78","NPR 11,823,635,241.81"
NLIC,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://nepallife.com.np/,,,"NPR 8,207,966,538.72","NPR 49,740,277,224.64"
NLICL,65.00 %,35.00 %,0.00 %,2.00 %,,,,[email protected],https://nationallife.com.np/,,,"NPR 5,011,666,410.95","NPR 28,070,343,567.72"
NLO,67.30 %,32.70 %,0.00 %,0.00 %,,,,[email protected],http://nepallubeoil.com/,,,"NPR 60,643,700.00","NPR 153,671,135.80"
NMB,51.00 %,49.00 %,0.00 %,22.23 %,,,,[email protected],https://nmbbanknepal.com/,,,"NPR 18,366,706,800.00","NPR 39,029,251,950.00"
NMBMF,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],https://nmbmicrofinance.com/,,,"NPR 721,449,150.00","NPR 4,833,709,305.00"
NMFBS,74.03 %,25.97 %,0.00 %,0.00 %,,,,[email protected],http://nationalmicrofinance.com.np/,,,"NPR 1,165,521,450.00","NPR 15,606,332,215.50"
NMLBBL,51.49 %,48.51 %,-,-,,,,[email protected],https://www.nerudemirmire.com.np/,,,"NPR 1,397,764,300.00","NPR 10,427,321,678.00"
NRIC,84.00 %,16.00 %,44.04 %,0.00 %,,,,[email protected],https://nepalre.com.np/,,,"NPR 13,422,187,340.00","NPR 90,599,764,545.00"
NRM,55.01 %,44.99 %,-,-,,,,[email protected],https://myrepublica.nagariknetwork.com/,,,"NPR 967,500,000.00","NPR 3,743,257,500.00"
NRN,0.00 %,100.00 %,0.00 %,0.00 %,,,,[email protected],https://nrnil.com/,,,"NPR 1,223,211,700.00","NPR 7,006,556,617.60"
NTC,91.52 %,8.48 %,91.49 %,0.00 %,,,,[email protected],https://ntc.net.np/,,,"NPR 18,000,000,000.00","NPR 152,514,000,000.00"
NUBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.nirdhan.com.np/,,,"NPR 2,612,079,750.00","NPR 17,500,934,325.00"
NWCL,80.00 %,20.00 %,-,-,,,,,,,,"NPR 687,500,000.00","NPR 5,445,000,000.00"
NYADI,73.00 %,27.00 %,-,-,,,,[email protected],https://nhl.com.np/,,,"NPR 1,500,000,000.00","NPR 4,395,000,000.00"
OHL,70.00 %,30.00 %,-,-,,,,[email protected],https://www.radissonhotels.com/,,,"NPR 1,128,090,400.00","NPR 8,686,296,080.00"
PCBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.primebank.com.np/,,,"NPR 19,402,575,716.16","NPR 40,551,383,246.77"
PFL,60.00 %,40.00 %,-,-,,,,[email protected],https://www.pokharafinance.com.np/,,,"NPR 1,082,556,599.42","NPR 7,686,151,855.91"
PHCL,75.00 %,25.00 %,-,-,,,,[email protected],https://peopleshydro.com.np/,,,"NPR 3,200,000,000.00","NPR 9,251,200,000.00"
PMHPL,-,100.00 %,-,-,,,,[email protected],https://www.panchakanya.com/,,,"NPR 1,100,000,000.00","NPR 2,548,700,000.00"
PMLI,84.67 %,15.33 %,-,-,,,,[email protected],https://www.pmlil.com/,,,"NPR 4,296,000,000.00","NPR 21,866,640,000.00"
PPCL,-,100.00 %,-,-,,,,[email protected],https://www.ppcl.com.np/,,,"NPR 962,500,000.00","NPR 2,233,000,000.00"
PPL,51.00 %,49.00 %,-,-,,,,[email protected],https://peoplespower.com.np/,,,"NPR 632,600,000.00","NPR 2,897,308,000.00"
PRIN,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.prabhuinsurance.com/,,,"NPR 1,441,488,280.96","NPR 11,171,534,177.45"
PROFL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.pfltd.com.np/,,,"NPR 848,106,000.00","NPR 2,881,864,188.00"
PRVU,51.00 %,49.00 %,0.00 %,0.06 %,,,,[email protected],https://www.prabhubank.com/,,,"NPR 23,542,490,000.00","NPR 35,784,584,800.00"
RADHI,-,100.00 %,-,-,,,,[email protected],http://radhibidyut.com.np/,,,"NPR 1,755,588,850.98","NPR 4,195,857,353.83"
RAWA,70.00 %,30.00 %,-,-,,,,[email protected],,,,"NPR 280,000,000.00","NPR 1,393,840,000.00"
RBCL,87.73 %,12.27 %,47.52 %,0.00 %,,,,[email protected],https://www.rbcl.com.np/,,,"NPR 266,639,060.00","NPR 35,223,019,826.00"
RFPL,51.00 %,49.00 %,-,-,,,,[email protected],https://www.riverfallshydro.com.np/,,,"NPR 700,000,000.00","NPR 2,566,900,000.00"
RHGCL,52.00 %,48.00 %,-,-,,,,[email protected],https://raptihydro.com.np/,,,"NPR 612,793,800.00","NPR 2,150,293,444.20"
RHPL,-,100.00 %,0.00 %,0.00 %,,,,[email protected],http://www.rghpcl.com.np/,,,"NPR 6,842,100,000.00","NPR 18,371,038,500.00"
RIDI,61.00 %,39.00 %,-,-,,,,[email protected],http://www.ridihydro.com.np/,,,"NPR 1,998,901,200.00","NPR 3,538,055,124.00"
RLFL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://reliancenepal.com.np/,,,"NPR 1,121,451,780.32","NPR 4,519,450,674.70"
RNLI,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],https://reliablelife.com.np/,,,"NPR 4,640,000,000.00","NPR 20,313,920,000.00"
RSDC,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://rsdcmf.com/,,,"NPR 944,351,065.83","NPR 6,412,143,737.00"
RURU,0.00 %,100.00 %,-,-,,,,[email protected],https://ruruhydro.com/,,,"NPR 493,323,655.00","NPR 3,031,473,859.97"
SABSL,67.88 %,32.12 %,0.00 %,0.00 %,,,,[email protected],https://sabaikolaghubitta.com/,,,"NPR 318,600,000.00","NPR 3,110,173,200.00"
SADBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.shangrilabank.com/,,,"NPR 3,430,853,773.38","NPR 10,978,732,074.81"
SAHAS,70.00 %,30.00 %,-,-,,,,[email protected],https://sahasurja.com/,,,"NPR 3,500,000,000.00","NPR 18,690,000,000.00"
SALICO,51.00 %,49.00 %,-,-,,,,[email protected],https://salico.com.np/,,,"NPR 2,622,638,200.00","NPR 18,463,372,928.00"
SAMAJ,57.00 %,43.00 %,-,-,,,,[email protected],https://samajlaghubitta.org.np/,,,"NPR 22,850,000.00","NPR 479,850,000.00"
SANIMA,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.sanimabank.com/,,,"NPR 13,581,525,410.00","NPR 35,991,042,336.50"
SAPDBL,56.75 %,43.25 %,0.00 %,0.00 %,,,,[email protected],http://skdbl.com.np/,,,"NPR 834,338,430.00","NPR 2,682,398,052.45"
SARBTM,87.10 %,12.90 %,-,-,,,,[email protected],https://sarbottamcement.com/,,,"NPR 4,650,000,000.00","NPR 38,037,000,000.00"
SBI,70.00 %,30.00 %,0.00 %,55.00 %,,,,[email protected],https://nsbl.statebank/,,,"NPR 10,500,152,280.00","NPR 31,930,963,083.48"
SBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.siddharthabank.com/,,,"NPR 14,089,980,189.27","NPR 37,465,257,323.26"
SCB,72.52 %,27.48 %,0.00 %,70.21 %,,,,[email protected],https://www.sc.com/np/,,,"NPR 9,429,453,816.20","NPR 55,435,758,985.44"
SDLBSL,67.00 %,33.00 %,0.00 %,0.00 %,,,,[email protected],https://sadhanalaghubitta.com.np/,,,"NPR 382,258,345.00","NPR 3,589,788,117.90"
SFCL,59.37 %,40.63 %,0.00 %,0.00 %,,,,[email protected],https://sfcl.com.np/,,,"NPR 818,911,500.00","NPR 2,793,307,126.50"
SGHC,70.00 %,30.00 %,-,-,,,,[email protected],https://swetgangahydropower.com/,,,"NPR 1,593,000,000.00","NPR 5,159,727,000.00"
SGIC,51.00 %,49.00 %,-,-,,,,[email protected],https://sgic.com.np/,,,"NPR 2,000,000,000.00","NPR 11,000,000,000.00"
SHEL,0.00 %,100.00 %,-,-,,,,[email protected],http://www.singatihydro.com/,,,"NPR 2,900,000,000.00","NPR 4,753,100,000.00"
SHINE,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.srdb.com.np/,,,"NPR 4,733,690,949.78","NPR 18,840,089,980.13"
SHIVM,-,100.00 %,0.00 %,0.00 %,,,,[email protected],https://www.shivamcement.com.np/,,,"NPR 5,027,000,000.00","NPR 25,828,726,000.00"
SHL,69.00 %,31.00 %,0.00 %,0.00 %,,,,[email protected],http://soalteehotel.com/,,,"NPR 928,940,789.70","NPR 41,802,335,536.50"
SHLB,64.00 %,36.00 %,-,-,,,,[email protected],https://www.shrijanshil.org/en,,,"NPR 109,375,000.00","NPR 1,935,937,500.00"
SHPC,-,100.00 %,-,-,,,,[email protected],https://www.sanimahydro.com.np/,,,"NPR 3,398,176,100.00","NPR 11,417,871,696.00"
SICL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://shikharinsurance.com/,,,"NPR 2,654,947,200.00","NPR 19,062,520,896.00"
SIFC,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.shreefinance.com.np/,,,"NPR 981,683,471.59","NPR 4,123,070,580.66"
SIKLES,76.47 %,23.53 %,-,-,,,,[email protected],https://www.sikleshydro.com.np/,,,"NPR 850,000,000.00","NPR 4,386,850,000.00"
SINDU,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://www.sindhubank.com.np/,,,"NPR 557,456,067.00","NPR 2,123,907,615.27"
SJCL,-,100.00 %,0.00 %,0.00 %,,,,[email protected],https://www.sjcl.com.np/,,,"NPR 3,650,000,000.00","NPR 10,074,000,000.00"
SJLIC,51.00 %,49.00 %,-,-,,,,[email protected],https://suryajyotilife.com/,,,"NPR 5,011,947,797.46","NPR 21,250,658,661.23"
SKBBL,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],https://www.skbbl.com.np/,,,"NPR 3,806,373,793.50","NPR 31,592,902,486.05"
SLBBL,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],http://www.slbbl.com.np/,,,"NPR 671,104,997.77","NPR 5,133,953,232.98"
SLBSL,69.65 %,30.35 %,-,-,,,,[email protected],http://www.samudayikbank.com.np/,,,"NPR 170,805,000.00","NPR 2,098,681,035.00"
SMATA,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],https://www.samata.org.np/,,,"NPR 415,527,737.72","NPR 3,918,426,566.66"
SMB,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],http://www.supportmicrofinance.com.np/,,,"NPR 95,238,000.00","NPR 1,541,903,220.00"
SMFBS,67.89 %,32.11 %,0.00 %,0.00 %,,,,[email protected],https://swabhimaanlaghubitta.com.np/,,,"NPR 146,137,259.12","NPR 1,956,777,899.57"
SMH,80.00 %,20.00 %,-,-,,,,[email protected],http://www.supermaihydro.com.np/,,,"NPR 500,000,000.00","NPR 3,420,000,000.00"
SMHL,85.00 %,15.00 %,-,-,,,,[email protected],,,,"NPR 2,100,000,000.00","NPR 10,899,000,000.00"
SMJC,51.00 %,49.00 %,-,-,,,,"[email protected], [email protected]",https://sagarmathajbc.com.np/,,,"NPR 1,120,000,000.00","NPR 4,144,000,000.00"
SNLI,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],https://sunlife.com.np/,,,"NPR 3,961,600,000.00","NPR 18,861,177,600.00"
SONA,60.00 %,40.00 %,-,-,,,,,,,,"NPR 3,075,050,000.00","NPR 14,175,980,500.00"
SPC,75.40 %,24.60 %,-,-,,,,[email protected]​,https://spcl.com.np/,,,"NPR 500,000,000.00","NPR 2,620,000,000.00"
SPDL,-,100.00 %,-,-,,,,[email protected],https://synergyhydro.com/,,,"NPR 1,209,862,500.00","NPR 2,964,163,125.00"
SPHL,70.00 %,30.00 %,-,-,,,,[email protected],http://sayapatrihydropower.com/,,,"NPR 300,000,000.00","NPR 1,479,000,000.00"
SPIL,51.00 %,49.00 %,-,-,,,,[email protected],https://siddharthainsurance.com/,,,"NPR 2,806,549,900.00","NPR 22,312,071,705.00"
SPL,70.00 %,30.00 %,-,-,,,,[email protected],https://shuvamhydro.com.np/,,,"NPR 200,000,000.00","NPR 1,400,000,000.00"
SRLI,70.00 %,30.00 %,-,-,,,,[email protected],https://sanimareliancelife.com/,,,"NPR 4,184,000,000.00","NPR 19,037,200,000.00"
SSHL,0.00 %,100.00 %,-,-,,,,[email protected],http://shivashreehydro.com.np/,,,"NPR 1,476,400,000.00","NPR 2,493,639,600.00"
STC,9.67 %,78.74 %,11.59 %,0.00 %,,,,[email protected],https://www.stcnepal.com/,,,"NPR 320,716,955.35","NPR 14,095,510,187.63"
SWBBL,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],http://swbbl.com.np/,,,"NPR 1,449,999,453.30","NPR 11,962,495,489.76"
SWMF,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],http://www.womimfi.com.np/,,,"NPR 910,782,520.00","NPR 7,559,494,916.00"
TAMOR,70.00 %,30.00 %,-,-,,,,[email protected],https://middletamor.com/,,,"NPR 3,332,500,000.00","NPR 12,763,475,000.00"
TPC,70.00 %,30.00 %,-,-,,,,[email protected],www.terhathumpc.com,,,"NPR 400,000,000.00","NPR 2,040,000,000.00"
TRH,57.00 %,43.00 %,-,-,,,,[email protected],https://www.taragaon.com/,,,"NPR 1,962,120,160.00","NPR 14,872,870,812.80"
TSHL,75.00 %,25.00 %,-,-,,,,[email protected],https://www.threestarhydro.com/,,,"NPR 492,500,000.00","NPR 2,533,420,000.00"
TVCL,80.00 %,20.00 %,-,-,,,,,,,,"NPR 1,789,162,770.00","NPR 7,983,244,279.74"
UAIL,51.00 %,49.00 %,-,-,,,,[email protected],https://unitedajodinsurance.com/,,,"NPR 2,099,999,531.62","NPR 12,347,997,245.90"
UHEWA,60.00 %,40.00 %,-,-,,,,[email protected],https://upperhewahpc.com.np/,,,"NPR 500,000,000.00","NPR 1,982,000,000.00"
ULBSL,64.00 %,36.00 %,-,-,,,,[email protected],https://www.ulbsl.com.np/,,,"NPR 106,148,000.00","NPR 1,885,188,480.00"
ULHC,51.00 %,49.00 %,0.00 %,0.00 %,,,,[email protected],https://ulkhp.com/,,,"NPR 509,804,000.00","NPR 1,682,353,200.00"
UMHL,-,100.00 %,-,-,,,,[email protected],https://umh.com.np/,,,"NPR 1,230,500,000.00","NPR 2,912,593,500.00"
UMRH,-,100.00 %,-,-,,,,[email protected],https://idimardihydro.com.np/,,,"NPR 443,100,000.00","NPR 1,613,770,200.00"
UNHPL,-,100.00 %,-,-,,,,[email protected],https://www.unionhydropower.com.np/,,,"NPR 750,000,000.00","NPR 1,731,750,000.00"
UNL,85.00 %,15.00 %,0.00 %,80.00 %,,,,[email protected],https://www.unilevernepal.com/,,,"NPR 92,100,000.00","NPR 36,242,271,000.00"
UNLB,52.00 %,48.00 %,0.00 %,0.00 %,,,,[email protected],http://www.ghodighoda.com.np/,,,"NPR 148,575,000.00","NPR 2,955,156,750.00"
UPCL,-,100.00 %,-,-,,,,[email protected],http://www.universalpowercompany.com.np/,,,"NPR 2,279,929,925.00","NPR 4,489,182,022.32"
UPPER,-,100.00 %,0.00 %,0.00 %,,,,[email protected],http://utkhpl.org.np/,,,"NPR 21,180,000,000.00","NPR 35,137,620,000.00"
USHEC,75.50 %,24.50 %,-,-,,,,[email protected],https://ushec.com.np/,,,"NPR 1,350,000,000.00","NPR 5,197,500,000.00"
USHL,60.45 %,39.05 %,-,-,,,,[email protected],https://uppersyange.com/,,,"NPR 220,000,000.00","NPR 1,072,500,000.00"
USLB,70.00 %,30.00 %,-,-,,,,[email protected],https://unnatislb.com/,,,"NPR 246,865,740.00","NPR 5,174,305,910.40"
VLBS,74.39 %,25.61 %,0.00 %,0.00 %,,,,[email protected],https://vlbs.com.np/,,,"NPR 745,040,360.00","NPR 7,115,135,438.00"
VLUCL,80.00 %,20.00 %,-,-,,,,,,,,"NPR 1,912,500,000.00","NPR 9,256,500,000.00"
WNLB,70.00 %,30.00 %,0.00 %,0.00 %,,,,[email protected],http://www.nslbsl.com.np/,,,"NPR 79,211,300.00","NPR 1,140,642,720.00"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment