{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); \""}}},{"rowIdx":8110,"cells":{"label":{"kind":"string","value":"NOT_FRAUD"},"text":{"kind":"string","value":"What does Jim say? Tom Shannon? Dan Restrepo?"}}},{"rowIdx":8111,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"ahoo.co.uk\"\">tdy_williams@yahoo.co.uk
BARRISTER TEDDY WILLIAMS ESQ
 

Check out the new free= AOL Email -- 2GB of storage and industry-leading spam and email vir=us protection.
----------MB_8C8FE3F58D138FA_10C0_10806_WEBMAIL-MB19.sysops.aol.com--\""}}},{"rowIdx":8112,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"Good day This might seem very deplorable for a person that you do not know. My name is Clement AputeI am a lawyer and a very close confidant to my client who also happens to be my sister-in-law. I am contacting you because of the my client's urgent need to go into partnership with someonewho is not from this country as a result of their family's present situation in the countryand specifically because you have a fixed address or let me say fixed responsibilities which can stands as a good reason to go into partnership with you. The present situation right now requires good understanding and a good sense of judgment.My sister-in-law and her entire family are really suffering from the hands of some wicked people who are drunk with power.This is just a personal vendetta by the head of states because he was jailed by my client husband's regime in 1997 for actually plotting a coup d 'etat against their military administration then when they were in power. It is very clear that our present head of states wants to take advantage of his seat in power to settle his personal hatred for my client's family.This man is bent on destroying my client's family. The family has virtually lost all their family's money and properties due to this vindictive administration in power now. who are bent on dealing with the family.All their bank accounts have been frozenassets and their properties which I helped in managing have been confiscated and are still non functional till this present day. His administration has spread so much rumors against their family which is yet another smear campaign aimed mainly to frustrate humiliate dismember and widen the scope ofhatred to my client's family. Right now it is completely impossible for any member of the family to make any move because the entire family are being placed under traveling restrictions.About a few months ago we were squished out of another US$395 million dollars and these wicked people have completely dammed the fact that all this funds can be ascertained for independently. Presently the family is finding it very hard to manage as we have completely run out of resources because everything has been taken away from madam and her children. My client needs sombody that she can confide inpresently the family still has some amounts of money to the sum of 84 million US dollars and some fractions in cashwhich the family has spread out and lodged in the vault of different Securities outfits in two countries there in Asia and also in Europe.The existence of these monies is not in any way known to anybody elsenot even all mama's children apart from her eldest son. The money was lodged in as jewelry. This is a precaution to maintain a very high level secrecy because this is all the family have left to fall back on. So we expect you to keep this matter in confidence.Madam wants a partner to proceed as soon as possible and retrieve some money lodged in any of this security outfits and handle it as duly instructed. The family needs somebody to help them withdraw there deposits because the family is financially down here in the country since everything they own here have been taken away from them. We are looking for an understanding partner that can work with us. All we require from you is to help the familyto go and retrieve any one of the family's deposits that is lodged in one of these places and keep safely in your care since none of us is able to travel out of this country due to traveling restrictions.Secondlyso that you can always withdraw little part out of their money that will be in your possession and send it down here to us hereanytime the family is in great need. In this way they can continue to sustain the family until they are free from thier enemies. As their lawyer i will be instructing on how you will go about that. We will be providing you withall the legal documents to make claim on behalf of my client. Please be rest assured that you will have no problems or difficulties in claiming any of these deposits because nobody is aware of the existence of this money. All the details will be given to you when we open up negotiations and arrive at a reasonable compromise and until I gain your trust to see that we can work together. We will negotiate on a certain percentage share of the money that the family will offer to you for your expected assistance and partnership. Please do inform me on your decision immediately so as to stop further contacts. I await your response. NOTE - You can also get in contact with me via my securedemail:clem-aputa@earthling.net I will like to have your private phone number so that we can discuss better. Regards Clement Apute. Esq. \""}}},{"rowIdx":8113,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"From=3A Mr=2E Ahmed Abdul Kadir E-mail=3A Reply To=3Aahmed01=40she=2Ecom Attention=3AThe Managing Director Tell=3A +66 5108116=2E Private And Confidential To whom it may concern=2C It is my pleasure to write this mail to you and to say thank you for your effort in providing an opportunity to read my mail=2E I got your contact when I was making some searches on the internet=2E My name is Ahmed Abdul Kadir=2C a sudanese refugee=3B my Father was until recently=2C one of the personal aid to the former President of Iraq who was overthrown out of power during the War in Iraq which took many lives=2E I am contacting you to seek your co-operation in investing US$10=2E5 Million in your country or any other with good economic prospect=2E My late father was able to safe guard the fund with the contacts he had in the Diplomatic Corps and the funds are being held under the protection and custody of a Diplomat friend of his=2E I have decided to contact you because I am interested in investing these funds=2E Please kindly guide and assist me in making the right investment as I am really a novice when considering the technicalities and logistics involved in running a business=2E The details of the investment will be worked out to our respective satisfaction=2E In view of your participation=2C I am ready to give you a good negotiable percentage for your assistance=2C or better still commit it into a viable joint venture=2E Be assured that you stand no risk of any kind as the funds belong to me as the only surviving son and as soon as I get your consent=2C the necessary papers will be drawn up to facilitate the movement to the funds to your country for the investment=2E However=2C upon your acceptance to work as my partner=2C you can contact me by return e-mail for more details=2E I strongly believe that associating with you to embark on this and other business ventures will derive a huge success=2C please include you private contact telephone number and e-mail when replying=2E Yours Sincerely=2E Mr=2E Ahmed Abdul Kadir "}}},{"rowIdx":8114,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"Dear Sir=2C I am sending you this confidential email after searching through the Internet I passionate appeal to you for assistance=2E Many stories might be emanating from my country Nigeria that will cast some aspersions of doubt in your mind regarding this assistance I require from you=2E In the light of this=2C I am Mr=2E Mohammed Abacha=2C son of the late General Sanni Abacha the former military head of state of Nigeria=2E I have been in detention in the last four years following the death of my father for charges of State organized murder and corrupt practices=2E I have just been released by the Supreme Court a fourth night ago after the president brokered a deal with my family regarding my freedom=2E Having made my self-known=2C I wish to emphasize that I need your assistance in the investment of some $35=2E5 Million USD of my family fund that have been held in a security company in Holland Amsterdam=2E Because of the tragic death of my father culminating to my prolonged detention=2C my mother was too devastated to take charge of all the family estate=2E Now that I have regained my freedom=2C I am soliciting for your assistance in the receipt of the fund from the security company in Holland for investment in viable areas of business interest under your prudent management=2E Conclusively=2C I have decided to offer you 20%of the total sum for your assistance=2C while 5% will be for whatever expenses that will be incurred while 75% is to be used in buying shares and franchise from companies in your country and maybe buy houses in your country subsequent to our free movement by the Nigerian Government=2E If this proposal appeals to your positive response=2C please send to me immediately your contact address and telephone=2Ffax numbers to enable me forward it to the security company in Holland=2E My contact person at the security company will direct and guide you accordingly=2E Please treat this with strict confidentiality=2E Yours faithfully=2C Mohammed Abacha=2E "}}},{"rowIdx":8115,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"Email:jackdavid_42@yahoo.fr =20Cell Phone:+22993478739As soon as you recieve the cheque you let me know because i am busy=20here trying to put things together and may not be chanced to email you=20frequently.Feel free to contact him for your cheque.I will stop here.Once againthank you very much and remain blessed.=20RegardsDr Evans Onumba___________________________________________________________Tiscali Broadband only =C2=A39.99 a month for your first 3 months! http://w=ww.tiscali.co.uk/products/broadband/\""}}},{"rowIdx":8116,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"From=3A Mr=2EKola Awosika NIGERIAN NATIONAL PETROLEUM CORPORATION=28 N=2EN=2EP=2EC=29 PLOT 775=2C MCPHERSON CLOSE=2C VICTORIA ISLAND=2C LAGOS=2C NIGERIA=2E Tel=3A234-802-3230248 DEAR SIR=2C I AM MR=2EKOLA AWOSIKA AN ACCOUNTANT IN THE NIGERIAN NATIONAL PETROLEUM CORPORATION =28N=2EN=2EP=2EC=2E=29=2EI HEAD A SEVEN-MAN TENDERS BOARD IN CHARGE OF CONTRACT AWARDS AND PAYMENT APPROVALS=2EI CAME TO KNOW OF YOU IN MY SEARCH FOR A RELIABLE AND REPUTABLE PERSON TO HANDLE A VERY CONFIDENTIAL TRANSACTION WHICH INVOLVES THE TRANSFER OF A HUGE SUM OF MONEY TO A FOREIGN ACCOUNT=2E THERE WERE SERIES OF CONTRACTS EXECUTED BY A CONSORTIUM OF MULTI-NATIONALS IN THE OIL INDUSTRY IN FAVOUR OF N=2EN=2EP=2EC=2E THE ORIGINAL VALUE OF THIS CONTRACTS WERE DELIBERATELY OVER INVOICED TO THE SUM OF USD$35=2C000=2C000=2E00 =28THIRTY FIVE MILLION UNITED STATES DOLLARS=29=2E THIS AMOUNT HAS NOW BEEN APPROVED AND IS NOW READY TO BE TRANSFERRED=2C BEING THAT THE COMPANIES THAT ACTUALLY EXECUTED THESE CONTRACTS HAVE BEEN FULLY PAID AND THE PROJECTS OFFICIALLY COMMISSIONED=2E CONSEQUENTLY=2CMY COLLEAGUES AND I ARE WILLING TO TRANSFER THE TOTAL AMOUNT TO YOUR ACCOUNT FOR SUBSEQUENT DISBURSEMENT=2C SINCE WE CIVIL SERVANTS ARE PROHIBITED BY THE CODE OF CONDUCT BUREAU =28CIVIL SERVICE LAW=29 FROM OPERATING AND=2FOR OPENING FOREIGN ACCOUNTS IN OUR NAMES=2E NEEDLESS TO SAY=2CTHE TRUST REPOSED ON YOU AT THIS JUNCTURE IS ENORMOUS=2E IN RETURN=2CWE HAVE AGREED TO OFFER YOU 25% OF THE TRANSFERRED SUM=2C WHILE 10% SHALL BE SET ASIDE FOR INCIDENTAL EXPENSES =28INTERNAL AND EXTERNAL=29 BETWEEN PARTIES IN THE COURSE OF THE TRANSACTION=2EYOU WILL BEMANDATED TO REMIT THE BALANCE TO OTHER ACCOUNTS IN DUE COURSE=2E MODALITIES HAVE BEEN WORKED OUT AT THE HIGHEST LEVEL OF THE MINISTRY OF FINANCE AND THE CENTRAL BANK OF NIGERIA =28C=2EB=2EN=2E=29 FOR THE IMMEDIATE TRANSFER OF THE FUNDS WITHIN 13 WORKING DAYS SUBJECT TO YOUR SATISFACTION OF THE ABOVE STATED TERMS=2E OUR ASSURANCE IS THAT YOUR ROLE IS RISK FREE=2E TO ACCORD THIS TRANSACTION THE LEGALITY IT DESERVES AND FOR MUTUAL SECURITY OF THE FUNDS THE WHOLE APPROVAL PROCEDURES WILL BE OFFICIALLY AND LEGALLY PROCESSED WITH YOUR NAME OR THE NAME OF ANY COMPANY YOU MAY NOMINATE AS THE BONAFIDE BENEFICIARY=2E ONCE MORE=2CI WANT YOU TO UNDERSTAND THAT HAVING PUT IN OVER TEN YEARS IN THE CIVIL SERVICE OF MY COUNTRY=2CI AM AVERSE TO HAVING MY IMAGE AND CAREER DENTED=2ETHIS MATTER SHOULD THEREFORE BE TREATED WITH THE UTMOST SECRECY AND URGENCY IT DESERVES=2E KINDLY EXPEDITE ACTION AS WE ARE BEHIND SCHEDULE TO ENABLE US INCLUDE THIS TRANSFER IN THE FIRST BATCH WHICH WOULD CONSTITUTE THE SECOND QUARTER PAYMENTS FOR THE 2003 FINANCIAL YEAR=2E CONTACT ME THROUGH E-MAIL ADDRESSES BELOW AS SOON AS POSSIBLE OR CALL ME IMMEDIATELY ON THIS TELEPHONE NUMBER=3A234-802-3230248 =2E YOURS SINCERELY=2C Mr=2EKola Awosika awosika=40caramail=2Ecom"}}},{"rowIdx":8117,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"[mailto:suhaarafat@easyinfomail.co.za]Greetings from PalestineI am sorry to disturb your peace as I konw you are not expecting to hear from some one like me. You will be compelled to help me once you have heard what I have to say to you.I am Mrs. SUHA ARAFAT the wife of YASSER ARAFAT the Palestinian leader who died recently in Paris.You must have heard over the media reports and the Internet on the discovery of some fund in my husband secret bank accounts and companies and the allegations of some huge sums of money deposited by my husband in my name of which I have refuses to disclose or give up to the corrupt Palestine Government.In fact the total sum allegedly discovered by the Government so far is about $6.5 Billion Dollars.Please visit the BBC news broadcast below for better understanding of what I am talking about;http:/ews.bbc.co.uk/1/hi/world/middle_east/3479937.stmhttp:/ews.bbc.co.uk/1/hi/world/middle_east/3995769.stmI have deposited the sum of 32 million dollars with a private security firm abroad whose name is withheld for now until we open communication the reason why I deposited this.32 million dollars to a security company was because every transfer that goes into my bank account has being monitored by the government.I shall be grateful if you could receive this fund into your bank account for safekeeping and any Investment opportunity.This arrangement is known to you and my personal Attorney. He might be dealing with you directly for security reasons as the case may be.In addition please note that there will be no risky of any kind from your part as every arrangement for smoothly transfer has being made by my legal adviser.If you are willing to assist me we will have to negotiate on your Percentage share of the $32000000 that will be kept in your position for a while and invested in your name pending when my Daughter Zahra will come off age and take full responsibility of her Family Estate/inheritance.Please note that this is an excellent opportunity that comes once in lifetime and more so if you are honest I am going to entrust more funds in your care as this is one of the legacy we keep for our children.In case you do not accept please do not let me out to the security and international media as I am giving you this information in total trust and confidence I will greatly appreciate if you accept my proposal in good faith.Please expedite action and all response to my e-mail address below.Yours sincerelyMrs. Suha Aisha ArafatEmail. suhaarafat@easyinfomail.co.za_________________________________________________________________Discover the magic of RSS feeds at MSN South Africa! http://za.msn.com/\""}}},{"rowIdx":8118,"cells":{"label":{"kind":"string","value":"NOT_FRAUD"},"text":{"kind":"string","value":"FYI"}}},{"rowIdx":8119,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"FROM THE DESK OF MR.MUHAMED BELLOAUDITING AND ACCOUNTING MANAGER BANK OF AFRICAN B.O.AOUAGADOUGOU-BURKINA FASO.DEAR FRIEND I AM THE MANAGER OF AUDITING AND ACCOUNTING AT THE FOREIGN REMITTANCE DEPARTMENT OF BANK OF AFRICAN) HERE IN OUAGADOUGOU BURKINA FASO. IN MY DEPARTMENT WE DISCOVERED AN ABANDONED SUM OF US$12.5M DOLLARS (TWELVE MILLION FIVE HUNDRED THAUSAND US DOLLARS) IN AN ACCOUNT THAT BELONGS TO ONE OF OUR FOR EIGN CUSTOMER (MR. ANDREAS SCHRANNER FROM MUNICH GERMANY) WHO DIED ALONG WITH HIS ENTIRE FAMILY IN JULLY 2000 IN A PLANE CRASH. SINCE WE GOT INFORMATION ABOUT HIS DEATH WE HAVE BEEN EXPECTING HIS NEXT OF KIN TO COME OVER AND CLAIM HIS MONEY BECAUSE WE CANNOT RELEASE IT UNLESS SOME BODY APPLIES FOR IT AS NEXT OF KIN OR RELATION TO THE DECEASED AS INDICATED IN OUR BANKING GUIDLINGS AND LAWS BUT UNFORTUNATELY WE LEARNT THAT ALL HIS SUPPOSED NEXT OF KIN OR RELATION DIED ALONGSIDE WITH HIM AT THE PLANE CRASH LEAVING NOBODY BEHIND FOR THE CLAIM.IT IS THEREFORE UPON THIS DISCOVERY THAT I NOW DECIDED TO MAKE THIS BUSINESS PROPOSAL TO YOU AND RELEASE THE MONEY TO YOU AS THE NEXT OF KIN OR RELATION TO THE DECEASED FOR SAFETY AND SUBSEQUENT DISBURSEMENT SINCE NOBODY IS COMING FOR IT AND WE DON'T WANT THIS MONEY TO GO INTO THE BANK TREASURY AS UNCLAIMED BILL.THE BANKING LAW AND GUIDLINE HERE STIPULATES THAT IF SUCH MONEY REMAINED UNCLAIMED AFTER FIVE YEARS THE MONEY WILL BE TRANSFERED INTO THE BANK TREASURY AS UNCLAIMED FUND. THE REQUEST OF FOREIGNER AS NEXT OF KIN IN THIS BUSINESS IS OCCASSIONED BY THE FACT THAT THE CUSTOMER WAS A FOREIGNER AND A BURKINABE CANNOT STAND AS NEXT OF KIN TO A FOREIGNER.I AGREE THAT 30% OF THIS MONEY WILL BE FOR YOU AS A RESPECT TO THE PROVISION OF A FORIEGN ACCOUNT 10% WILL BE SET ASIDE FOR EXPENSES INCURRED DURING THE BUSINESSAND 60% WOULD BE FOR ME THEREAFTER I WILL VISIT YOUR COUNTRY FOR DISBURSEMENT ACCORDING TO THE PERCENTAGE INDICATED THEREFORE TO ENABLE THE IMMEDIATE TRANSFER OF THIS FUND TO YOU ARRANGEDYOU MUST APPLY FIRST TO THE BANK AS RELATION OR NEXT OF KIN OF THE DECEASED WITH A TEXT OF APPLICATION THAT I WILL SEND TO YOUSO I WILL LIKE YOU TO SEND TO ME YOUR PRIVATE TELEPHONE AND FAX NUMBER FOR EASY AND EFFECTIVE COMMUNICATION AND LOCATION WHERE IN THE MONEY WILL BE REMITTED.UPON RECEIPT OF YOUR REPLY I WILL SEND TO YOU BY FAX OR EMAIL THE TEXT OF THE APPLICATION.I WILL NOT FAIL TO BRING TO YOUR NOTICE THIS TRANSACTION IS HITCH-FREE AND THAT YOU SHOULD NOT ENTERTAIN ANY ATOM OF FEAR AS ALL REQUIRED ARRANGEMENTS HAVE BEEN MADE FOR THE TRANSFER. YOU SHOULD CONTACT ME IMMEDIATELY AS SOON AS YOU RECEIVE THIS LETTER WRITING ME TO MY PRIVATE EMAIL ADDRESS:MUHAMED_BELLO7@LATINMAIL.COMTRUSTING TO HEAR FROM YOU IMMEDIATELY.YOURS FAITHFULLY1. FULL NAME2. YOUR TELEPHONE NUMBER AND FAX NUMBER3. YOUR CONTACT ADDRESS.MR.MUHAMED BELLO_________________________________________________________________Testez Windows Llive Mail Beta ! http://www.msn.frewhotmail/Default.asp?Ath=f\""}}},{"rowIdx":8120,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"Mr TIMI ALAIBEExecutive Director Project=2CNiger Delta Development Commission=2COld Secretariat Complex=2CVictorial-Island=2C Lagos=2ETel=3A+2348037778976Dear Sir=2CI am TIMI ALAIBE=2C the Executive Director Finance with the Niger Delta Development Commission =28 NDDC =29=2EMy commssion - The Niger Delta Development Commission=28NDDC=29-which is in charge of managing and supervising the disbursement of oil sales revenues for the Nigerian government which covers payment to foreign and local contractors that have executed contracts for the Federal Government=2EThe revenue under our control runs into several hundred of millions of dollars monthly=2EMyself and other colleagues in the NDDC are currently in need of a foreign partner with whose bank account we shall transfer the sum of Thirty Million United States Dollars=28$30m=29=2E This fund was accrued from various over invoicing of foreign contractors' payments made over the years=2E The Total fund is presently waiting in the Government Account named CBN=2FFGN INDEPENDENT REVENUE account Central Bank of Nigeria=2EHowever=2C by virtue of my position as civil servant and staff of the NDDC=2C I cannot acquire this funds in my name=2E This is because as top civil servant=2C I are not allowed by law of the land to own or operate bank accounts outside our country for now=2E I have been delegated as a matter of trust by my colleagues=2C to look for an overseas partner in whose account we would transfer the fund=2Chence the reason for this mail=2EWe shall be Transferring the money to your account with the company's name you provide as the beneficiary=2C under the guise that you are being paid for a contract which you=2Fyour company executed for our country through the Commission=2E For your support and partnership=2Cplease reply me to negotiate your fees or the percentage you wish to be paid when the funds arrive your bank account=2E You must however note that this transaction=2C with regards to our disposition to continue with you=2C is subject to these terms=2E Firstly=2C our conviction of your transparency=2ESecondly=2C that you treat this transaction with utmost secrecy and confidentiality=2E Finally and above all=2C that you will provide an account over which you have absolute control =2EThe transaction=2C although discrete=2C is legitimate and there is no risk or legal lliability eitherto ourselves or yourself now or in the future as we have put in place the neccesary machinery that will ensure a hitch free transfer into your account upon acceptance=2EThe transfer will be effected to your account within five - seven =285-7=29 working days from the date we reach an agreement and you furnish me with a suitable bank account and company name with your contact numbers including fax number=2EI am looking forward to doing business with you and do solicit your confidentiality in this transaction=2C Please mail back your response through this email address for me to update you on our plans as to how we intend to actualize this transaction=2ESincerely yours=2CMr TIMI ALAIBEPrivate Email=3A zezi=40www=2Ecomwebsite=3Awww=2Enddconline=2Eorg"}}},{"rowIdx":8121,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"charged to court for a multibillion dollar arms deal fraud which was politically motivated by his enemies as her husband was the chairman of parliament in South Africa and the former chief whip of the ruling political party. We had pleaded guilty in exchange for his acquittal on corruption charges but were later convicted on trumped-up charges. This led to his bank accounts in my bank and abroad being frozen.Now as a matter of urgency we need your assistance in the remittance of the discovered funds abroad. The funds are currently deposited with a bank in South Africa which I will disclose to you upon my receipt of your favorable response and consent in this deal.The amount is US$22.5 Million United States Dollars which was deposited by Mr. Tony Yengeni before his arrest. At the moment the account is on Dormancy because no one has been operating the said account since his arrest. All the account details and documents where also brought to me by his wife. I hope you understand.You can find more about her husband?s predicaments at the following websites:http://www.polity.org.za/html/govdocs/pr/2001/pr1003b.htmlhttp://www.go.za/projects/procurement/yengeni.htmhttp:/ews.bbc.co.uk/1/hi/world/africa/1577682.stmhttp://www.hsf.org.za/focus22/focus22ethics.htmlhttp://www.hinduonnet.com/thehindu/2001/10/06/stories/0306000k.htmhttp://www.armsdeal-vpo.co.za/articles00/govt_reserves.htmlhttp://www.ifp.org.za/Releases/190303apr.htmLet me assure you that this transaction is 100% risk free. From my discussion with her she has agreed to give you a reasonable percentage of the money for your assistance which will be negotiated and agreed on by both sides. I am obliged to assist this lady knowing that she has a limited knowledge in the business world. I will need from you a mutual understanding and then we shall make plans of how the funds would be secured into an account in your name.More so Thanks and God bless you for your understanding. Please do not forget to email me your private telephone number so that I can give you a call to discuss this matter if you are interested in this proposal.Awaiting your reply via email.Best regards.Dr. Hilary Colsman\""}}},{"rowIdx":8122,"cells":{"label":{"kind":"string","value":"NOT_FRAUD"},"text":{"kind":"string","value":"Printed for her"}}},{"rowIdx":8123,"cells":{"label":{"kind":"string","value":"NOT_FRAUD"},"text":{"kind":"string","value":"Thx."}}},{"rowIdx":8124,"cells":{"label":{"kind":"string","value":"NOT_FRAUD"},"text":{"kind":"string","value":"\"* Miguel: \"\"Andrew did great this afternoon. FYI Lowey delivered HRC's statement. Very well received.\"\"* Richard Fontaine: \"\"Andrew is not even rocking - just tapping his foot. Did y'all train him for.this or something?? Andhalf the room are Shapiros it's like his friggin Bahr Mitzvah.\"\"* Former NSC staffer Michael Allen: \"\"Shapiro son removed from the room screaming bloody murder in the hallway.\"\"* Mike Feldman: \"\"Jon Lovett removed from the room screaming bloody murder in the hallway.\"\"* Laurie Rubiner: \"\"Jim Webb arrives looks typically angry.\"\"* Derek Chollet: \"\"Shapiro comes out strong against piracy. Bold stand.\"\"* Jon Lovett: \"\"Jeanne Shaheen listening very closely. Barbara Boxer is distracted. The other anonymous old men on daisseem confused and unsure where they are.\"\"Hearing concludes at 3:33:43 PM EDT2014-20439 Doc No. C05761605 Date: 06/30/2015\""}}},{"rowIdx":8125,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"         https://service.capitalone.com/oas/login.do?objectclicked=LoginSplash       
We regret any inconvenience this may cause you.

Sincerely
Capital One Account Review Department.

We are requesting this information to verify and protect your identity. This is in order
to prevent the use of the U.S. banking system in terrorist and other illegal activity.


Need help? Use \"\"Site Helper\"\"  or call customer service at 1.800- Capital One.

Please do not \"\"Reply\"\" to this Alert.

� 2005 Capital  One N.A. All rights reserved.
\""}}},{"rowIdx":8126,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"\ttpowers@lyon.k12.nv.us rrichmond@lyon.k12.nv.us\tsreiger@lyon.k12.nv.us srieger@lyon.k12.nv.us\ttromer@lyon.k12.nv.us jruff@lyon.k12.nv.us gsuarez@lyon.k12.nv.us\tmtaylor@lyon.k12.nv.us jvalenzuela@lyon.k12.nv.us\tavanparys@lyon.k12.nv.us rwilson@lyon.k12.nv.us\tdwinans@lyon.k12.nv.us emcservice@utility.org\tmajordomo@world.std.com jshandor@tgc.com R@M\t1070986800.0122@hypermail.dumm dhart@nsf.gov\tdhart@harbourrocks.com.au dhart@ecs.giswave.com dhart@ecps.us\tedonoghue@saintpetersuh.com jsignor@e-z.net cory@dhart.com\tdwaters@hanover.k12.va.us rdeel@hanover.k12.va.us\tcarol@caslet22.freeserve.co.uk eliz.purves@btinternet.com\tbarbara@newbattle.freeserve.co.uk roneil@xtra.co.nz\tyvonne.burder@ntlworld.com dubhda@supanet.com\tdaymargaretstan@aol.com galvez@c-zone.net paul.wickers@nep.co.uk\tve7ibv@hotmail.com dvchis@bigpond.net.au lyndaw@optusnet.com.au\tmhjmitz@aol.com garrylawes@hotmail.com charliebrown99@talk21.com\""}}},{"rowIdx":8127,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"VICTORIA - ISLANDLAGOS - NIGERIADear FriendMy name is Mr.JOSEPH AYO a staff FINANCIAL TRUST BANK. I have this urgent deal to transact with you if you can do it. There is an unclaimed deposited fund of $15 Million in the name of Jame Johnson with no traceable address.This fund has stayed over 10 years in the bank without a claimant.Professionally any unclaimed money for a period exceeding 10 years is recovered by the bank.I being in the position of the file.I wants any foreign partner to assume the next of kin of the late James Johnson and write to the Financial Trust Bank for claims.I will advice you adequately on how to do it when I hear from you. Bear in mind that I will stand as a neutral body to the whole transaction. You will only be dealing with any attorney we choose.Your compensation has been taken into consideration as the account provider. To be precise your share is 20% of the Total amount. Any financial assistance we receive from you will be given back to you immediately the fund gets into your account.I am willing to give you the details of the money and the way we can execute the deal successfully but let me see the desire from you first.Please observe utmost confidentiality and be rest assured that this transaction would be most profitable for both of us because I shall require your assistance to invest my share in your country.Please upon the receipt of this mail message send tome the followingto enable start the process of the fund into your bank account:1. Your full Name and address.2. Your private Telephone and fax numbersAwaiting your urgent reply via my alternativeemail:josephaayo13@yahoo.ie.Thank youSincerely.Mr. Joseph Ayo.___________________________________________________________________________Mail sent from WebMail service at Xoopster.com- http://www.xoopster.com/\""}}},{"rowIdx":8128,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"From=3AMrs MOHAMMED=2E Attn=3AThe Managing Director Before I proceed=2C may I humbly introduce myself to your goodself=2C My Name is Mrs=2E Aisha mohammed=2C an Iraqi refugee =2Cmy husband was until recently=2C one of the personal aid to the president of Iraq who was formerly overthrown out of power by American Government =2E Prior to this last serious crisis that is still ravaging in my country=2Cwhich recently led to misfortune of our government and my late husband position as the personal aid to the president=2C =2CWe inherited the sum of US$11 million=2EThe funds were originally gotten from my late husband proceeds=2E My late husband was able to safe guard the fund with a very good diplomatic contact from my Country and deposited it in thailand=2E =2EI have decided to contact you because I am interested in investing in your country which is investment friendly=2E Please kindly guide and assist me in making the right investment since I am also interested in buying a residential property as I will be moving with my only son musa in over there as soon as every thing regarding technical and logictics details is worked out and ascertained to our respective satisfaction=2E In view of your participation=2CI am ready to give you a good negotiable percentage for your assistance=2Cor better still commit it into viable Joint venture projects with you=2E=2Cbe assured that you stand no risk of any kind as the funds belong to me and my only survived son musa=2E As soon as I get your consent=2C we will quickly move this fund to your country for investment =2E However=2C upon your acceptance to work as my partner=2C you can contact me with my private e-mail for more details=2E =2C I strongly believe that associating with you to embark on this and other business ventures will derive a huge success here after=2C please include you private contact telephone number and private e-mail when replying=2E Yours Sincerely=2E Mrs=2EAISHA MOHAMMED=2E "}}},{"rowIdx":8129,"cells":{"label":{"kind":"string","value":"NOT_FRAUD"},"text":{"kind":"string","value":"Lauren Jiloty "}}},{"rowIdx":8130,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"\"I understand that this letter will be of great surprise to you Especiallyas itcomes from a stranger .I am Prince.Dennis Melange Savimbi from therepublic ofAngola.I got your contact from the internet while i was searching for aforeignerwho can help me in this case.On the 22nd of february 2002 the rebel leader JONAS SAVIMBI my dad waskilled.butbefore his deathhe told me secretly that he deposited some money for usin case heis killedwe should flee for our lives.the money he said was supposed tobe forammunitions.he told me that he divided the money for ammunitions and gavesome ofthe money to the head of Armed and Ammunition Procurement Division andsent themon a mission to NIGERIA with the sum of (US$30Million United StateDollars) toenable them stay there and negotiate with any of the Europe or Americacountry asregards the buying and shipment of arms and ammunition into my country .The moneywas conveyed to NIGERIA through diplomatic means and the other part ($25M)wasdeposited at a Security Company in Nigeria by my father while they werenegotiatingthe arms deal.THE MONEY HE SAID WAS DEPOSITED IN MY NAME.During the begining part of last year we heard my father was dead and soiremebered that my dad talked about some money he kept for us in thesecurity vaultin Nigeria.i also remembered that he said we should immediately flee forour saftyto anywhere that is safe.soi decided that the money must be cleared andused forsomething that will make us ok in life.my mum had resolved to end the war in my country.She needed oversea medicalattention for her heart disease and as a resultshe wanted us to get outof thecountry for the sake of our safety.So we thus agreed to look for a God fearing person oversea who canassist us inclaiming these fund and deposit it into his or her personal/companyaccount. SoWeare soliciting for your assistance on this matter ;as this stands to bethe onlyhope for the future survival of the Family cause we cannot travel out ofthe countrybecause things are not yet settled. Presently we are seeking assylum inNigeriasince it became necessary for us to live my country completly forsecurityreasons and the money is here in Nigeria in a security company ;fortunately enoughthis company we believe is closer to us and sowe will instruct them toairship itto netherland where they have diplomatic immunities for fear of discoverywe willdiscuss with the company as regards the money in their Nigerian Officebut for thefact that we have not got any contact from out side Africa for now we areunable togive the instructions. This is the more reason why we are contacting you.Here inNigeria ;we have limited right to invest this fund ; considering the means\""}}},{"rowIdx":8131,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"RlJPTSBUSEUgT0ZGSUNFIE9GIEVOR1IuQUxJIFJBWkFLLg0KRkVERVJBTCBNSU5JU1RSWSBPRiBXT1JLUyBBTkQgSE9VU0lORw0KRkVERVJBTCBTRUNSRVRBUklBVCBPRkZJQ0UgQ09NUExFWA0KRkFMT01PLCBJS09ZSSAtIExBR09TLg0KICAgICAgICAgICAgICAgDQpEZWFyIFNpci9NYWRhbQ0KDQpGaXJzdCwgSSBtdXN0IHNvbGljaXQgIHlvdXIgc3RyaWN0ZXN0IGNvbmZpZGVuY2UgaW4NCnRoaXMgdHJhbnNhY3Rpb24sIHRoaXMgaXMgYnkgIHZpcnR1ZSBvZiBpdCdzIG5hdHVyZSBhcw0KYmVpbmcgdXR0ZXJseSBjb25maWRlbnRpYWwgYW5kIHRvcCBzZWNyZXQgYXMgeW91IHdlcmUNCmludHJvZHVjZWQgdG8gdXMgaW4gY29uZmlkZW5jZSB0aHJvdWdoIHRoZSBOaWdlcmlhbg0KQ2hhbWJlciBvZiBDb21tZXJjZSwgZm9yZWlnbiB0cmFkZSBkaXZpc2lvbi4NCg0KV2UgYXJlIHRvcCBvZmZpY2lhbHMgZnJvbSB0aGUgRmVkZXJhbCBNaW5pc3RyeSBvZg0KV29ya3MgYW5kIEhvdXNpbmcsKEZNV0gpLEZlZGVyYWwgTWluaXN0cnkgb2YgRmluYW5jZQ0KYW5kIHRoZSBQcmVzaWRlbmN5LCBtYWtpbmcgdXAgdGhlIENvbnRyYWN0IFJldmlldw0KUGFuZWwgKENSUCkgc2V0IHVwIGJ5IHRoZSBGZWRlcmFsIEdvdmVybm1lbnQgb2YNCk5pZ2VyaWEgdG8gcmV2aWV3IGNvbnRyYWN0cyBhd2FyZGVkIGJ5IHRoZSBwYXN0DQptaWxpdGFyeSBhZG1pbmlzdHJhdGlvbi4NCg0KSW4gdGhlIGNvdXJzZSBvZiBvdXIgd29yayBvbiB0aGUgQ1JQLCB3ZSBkaXNjb3ZlcmVkDQp0aGlzIGZ1bmQgd2hpY2ggcmVzdWx0ZWQgZnJvbSBncm9zc2x5IG92ZXItaW52b2ljZWQNCmNvbnRyYWN0cyAgd2hpY2ggd2VyZSBleGVjdXRlZCBmb3IgdGhlRk1XJkggZHVyaW5nIHRoZQ0KbGFzdCBhZG1pbmlzdHJhdGlvbi4gVGhlIGNvbXBhbmllcyB0aGF0IGV4ZWN1dGVkIHRoZQ0KY29udHJhY3RzIGhhdmUgYmVlbiBkdWx5IHBhaWQgYW5kIHRoZSBjb250cmFjdHMNCmNvbW1pc3Npb25lZCBsZWF2aW5nIHRoZSBzdW0gb2YgVVMkMTcuNCBNaWxsaW9uDQpmbG9hdGluZyBpbiB0aGUgZXNjcm93IGFjY291bnQgb2YgdGhlIENlbnRyYWwgQmFuayBvZg0KTmlnZXJpYSByZWFkeSBmb3IgcGF5bWVudC4NCg0KSSBoYXZlIHRoZXJlZm9yZSBiZWVuIG1hbmRhdGVkIGFzIGEgbWF0dGVyIG9mIHRydXN0IGJ5DQpteSBjb2xsZWFndWVzIGluIHRoZSBwYW5lbCB0byBsb29rIGZvciBhbiBvdmVyc2Vhcw0KcGFydG5lciB0byB3aG9tIHdlIGNvdWxkIHRyYW5zZmVyIHRoZSBzdW0gb2YgVVMkMTcuNE0NCmxlZ2FsbHkgc3ViY29udHJhY3RpbmcgdGhlIGVudGl0bGVtZW50IHRvIHlvdXINCmNvbXBhbnkuIFRoaXMgaXMgYmVhcmluZyBpbiBtaW5kIHRoYXQgb3VyIGNpdmlsDQpzZXJ2aWNlIGNvZGUgb2YgY29uZHVjdCBmb3JiaWRzIHVzIGZyb20gb3duaW5nIA0KZm9yZWlnbiBjb21wYW55IG9yIHJ1bm5pbmcgIGZvcmVpZ24gYWNjb3VudCB3aGlsZSBpbg0KZ292ZXJubWVudCBzZXJ2aWNlIGhlbmNlIHRoZSBuZWVkIGZvciBhbiBvdmVyc2Vhcw0KcGFydG5lci4NCg0KV2UgaGF2ZSBhZ3JlZWQgdGhhdCB0aGUgZnVuZHMgd2lsbCBiZSBzaGFyZWQgdGh1cw0KYWZ0ZXIgaXQgaGFzIGJlZW4gcGFpZCBpbnRvIHlvdXIgYWNjb3VudDoNCg0KKDEpIDMwJSBvZiB0aGUgbW9uZXkgd2lsbCBnbyB0byB5b3UgZm9yIGFjdGluZyBhcyB0aGUNCmJlbmVmaWNpYXJ5IG9mIHRoZSBmdW5kLg0KKDIpIDEwJSBoYXMgYmVlbiBzZXQgYXNpZGUgYXMgYW4gYWJzdHJhY3QgcHJvamVjdGlvbg0KZm9yIHJlaW1idXJzbWVudCB0byBib3RoIHBhcnRpZXMgZm9yIGluY2lkZW50YWwNCmV4cGVuY2VzIHRoYXQgbWF5IGJlIGluY3VycmVkIGluIHRoZSBjb3Vyc2Ugb2YgdGhlDQp0cmFuc2FjdGlvbi4NCigzKSA2MCUgdG8gdXMgdGhlIGdvdmVybm1lbnQgb2ZmaWNpYWxzICh3aXRoIHdoaWNoIHdlDQp3aXNoIHRvIGNvbW1lbmNlIGFuIGltcG9ydGF0aW9uIGJ1c2luZXNzIGluDQpjb25qdW5jdGlvbiB3aXRoIHlvdSApLg0KIA0KQWxsIGxvZ2lzdGljcyBhcmUgaW4gcGxhY2UgYW5kIGFsbCBtb2RhbGl0aWVzIHdvcmtlZA0Kb3V0IGZvciB0aGUgc21vb3RoIGNvbmNsdXNpb24gb2YgdGhlIHRyYW5zYWN0aW9uIA0Kd2l0aGluIHRlbiB0byBmb3VydGVlbiBkYXlzIG9mIGNvbW1lbmNlbWVudCBhZnRlcg0KcmVjZWlwdCBvZiB0aGUgZm9sbG93aW5nIGluZm9ybWF0aW9uOiAgWW91ciBjb21wYW55DQpuYW1lLCBhZGRyZXNzLCBjb21wYW55J3MgZGV0YWlscyAmIGFjdGl2aXRpZXMsDQp0ZWxlcGhvbmUgJiBmYXggbnVtYmVycy4NCg0KVGhlc2UgaW5mb3JtYXRpb24gd2lsbCBlbmFibGUgdXMgbWFrZSB0aGUgYXBwbGljYXRpb25zDQphbmQgbG9kZ2UgY2xhaW1zIHRvIHRoZSBjb25jZXJuZWQgbWluaXN0cmllcyAmDQphZ2VuY2llcyBpbiBmYXZvdXIgb2YgeW91ciBjb21wYW55IGFuZCBpdCBpcyBwZXJ0aW5lbnQNCnRvIHN0YXRlIGhlcmUgdGhhdCB0aGlzIHRyYW5zYWN0aW9uIGlzIGVudGlyZWx5ICBiYXNlZA0Kb24gdHJ1c3QgYXMgdGhlIHNvbGFyIGJhbmsgZHJhZnQgb3IgY2VydGlmaWVkIGNoZXF1ZQ0KZHJhd2FibGUgaW4gYW55IG9mIHRoZSBDZW50cmFsIEJhbmsgb2YgTmlnZXJpYQ0KY29ycmVzcG9uZGVudCBiYW5rZXJzIGFyb3VuZCB0aGUgd29ybGQgaXMgZ29pbmcgdG8gYmUNCm1hZGUgaW4geW91ciBuYW1lLg0KDQpsZWFzZSBhY2tub3dsZWRnZSB0aGUgcmVjZWlwdCBvZiB0aGlzIGxldHRlciB1c2luZyBteQ0KICAgICANCnRhdGluZyB5b3VyIHRlbC9mYXggbnVtYmVyIGZvcg0KZnVydGhlciBkZXRhaWxzLg0KDQpZb3VycyBmYWl0aGZ1bGx5LA0KDQpFTkdSLkFMSSBSQVpBSy4NCg0KDQoNCg0KDQoNCg0KDQoNCg0KDQoNCiA="}}},{"rowIdx":8132,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"Good Day=2C I must not hesitate to confide in you this simple and sincere request business for our mutual benefit=2E I am James Nimely =2Cthe son of the late Mr=2E Steve Nimely from Republic of Liberia=2EMy father was a prosperous Gold and Diamond merchant in Monrovia=2Ccapital of the Republic of Liberia=2Cmy father was a very good friend of former president Charles Taylor =2EMy family was attacked by unknown assassins =2EMy mother and sister died instantly but my father died after five days in a private hospital=2E I didn't know that my father was going to leave me after I had lost my mother and sister=2EBefore my father gave up the ghost=2CHe secretly disclosed to me that he deposited the sum of US $7=2C236=2C051=2E00 in a private finance and security company in DAKAR the capital city of SENEGAL =2E I'm presently in Senegal but since I has no experience or interest in this type of business he advised me to seek a reliable and trust worthy business partner who will assist me to secure and transfer this funds abroad strictly for investment purposes and for guidance=2ENow I am soliciting for your assistance to help me to secure and transfer this fund to your account holding on my behalf and aid me to leave Africa and invest this fund in any meaningful lucrative business in your country =2E You shall be entitled to a significant portion of the fund=2E=2E Waiting anxiously to hear from you so that we can discuss the modalities of this transaction=2E Thanks for your kind attention and expected positive response=2E Yours Sincerely=2C James Nimely=2EAlternative email nimely26=40inmail24=2Ecom"}}},{"rowIdx":8133,"cells":{"label":{"kind":"string","value":"FRAUD"},"text":{"kind":"string","value":"