text
stringlengths
13
30k
{"qas_id": "3zotghdk5ibi9cex97fepx7jetpso7 9", "question_text": ["how many? five [SEP]", "what-all that official a name that A Vat? The Vatican Apostolic Library [SEP]", "where being the thing?"], "doc_tokens": ["The", "Vatican", "Apostolic", "Library", "(", ")", ",", "more", "commonly", "called", "the", "Vatican", "Li...
{"qas_id": "3zotghdk5ibi9cex97fepx7jetpso7 10", "question_text": ["what-all that official a name that A Vat? The Vatican Apostolic Library [SEP]", "where being the thing? in Vatican City [SEP]", "how many a-printed book do em containing?"], "doc_tokens": ["The", "Vatican", "Apostolic", "Library", "(", ")", ",", "more",...
{"text": "A Porthcawl RNLI crew with a medic and the coastguard search and rescue helicopter were sent to Sker Beach, near Kenfig Nature Reserve, at 12:50 GMT on Sunday.\nCrewman Chris Page said the rider had head injuries and was very cold from lying unconscious on wet sand.\nShe was treated before being flown to Card...
{"text": "Verheydt, who had been with Maastricht since 2015, has signed a three-year contract with Harry Kewell's side.\nThe 25-year-old scored 13 goals in 43 appearances in all competitions last season.\nMeanwhile, Watford winger Dennon Lewis, 20, has joined the Reds on a loan deal until 31 December.\nLewis, who made ...
{"text": "The 32-year-old had been playing in the Isthmian Premier Division with Leatherhead following his release by Newport at the end of last season.\nPidgeley has made 260 appearances in spells with nine clubs, including Chelsea, Watford and Millwall.\nForest Green are currently second in the National League table,...
{"text": "The suspected green mamba was found on a ship that had docked in Aberdeen from west Africa last month.\nThe snake died after it was placed in a freezer by the animal charity after attempts to rehome it with specialist reptile keepers failed.\nThe snake was later identified as a harmless green tree snake.\nPol...
{"text": "The all-rounder has been included in the T20 squad to face Sri Lanka on 5 July at the Ageas Bowl, having been part of the World T20 squad in March.\n\"It's nice to be involved again,\" the 26-year-old slow left-armer and right-handed batsman told BBC Radio Solent.\n\"I wasn't expecting to be as I thought Moee...
{"text": "The Egypt-backed plan had envisaged a regional forum which analysts say might have forced Israel to reveal whether or not it has nuclear weapons.\nThe proposal was blocked by the US, the UK and Canada. The next review is set for 2020.\nIsrael neither confirms nor denies it has a stockpile of nuclear weapons....
{"text": "Mothers-to-be are more likely to get malaria as their immunity is lowered, says the Royal College of Obstetricians and Gynaecologists (RCOG).\nMalaria carries serious risks for mother and baby including miscarriage, stillbirth and premature labour.\nThe tropical disease is transmitted by mosquitoes and causes...
{"text": "Researchers at the University of Sheffield said the tumours were effectively \"fertilising\" the bone to help themselves grow.\nThe study, in the journal Nature, said it may be possible to protect bone from a tumour's nefarious influence and consequently stop the cancer's spread.\nCancer charities said this o...
{"pmid": "20979028", "title": "Ciona intestinalis Noto4 contains a phosphotyrosine interaction domain and is involved in the midline intercalation of notochord cells.", "text": "Brachyury plays a pivotal role in the notochord formation in ascidian embryos. Ciona intestinalis Noto4 (Ci-Noto4) was isolated as a gene down...
{"pmid": "20979027", "title": "Direct control of Hoxd1 and Irx3 expression by Wnt/beta-catenin signaling during anteroposterior patterning of the neural axis in Xenopus.", "text": "During and after gastrulation, the neural axis in vertebrates is patterned along the antero-posterior axis by the combined activity of sign...
{"pmid": "20979026", "title": "Casein kinase I epsilon somatic mutations found in breast cancer cause overgrowth in Drosophila.", "text": "We are using a candidate gene approach to identify genes contributing to cancer through somatic mutation. Somatic mutations were found in breast cancer samples in the human casein k...
{"pmid": "20979025", "title": "Inter-species transplantation and migration of primordial germ cells in cyprinid fish.", "text": "Primordial germ cells (PGCs) are the only cells in developing embryos that can transmit genetic information to the next generation. PGCs therefore have considerable potential value for gene b...
{"pmid": "20979024", "title": "The transcriptional coactivators Yap and TAZ are expressed during early Xenopus development.", "text": "The Yap and TAZ genes encode highly conserved domains which bind various transcription factors. Yap and TAZ act as transcriptional coactivators to modulate transcriptional activity. The...
{"text": "module Key = struct type t = { tag : Dwarf_tag . t ; has_children : Child_determination . t ; attribute_specs : Dwarf_attributes . Attribute_specification . Sealed . Set . t } include Identifiable . Make ( struct type nonrec t = t let compare { tag = tag1 ; has_children = h...
{"text": "type t = Abbreviations_table_entry . t Key . Map . t"}
{"text": "let create ( ) = Key . Map . empty"}
{"text": "let add t entry = let tag = Abbreviations_table_entry . tag entry in let has_children = Abbreviations_table_entry . has_children entry in let attribute_specs = Abbreviations_table_entry . attribute_specs entry in let key : Key . t = { tag ; has_children ; attribute_specs } in Key . Map...
{"text": "let find t ~ tag ~ has_children ~ attribute_specs = let key : Key . t = { tag ; has_children ; attribute_specs } in match Key . Map . find key t with | exception Not_found -> None | entry -> Some ( Abbreviations_table_entry . abbreviation_code entry ) "}
{"text": "let size t = let ( + ) = Dwarf_int . add in Dwarf_value . size ( Dwarf_value . uleb128 Uint64 . zero ) + Key . Map . fold ( fun _key entry size -> size + Abbreviations_table_entry . size entry ) t ( Dwarf_int . zero ( ) ) "}
{"text": "let emit ~ asm_directives t = let module Asm_directives = ( val asm_directives : Asm_directives . S ) in Key . Map . iter ( fun _key entry -> Asm_directives . new_line ( ) ; Abbreviations_table_entry . emit ~ asm_directives entry ) t ; Dwarf_value . emit ~ asm_directives ( ...
{"text": "type t = { abbreviation_code : Abbreviation_code . t ; tag : Dwarf_tag . t ; has_children : Child_determination . t ; attribute_specs : Dwarf_attributes . Attribute_specification . Sealed . Set . t } "}
{"text": "let create ~ abbreviation_code ~ tag ~ has_children ~ attribute_specs = { abbreviation_code ; tag ; has_children ; attribute_specs } "}
{"text": "let size t = let ( + ) = Dwarf_int . add in Abbreviation_code . size t . abbreviation_code + Dwarf_tag . size t . tag + Child_determination . size t . has_children + AS . Set . fold ( fun attr_spec size -> Dwarf_int . add size ( AS . size attr_spec ) ) t . attribute_...
{"num1": "2", "operation": "subtract", "num2": "3", "output": "0", "flag": "wrong sign"}
{"num1": "2", "operation": "subtract", "num2": "2", "output": "0", "flag": "other"}
{"num1": "1", "operation": "add", "num2": "0", "output": "1", "flag": "wrong sign"}
{"num1": "1", "operation": "add", "num2": "0", "output": "1", "flag": "off by one"}
{"num1": "4", "operation": "subtract", "num2": "3", "output": "1", "flag": "off by one"}
{"num1": "4", "operation": "subtract", "num2": "3", "output": "1", "flag": "other"}
{"num1": "4", "operation": "subtract", "num2": "3", "output": "1", "flag": "other"}
{"num1": "8", "operation": "subtract", "num2": "3", "output": "1", "flag": "other"}
{"num1": "8", "operation": "subtract", "num2": "3", "output": "1", "flag": "new"}
{"num1": "8", "operation": "subtract", "num2": "3", "output": "1", "flag": "new"}
{"text": "turning now to the drawings , there is shown in fig1 an integrated circuit continuity testing system in which a specimen or circuit configuration 16 is mounted on a fixture 18 operable to vibrate the specimen under controlled conditions , e . g . sinusoidally , randomly , or a combination of the two . the spe...
{"text": "with reference to fig1 , a height adjustable work seat 100 suitable for use by an automotive mechanic or other professional is shown . the height adjustable work seat has two major positions of operation , namely a full or maximum height and a very low or minimum height . at intermediate positions of operatio...
{"text": "Go Dick.", "meta": {"pile_set_name": "Enron Emails"}, "score": 0.125}
{"text": "is this porn", "meta": {"pile_set_name": "Enron Emails"}, "score": 0.08333333333333333}
{"text": "Latina with big tits sucks the best dick", "meta": {"pile_set_name": "OpenWebText2"}, "score": 0.075}
{"text": "Two Rough Cocks for the Slut", "meta": {"pile_set_name": "OpenWebText2"}, "score": 0.07142857142857142}
{"text": "(xxx: number)\n", "meta": {"pile_set_name": "Github"}, "score": 0.07142857142857142}
{"text": "Grinding, sloppy bj, handjob, anal fingering and cumshot on ass in hotel", "meta": {"pile_set_name": "OpenWebText2"}, "score": 0.06944444444444445}
{"text": "SECTION 1. MODIFICATIONS OF REPORTING REQUIREMENTS FOR CERTAIN STATE \n AND LOCAL POLITICAL ORGANIZATIONS.\n\n (a) Notification.--Paragraph (5) of section 527(i) of the Internal \nRevenue Code of 1986 (relating to organizations must notify Secretary \nthat they are section 527 organizations) i...
{"text": "SECTION 1. SHORT TITLE.\n\n This title may be cited as the ``Temporary Emergency Unemployment \nCompensation Act of 2001''.\n\nSEC. 2. FEDERAL-STATE AGREEMENTS.\n\n (a) In General.--Any State which desires to do so may enter into \nand participate in an agreement under this title with the Secretary of \...
{"text": "SECTION 1. SHORT TITLE.\n\n This Act may be cited as the ``Combating Climate Change Through \nIndividual Action Act of 2008''.\n\nSEC. 2. FINDINGS.\n\n Congress finds the following:\n (1) Agricultural, grassland, and forestry practices play an \n essential role in capturing atmospheric...
{"text": "SECTION 1. SHORT TITLE.\n\n This Act may be cited as the ``Lower Colorado River Multi-Species \nConservation Program Act''.\n\nSEC. 2. DEFINITIONS.\n\n In this Act:\n (1) Lower colorado river multi-species conservation \n program.--The term ``Lower Colorado River Multi-Species \n ...
{"text": "SECTION 1. SHORT TITLE.\n\n This Act may be cited as the ``Clearwater Basin Project Act''.\n\nSEC. 2. DEFINITIONS.\n\n (a) Definitions.--In this Act:\n (1) Advisory panel.--The term ``advisory panel'' means the \n Clearwater Advisory Panel, established by the Secretary under \n ...
{"text": "SECTION 1. SHORT TITLE; REFERENCES TO TITLE 38, UNITED STATES CODE.\n\n (a) Short Title.--This Act may be cited as the ``Veterans Programs \nImprovement Act of 2003''.\n (b) References.--Except as otherwise expressly provided, wherever \nin this Act an amendment is expressed in terms of an amendment to ...
{"text": "SECTION 1. SHORT TITLE.\n\n This Act may be cited as the ``Iran Nonproliferation Amendments Act \nof 2005''.\n\nSEC. 2. FINDINGS.\n\n Congress makes the following findings:\n (1) The Director of Central Intelligence's most recent \n Unclassified Report to Congress on the Acquisition of Technol...
{"text": "SECTION 1. SHORT TITLE.\n\n This Act may be cited as the ``National Park Service \nEntrepreneurial Management Reform Act of 1994''.\n\nSEC. 2. FEES.\n\n (a) Admission Fees.--Section 4(a) of the Land and Water \nConservation Fund Act of 1965 (16 U.S.C. 460l-4 and following) is \namended as follows:\n ...
{"text": "SECTION 1. SHORT TITLE.\n\n This Act may be cited as the ``Overseas Citizens Voting Rights Act \nof 1996''.\n\nSEC. 2. EXTENSION OF PERIOD FOR RECEIPT OF ABSENTEE BALLOTS.\n\n Section 102 of the Uniformed and Overseas Citizens Absentee Voting \nAct (42 U.S.C. 1973ff-1) is amended--\n (1) by s...
{"text": "SECTION 1. SHORT TITLE.\n\n This Act may cited as the ``District of Columbia Full Self-\nGovernment Act''.\n\n TITLE I--STATUS OF THE DISTRICT OF COLUMBIA\n\nSEC. 101. STATUS OF THE DISTRICT.\n\n (a) In General.--All of the territory constituting the permanent \nseat of the Government of th...
{"name": "v0.2", "description": "", "created_at": "2022-04-07 16:58:27.395266+00:00", "dataset": {"name": "crack-segmentation", "description": "", "category": "Street scenery", "created_at": "2022-04-07 16:46:05.009133+00:00", "owner": "kniemiec", "task_type": "segmentation-bitmap", "task_attributes": {"format_version"...
{"input": {"count": [1, 4, 1], "value": [4, 1, 2]}, "dialogue": "THEM: i would like 4 hats and you can have the rest . <eos> YOU: deal <eos> THEM: <selection>", "output": "item0=1 item1=0 item2=1 item0=0 item1=4 item2=0", "partner_input": {"count": [1, 4, 1], "value": [0, 2, 2]}}
{"input": {"count": [1, 4, 1], "value": [0, 2, 2]}, "dialogue": "YOU: i would like 4 hats and you can have the rest . <eos> THEM: deal <eos> YOU: <selection>", "output": "item0=0 item1=4 item2=0 item0=1 item1=0 item2=1", "partner_input": {"count": [1, 4, 1], "value": [4, 1, 2]}}
{"input": {"count": [1, 3, 1], "value": [2, 2, 2]}, "dialogue": "THEM: hi i would like the book and ball and you can have the hats <eos> YOU: i can give you either the book or the ball <eos> THEM: ill take the book <eos> YOU: ok i will take the hats and ball <eos> THEM: deal <eos> YOU: <selection>", "output": "item0=0 ...
{"input": {"count": [1, 3, 1], "value": [10, 0, 0]}, "dialogue": "YOU: hi i would like the book and ball and you can have the hats <eos> THEM: i can give you either the book or the ball <eos> YOU: ill take the book <eos> THEM: ok i will take the hats and ball <eos> YOU: deal <eos> THEM: <selection>", "output": "item0=1...
{"input": {"count": [4, 1, 2], "value": [1, 6, 0]}, "dialogue": "YOU: i would like the hat and 3 books <eos> THEM: can i have the hat and the balls ? <eos> YOU: i need to have the hat <eos> THEM: take the books and give me the hat , its a win win , right ? <eos> YOU: no it's not <eos> THEM: <selection>", "output": "<di...
{"input": {"count": [1, 3, 2], "value": [1, 1, 3]}, "dialogue": "THEM: lemme get that book and ball ! <eos> YOU: i need 2 balls and a hat <eos> THEM: i'll take the book and two hats then ? <eos> YOU: ok <eos> THEM: <selection>", "output": "item0=0 item1=1 item2=2 item0=1 item1=2 item2=0", "partner_input": {"count": [1,...
{"input": {"count": [1, 3, 2], "value": [10, 0, 0]}, "dialogue": "YOU: lemme get that book and ball ! <eos> THEM: i need 2 balls and a hat <eos> YOU: i'll take the book and two hats then ? <eos> THEM: ok <eos> YOU: <selection>", "output": "item0=1 item1=2 item2=0 item0=0 item1=1 item2=2", "partner_input": {"count": [1,...
{"input": {"count": [1, 2, 4], "value": [6, 0, 1]}, "dialogue": "THEM: hello . i would like the book and one ball . <eos> YOU: you can have one ball 1 hat <eos> THEM: i need the book or it's no deal . <eos> YOU: no deal i am keeping the book <eos> THEM: ok no deal <eos> YOU: okay sounds good <eos> THEM: alright <eos> Y...
{"input": {"count": [1, 2, 4], "value": [8, 1, 0]}, "dialogue": "YOU: hello . i would like the book and one ball . <eos> THEM: you can have one ball 1 hat <eos> YOU: i need the book or it's no deal . <eos> THEM: no deal i am keeping the book <eos> YOU: ok no deal <eos> THEM: okay sounds good <eos> YOU: alright <eos> TH...
{"input": {"count": [3, 1, 2], "value": [1, 3, 2]}, "dialogue": "THEM: i love basketball and reading <eos> YOU: no . i want the hat and the balls <eos> THEM: both balls ? <eos> YOU: yeah or 1 ball and 1 book <eos> THEM: ok i want the hat and you can have the rest <eos> YOU: okay deal ill take the books and the balls yo...
{"Unnamed: 0": 1, "summary": "The betting place used a system of video surveillance illegally because it filmed the public space (the sidewalk). Private individuals are not allowed to do this on a large scale like in this case.", "summary_lemma_stop": " bet place use system video surveillance illegally film public...
{"Unnamed: 0": 3, "summary": "The video surveillance cameras had been misused, clearly not in accord with the data minimization principle.", "summary_lemma_stop": " video surveillance cameras misuse clearly accord data minimization principle", "Art_5": 1, "Art_6": 0, "Art_32": 0, "otro": 0}
{"Unnamed: 0": 4, "summary": "HVV GmbH had not reported a data breach to the data protection authority in due time. This data breach was related to the security gap in the Customer E-Service, in that that clients with an HVV card who logged in the CES could access the data of other customers by changing the URL to matc...
{"Unnamed: 0": 5, "summary": "Personal data was disclosed to a third party. No further details were revealed.", "summary_lemma_stop": "personal data disclose third party detail reveal", "Art_5": 0, "Art_6": 1, "Art_32": 0, "otro": 0}
{"Unnamed: 0": 6, "summary": "The data controller could not provide access to personal information to a patient because the dossier could not be identified. The patient complained to the Commissioner about this, and the hospital was fined 5.000 Euros.", "summary_lemma_stop": " data controller could provide access per...
{"Unnamed: 0": 7, "summary": "Leave.EU subscriber emails contained marketing ads related to the GoSkippy services of the Eldon Insurance firm. The data subjects did not give their consent to this, hence the fine issued by the ICO.", "summary_lemma_stop": "leaveeu subscriber email contain market ads relate goskippy se...
{"Unnamed: 0": 0, "text": "lilylee06067831 <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"Unnamed: 0": 1, "text": "gregskupien <bio> <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"Unnamed: 0": 2, "text": "jimitjim <bio> Computer vision | Image and signal processing | Pattern recognition | Machine learning | Artificial intelligence | Mixed reality <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"Unnamed: 0": 3, "text": "saby_tweets <bio> PhD Student @Mila_Quebec @IID_ULaval @universitelaval | ex-@nvidia, masters @iiscbangalore | robust deep learning, autonomous driving, OOD, XAI <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"Unnamed: 0": 4, "text": "ajit1113 <bio> Actor at Asmita theater\nWanna be a storyteller. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"Unnamed: 0": 5, "text": "miguelbandera <bio> #ML #3DArt #GameDev #VR #AR #photogrammetry <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"Unnamed: 0": 6, "text": "mgrankin <bio> The human right is to become an immortal all-mighty god. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"Unnamed: 0": 7, "text": "carton_mn <bio> 23.\nMERN stack, in progress\nHumanities, in progress <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"Unnamed: 0": 8, "text": "YuanLiu41955461 <bio> PhD student at The University of Hong Kong. Doing research about 3D vision and computer graphics. <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"Unnamed: 0": 9, "text": "MahyarBolhassan <bio> https://t.co/DP6muBl1Li. in biomedical engineering, machine learning & deep learning enthusiast <title> HM3D-ABO: A Photo-realistic Dataset for Object-centric Multi-view 3D Reconstruction", "label": 1}
{"id": "5733be284776f41900661182", "title": "University_of_Notre_Dame", "context": "Architecturally, the school has a Catholic character. Atop the Main Building's gold dome is a golden statue of the Virgin Mary. Immediately in front of the Main Building and facing it, is a copper statue of Christ with arms upraised wit...
{"id": "5733be284776f4190066117f", "title": "University_of_Notre_Dame", "context": "Architecturally, the school has a Catholic character. Atop the Main Building's gold dome is a golden statue of the Virgin Mary. Immediately in front of the Main Building and facing it, is a copper statue of Christ with arms upraised wit...
{"id": "5733be284776f41900661180", "title": "University_of_Notre_Dame", "context": "Architecturally, the school has a Catholic character. Atop the Main Building's gold dome is a golden statue of the Virgin Mary. Immediately in front of the Main Building and facing it, is a copper statue of Christ with arms upraised wit...
{"id": "5733be284776f41900661181", "title": "University_of_Notre_Dame", "context": "Architecturally, the school has a Catholic character. Atop the Main Building's gold dome is a golden statue of the Virgin Mary. Immediately in front of the Main Building and facing it, is a copper statue of Christ with arms upraised wit...
{"id": "5733be284776f4190066117e", "title": "University_of_Notre_Dame", "context": "Architecturally, the school has a Catholic character. Atop the Main Building's gold dome is a golden statue of the Virgin Mary. Immediately in front of the Main Building and facing it, is a copper statue of Christ with arms upraised wit...
{"id": "5733bf84d058e614000b61be", "title": "University_of_Notre_Dame", "context": "As at most other universities, Notre Dame's students run a number of news media outlets. The nine student-run outlets include three newspapers, both a radio and television station, and several magazines and journals. Begun as a one-page...
{"id": "5733bf84d058e614000b61bf", "title": "University_of_Notre_Dame", "context": "As at most other universities, Notre Dame's students run a number of news media outlets. The nine student-run outlets include three newspapers, both a radio and television station, and several magazines and journals. Begun as a one-page...
{"id": "5733bf84d058e614000b61c0", "title": "University_of_Notre_Dame", "context": "As at most other universities, Notre Dame's students run a number of news media outlets. The nine student-run outlets include three newspapers, both a radio and television station, and several magazines and journals. Begun as a one-page...
{"id": "5733bf84d058e614000b61bd", "title": "University_of_Notre_Dame", "context": "As at most other universities, Notre Dame's students run a number of news media outlets. The nine student-run outlets include three newspapers, both a radio and television station, and several magazines and journals. Begun as a one-page...
{"id": "5733bf84d058e614000b61c1", "title": "University_of_Notre_Dame", "context": "As at most other universities, Notre Dame's students run a number of news media outlets. The nine student-run outlets include three newspapers, both a radio and television station, and several magazines and journals. Begun as a one-page...
{"translation": {"Spanish": "Gracias .", "Italian": "Grazie ."}}
{"text": "A Porthcawl RNLI crew with a medic and the coastguard search and rescue helicopter were sent to Sker Beach, near Kenfig Nature Reserve, at 12:50 GMT on Sunday.\nCrewman Chris Page said the rider had head injuries and was very cold from lying unconscious on wet sand.\nShe was treated before being flown to Card...
{"text": "Verheydt, who had been with Maastricht since 2015, has signed a three-year contract with Harry Kewell's side.\nThe 25-year-old scored 13 goals in 43 appearances in all competitions last season.\nMeanwhile, Watford winger Dennon Lewis, 20, has joined the Reds on a loan deal until 31 December.\nLewis, who made ...
{"text": "The 32-year-old had been playing in the Isthmian Premier Division with Leatherhead following his release by Newport at the end of last season.\nPidgeley has made 260 appearances in spells with nine clubs, including Chelsea, Watford and Millwall.\nForest Green are currently second in the National League table,...
{"text": "The suspected green mamba was found on a ship that had docked in Aberdeen from west Africa last month.\nThe snake died after it was placed in a freezer by the animal charity after attempts to rehome it with specialist reptile keepers failed.\nThe snake was later identified as a harmless green tree snake.\nPol...
{"text": "The all-rounder has been included in the T20 squad to face Sri Lanka on 5 July at the Ageas Bowl, having been part of the World T20 squad in March.\n\"It's nice to be involved again,\" the 26-year-old slow left-armer and right-handed batsman told BBC Radio Solent.\n\"I wasn't expecting to be as I thought Moee...
{"text": "The Egypt-backed plan had envisaged a regional forum which analysts say might have forced Israel to reveal whether or not it has nuclear weapons.\nThe proposal was blocked by the US, the UK and Canada. The next review is set for 2020.\nIsrael neither confirms nor denies it has a stockpile of nuclear weapons....
{"text": "Mothers-to-be are more likely to get malaria as their immunity is lowered, says the Royal College of Obstetricians and Gynaecologists (RCOG).\nMalaria carries serious risks for mother and baby including miscarriage, stillbirth and premature labour.\nThe tropical disease is transmitted by mosquitoes and causes...
{"text": "Researchers at the University of Sheffield said the tumours were effectively \"fertilising\" the bone to help themselves grow.\nThe study, in the journal Nature, said it may be possible to protect bone from a tumour's nefarious influence and consequently stop the cancer's spread.\nCancer charities said this o...
{"id": "1", "text": "@piddy_x @nero @cyberstalin kungcono umzamo ngesikhathi inkulumo yokulingisa @godfreyelfwick. #proteinworld #baltimoreriots #socialism #semst", "target": "Feminist Movement", "stance": 2}