نتایج جستجو برای: imra ul

تعداد نتایج: 4949  

Journal: :Lymphology 2002
W L Olszewski U Kubicka

Obstructive lymphedema of extremities in humans is characterized by swelling of tissues with lymph stasis and inflammatory infiltrates in skin and subcutaneous tissues. Treatment of the inflammatory component requires application of antiinflammatory drugs. We studied the effect of topical application of Unguentum Lymphaticum (UL) containing antiphlogistic compounds (digitalis, calendulin, hyosc...

Journal: :Jornal de pediatria 2012
Clarissa G Carvalho Mariana R Ribeiro Mariana M Bonilha Mauro Fernandes Renato S Procianoy Rita C Silveira

OBJECTIVE To analyze the frequency of unlicensed (UL) and off-label (OL) prescriptions in neonates admitted to the neonatal intensive care unit of a tertiary care hospital and to determine their association with patients' severity. METHODS Observational cohort study including drugs prescribed during hospitalization of neonates over a 6-week period between July and August 2011. The drugs were ...

2013
Paritosh K. Pandya Simoni S. Shah

The class of Unambiguous Star-Free Regular Languages (UL) was defined by Schutzenberger as the class of languages defined by Unambiguous Polynomials. UL has been variously characterized (over finite words) by logics such as TL[Xa,Ya], UITL, TL[F,P], FO2[<], the variety DA of monoids, as well as partially-ordered two-way DFA (po2dfa). We revisit this language class with emphasis on notion of una...

2017
Arna Teigen Siri Wang Bich Thuy Truong Kathrin Bjerknes

OBJECTIVES The aim of this study was to investigate the use of off-label (OL) and unlicensed (UL) medicines to hospitalised children in Norway, to add to the current knowledge on use of medicines in this vulnerable patient group. METHODS The study was performed as a cross-sectional prospective study. Medication was classified as on- or off-label based on the comparison with the SmPC regarding...

2014
Hirotaka TOMIYASU Yuko GOTO-KOSHINO Yasuhito FUJINO Koichi OHNO Hajime TSUJIMOTO

Treatments for canine lymphoma often fail, because tumor cells acquire multidrug resistance (MDR). MDR can develop through several mechanisms, among which the overexpression of drug transporters in tumor cells is a well-studied mechanism. ATP-binding cassette sub-family G member 2 (ABCG2) belongs to the ABC-transporters, that are representative drug efflux pumps associated with MDR in human tum...

2012
Demetrius H. Bagley Kelly A. Healy Nir Kleinmann

OBJECTIVES To evaluate the current status of ureteroscopic lithotripsy (UL) for treating renal calculi of >2 cm, as advances in flexible ureteroscope design, accessory instrumentation and lithotrites have revolutionised the treatment of urinary calculi. While previously reserved for ureteric and small renal calculi, UL has gained an increasing role in the selective management of larger renal st...

Journal: :EURASIP J. Wireless Comm. and Networking 2017
Mingyu Lee Yunmin Kim Tae-Jin Lee

In a large-scale group communication networks, we propose a slotted-Aloha-based access control (SA-AC) scheme with the optimal transmission probability (TP) using the stochastic geometry. Since the performance of SA-AC scheme depends on the TP of the members in a group, the analytical model presents a joint view for the downlink (DL) and the uplink (UL) with TP of the members in a group. We pre...

2013
Sung Min Son Yong Hyun Kwon Na Kyung Lee Seok Hyun Nam Kyoung Kim

[Purpose] Previous studies have reported on motor deficits in the ipsilateral upper limbs (UL) of a damaged brain hemisphere in motor tasks. However, little is known about sensory deficits on the ipsilateral side. Therefore, we investigated whether both motor and sensory function of the ipsilateral UL are affected in patients with stroke. [Subjects and Methods] Fifty patients with unilateral st...

Journal: :CoRR 2017
Lorenzo Galati Giordano Luca Campanalonga David López-Pérez Adrian García-Rodríguez Giovanni Geraci Paolo Baracca Maurizio Magarini

To guarantee the success of massive multiple-input multiple-output (MIMO), one of the main challenges to solve is the efficient management of pilot contamination. Allocation of fully orthogonal pilot sequences across the network would provide a solution to the problem, but the associated overhead would make this approach infeasible in practical systems. Ongoing fifth-generation (5G) standardisa...

Journal: :American journal of human genetics 2012
Stacey L Eggert Karen L Huyck Priya Somasundaram Raghava Kavalla Elizabeth A Stewart Ake T Lu Jodie N Painter Grant W Montgomery Sarah E Medland Dale R Nyholt Susan A Treloar Krina T Zondervan Andrew C Heath Pamela A F Madden Lynda Rose Julie E Buring Paul M Ridker Daniel I Chasman Nicholas G Martin Rita M Cantor Cynthia C Morton

Uterine leiomyomata (UL), the most prevalent pelvic tumors in women of reproductive age, pose a major public health problem given their high frequency, associated morbidities, and most common indication for hysterectomies. A genetic component to UL predisposition is supported by analyses of ethnic predisposition, twin studies, and familial aggregation. A genome-wide SNP linkage panel was genoty...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->