日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
十個Pandas的另類數(shù)據(jù)處理技巧

本文所整理的技巧與以前整理過10個Pandas的常用技巧不同,你可能并不會經(jīng)常的使用它,但是有時候當(dāng)你遇到一些非常棘手的問題時,這些技巧可以幫你快速解決一些不常見的問題。

創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供青秀網(wǎng)站建設(shè)、青秀做網(wǎng)站、青秀網(wǎng)站設(shè)計、青秀網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、青秀企業(yè)網(wǎng)站模板建站服務(wù),十多年青秀做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。

1、Categorical類型

默認(rèn)情況下,具有有限數(shù)量選項的列都會被分配object 類型。 但是就內(nèi)存來說并不是一個有效的選擇。 我們可以這些列建立索引,并僅使用對對象的引用而實際值。Pandas 提供了一種稱為 Categorical的Dtype來解決這個問題。

例如一個帶有圖片路徑的大型數(shù)據(jù)集組成。 每行有三列:anchor, positive, and negative.。

如果類別列使用 Categorical 可以顯著減少內(nèi)存使用量。

# raw data
+----------+------------------------+
| class | filename |
+----------+------------------------+
| Bathroom | Bathroom\bath_1.jpg |
| Bathroom | Bathroom\bath_100.jpg |
| Bathroom | Bathroom\bath_1003.jpg |
| Bathroom | Bathroom\bath_1004.jpg |
| Bathroom | Bathroom\bath_1005.jpg |
+----------+------------------------+

# target
+------------------------+------------------------+----------------------------+
| anchor | positive | negative |
+------------------------+------------------------+----------------------------+
| Bathroom\bath_1.jpg | Bathroom\bath_100.jpg | Dinning\din_540.jpg |
| Bathroom\bath_100.jpg | Bathroom\bath_1003.jpg | Dinning\din_1593.jpg |
| Bathroom\bath_1003.jpg | Bathroom\bath_1004.jpg | Bedroom\bed_329.jpg |
| Bathroom\bath_1004.jpg | Bathroom\bath_1005.jpg | Livingroom\living_1030.jpg |
| Bathroom\bath_1005.jpg | Bathroom\bath_1007.jpg | Bedroom\bed_1240.jpg |
+------------------------+------------------------+----------------------------+

filename列的值會經(jīng)常被復(fù)制重復(fù)。因此,所以通過使用Categorical可以極大的減少內(nèi)存使用量。

讓我們讀取目標(biāo)數(shù)據(jù)集,看看內(nèi)存的差異:

triplets.info(memory_usage="deep")

# Column Non-Null Count Dtype
# --- ------ -------------- -----
# 0 anchor 525000 non-null category
# 1 positive 525000 non-null category
# 2 negative 525000 non-null category
# dtypes: category(3)
# memory usage: 4.6 MB

# without categories
triplets_raw.info(memory_usage="deep")

# Column Non-Null Count Dtype
# --- ------ -------------- -----
# 0 anchor 525000 non-null object
# 1 positive 525000 non-null object
# 2 negative 525000 non-null object
# dtypes: object(3)
# memory usage: 118.1 MB

差異非常大,并且隨著重復(fù)次數(shù)的增加,差異呈非線性增長。

2、行列轉(zhuǎn)換

sql中經(jīng)常會遇到行列轉(zhuǎn)換的問題,Pandas有時候也需要,讓我們看看來自Kaggle比賽的數(shù)據(jù)集。census_start .csv文件:

可以看到,這些按年來保存的,如果有一個列year和pct_bb,并且每一行有相應(yīng)的值,則會好得多,對吧。

cols = sorted([col for col in original_df.columns \
if col.startswith("pct_bb")])
df = original_df[(["cfips"] + cols)]
df = df.melt(id_vars="cfips",
value_vars=cols,
var_name="year",
value_name="feature").sort_values(by=["cfips", "year"])

看看結(jié)果,這樣是不是就好很多了:

3、apply()很慢

我們上次已經(jīng)介紹過,最好不要使用這個方法,因為它遍歷每行并調(diào)用指定的方法。但是要是我們沒有別的選擇,那還有沒有辦法提高速度呢?

可以使用swifter或pandarallew這樣的包,使過程并行化。

Swifter

import pandas as pd
import swifter

def target_function(row):
return row * 10

def traditional_way(data):
data['out'] = data['in'].apply(target_function)

def swifter_way(data):
data['out'] = data['in'].swifter.apply(target_function)

Pandarallel

import pandas as pd
from pandarallel import pandarallel

def target_function(row):
return row * 10

def traditional_way(data):
data['out'] = data['in'].apply(target_function)

def pandarallel_way(data):
pandarallel.initialize()
data['out'] = data['in'].parallel_apply(target_function)

通過多線程,可以提高計算的速度,當(dāng)然當(dāng)然,如果有集群,那么最好使用dask或pyspark

4、空值,int, Int64

標(biāo)準(zhǔn)整型數(shù)據(jù)類型不支持空值,所以會自動轉(zhuǎn)換為浮點數(shù)。所以如果數(shù)據(jù)要求在整數(shù)字段中使用空值,請考慮使用Int64數(shù)據(jù)類型,因為它會使用pandas.NA來表示空值。

5、Csv, 壓縮還是parquet?

盡可能選擇parquet。parquet會保留數(shù)據(jù)類型,在讀取數(shù)據(jù)時就不需要指定dtypes。parquet文件默認(rèn)已經(jīng)使用了snappy進(jìn)行壓縮,所以占用的磁盤空間小。下面可以看看幾個的對比

|        file            |  size   |
+------------------------+---------+
| triplets_525k.csv | 38.4 MB |
| triplets_525k.csv.gzip | 4.3 MB |
| triplets_525k.csv.zip | 4.5 MB |
| triplets_525k.parquet | 1.9 MB |
+------------------------+---------+

讀取parquet需要額外的包,比如pyarrow或fastparquet。chatgpt說pyarrow比fastparquet要快,但是我在小數(shù)據(jù)集上測試時fastparquet比pyarrow要快,但是這里建議使用pyarrow,因為pandas 2.0也是默認(rèn)的使用這個。

6、value_counts ()

計算相對頻率,包括獲得絕對值、計數(shù)和除以總數(shù)是很復(fù)雜的,但是使用value_counts,可以更容易地完成這項任務(wù),并且該方法提供了包含或排除空值的選項。

df = pd.DataFrame({"a": [1, 2, None], "b": [4., 5.1, 14.02]})
df["a"] = df["a"].astype("Int64")
print(df.info())
print(df["a"].value_counts(normalize=True, dropna=False),
df["a"].value_counts(normalize=True, dropna=True), sep="\n\n")

這樣是不是就簡單很多了

7、Modin

注意:Modin現(xiàn)在還在測試階段。

pandas是單線程的,但Modin可以通過縮放pandas來加快工作流程,它在較大的數(shù)據(jù)集上工作得特別好,因為在這些數(shù)據(jù)集上,pandas會變得非常緩慢或內(nèi)存占用過大導(dǎo)致OOM。

!pip install modin[all]

import modin.pandas as pd
df = pd.read_csv("my_dataset.csv")

以下是modin官網(wǎng)的架構(gòu)圖,有興趣的研究把:

8、extract()

如果經(jīng)常遇到復(fù)雜的半結(jié)構(gòu)化的數(shù)據(jù),并且需要從中分離出單獨的列,那么可以使用這個方法:

import pandas as pd

regex = (r'(?P[A-Za-z\'\s]+),'<br> r'(?P<author>[A-Za-z\s\']+),'<br> r'(?P<isbn>[\d-]+),'<br> r'(?P<year>\d{4}),'<br> r'(?P<publisher>.+)')<br> addr = pd.Series([<br> "The Lost City of Amara,Olivia Garcia,978-1-234567-89-0,2023,HarperCollins",<br> "The Alchemist's Daughter,Maxwell Greene,978-0-987654-32-1,2022,Penguin Random House",<br> "The Last Voyage of the HMS Endeavour,Jessica Kim,978-5-432109-87-6,2021,Simon & Schuster",<br> "The Ghosts of Summer House,Isabella Lee,978-3-456789-12-3,2000,Macmillan Publishers",<br> "The Secret of the Blackthorn Manor,Emma Chen,978-9-876543-21-0,2023,Random House Children's Books"<br> ])<br> addr.str.extract(regex)</pre><p> </p> <h4>9、讀寫剪貼板</h4> <p>這個技巧有人一次也用不到,但是有人可能就是需要,比如:在分析中包含PDF文件中的表格時。通常的方法是復(fù)制數(shù)據(jù),粘貼到Excel中,導(dǎo)出到csv文件中,然后導(dǎo)入Pandas。但是,這里有一個更簡單的解決方案:pd.read_clipboard()。我們所需要做的就是復(fù)制所需的數(shù)據(jù)并執(zhí)行一個方法。</p><p>有讀就可以寫,所以還可以使用to_clipboard()方法導(dǎo)出到剪貼板。</p><p>但是要記住,這里的剪貼板是你運行python/jupyter主機的剪切板,并不可能跨主機粘貼,一定不要搞混了。</p> <h4>10、數(shù)組列分成多列</h4> <p>假設(shè)我們有這樣一個數(shù)據(jù)集,這是一個相當(dāng)?shù)湫偷那闆r:</p><pre>import pandas as pd<br> df = pd.DataFrame({"a": [1, 2, 3],<br> "b": [4, 5, 6],<br> "category": [["foo", "bar"], ["foo"], ["qux"]]})<br> <br> # let's increase the number of rows in a dataframe<br> df = pd.concat([df]*10000, ignore_index=True)</pre><p> </p><p>我們想將category分成多列顯示,例如下面的</p><p> </p><p>先看看最慢的apply:</p><pre>def dummies_series_apply(df):<br> return df.join(df['category'].apply(pd.Series) \<br> .stack() \<br> .str.get_dummies() \<br> .groupby(level=0) \<br> .sum()) \<br> .drop("category", axis=1)<br> %timeit dummies_series_apply(df.copy())<br> #5.96 s ± 66.6 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)</pre><p>sklearn的MultiLabelBinarizer</p><pre>from sklearn.preprocessing import MultiLabelBinarizer<br> def sklearn_mlb(df):<br> mlb = MultiLabelBinarizer()<br> return df.join(pd.DataFrame(mlb.fit_transform(df['category']), columns=mlb.classes_)) \<br> .drop("category", axis=1)<br> %timeit sklearn_mlb(df.copy())<br> #35.1 ms ± 1.31 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)</pre><p>是不是快了很多,我們還可以使用一般的向量化操作對其求和:</p><pre>def dummies_vectorized(df):<br> return pd.get_dummies(df.explode("category"), prefix="cat") \<br> .groupby(["a", "b"]) \<br> .sum() \<br> .reset_index()<br> %timeit dummies_vectorized(df.copy())<br> #29.3 ms ± 1.22 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)</pre><p> </p><p>使用第一個方法(在StackOverflow上的回答中非常常見)會給出一個非常慢的結(jié)果。而其他兩個優(yōu)化的方法的時間是非??焖俚?。</p> <h4>總結(jié)</h4> <p>我希望每個人都能從這些技巧中學(xué)到一些新的東西。重要的是要記住盡可能使用向量化操作而不是apply()。此外,除了csv之外,還有其他有趣的存儲數(shù)據(jù)集的方法。不要忘記使用分類數(shù)據(jù)類型,它可以節(jié)省大量內(nèi)存。感謝閱讀!</p> <br> 新聞名稱:十個Pandas的另類數(shù)據(jù)處理技巧 <br> 網(wǎng)站路徑:<a href="http://m.5511xx.com/article/dppcjie.html">http://m.5511xx.com/article/dppcjie.html</a> </div> <div id="1w4znl0" class="hot_new"> <div id="sjq89xq" class="page_title clearfix"> <h3>其他資訊</h3> </div> <div id="i9cgu8y" class="news_list clearfix"> <ul> <li> <a href="/article/dpccdgj.html">易名域名優(yōu)選(易名域名查詢)(易名中國域名門戶)</a> </li><li> <a href="/article/dpccdpi.html">「數(shù)據(jù)結(jié)構(gòu)設(shè)計」——學(xué)習(xí)數(shù)據(jù)庫ER概念模型的重要性(數(shù)據(jù)庫er概念模型)</a> </li><li> <a href="/article/dpccdgh.html">烏龜服開國服角色可以轉(zhuǎn)移嗎?服務(wù)器遷移有什么難點</a> </li><li> <a href="/article/dpccdjg.html">結(jié)合男女朋友分手的例子,通俗易懂</a> </li><li> <a href="/article/dpccdeg.html">vm虛擬機怎么恢復(fù)默認(rèn)設(shè)置?(如何虛擬主機找回默認(rèn)首頁文件)</a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- 底部信息 --> <div id="9f9spnt" class="footer wow fadeInUp"> <div id="k7u1sq8" class="rowFluid"> <div id="x4izj32" class="span12"> <div id="u7mta4a" class="container"> <div id="nyecbiq" class="footer_content"> <div id="9abpp4v" class="span4 col-xm-12"> <div id="xxukrzi" class="footer_list"> <div id="rrhg8jz" class="span6"> <div id="izp44nf" class="bottom_logo"><img src="/Public/Home/images/ewm.jpg" alt="微信服務(wù)號二維碼" /></div> </div> <div id="q4ljp2g" class="span6 col-xm-12"> <div id="ryxwdbk" class="quick_navigation"> <div id="sdsrpy3" class="quick_navigation_title">快速導(dǎo)航</div> <ul> <li><a title="成都無紡布袋" target="_blank">成都無紡布袋</a></li><li><a title="成都廣告招牌制作" target="_blank">成都廣告招牌制作</a></li><li><a title="營山產(chǎn)后修復(fù)" target="_blank">營山產(chǎn)后修復(fù)</a></li><li><a title="成都名片印刷" target="_blank">成都名片印刷</a></li><li><a title="成都風(fēng)力發(fā)電設(shè)備" target="_blank">成都風(fēng)力發(fā)電設(shè)備</a></li><li><a title="武侯區(qū)應(yīng)急供電" target="_blank">武侯區(qū)應(yīng)急供電</a></li><li><a title="許可證申請" target="_blank">許可證申請</a></li><li><a title="廣漢發(fā)電機租賃公司" target="_blank">廣漢發(fā)電機租賃公司</a></li><li><a title="成都APP設(shè)計" target="_blank">成都APP設(shè)計</a></li><li><a title="成都服務(wù)器托管" target="_blank">成都服務(wù)器托管</a></li><li><a title="印刷名片" target="_blank">印刷名片</a></li> </ul> </div> </div> </div> </div> <div id="apfu0zz" class="span4 col-xm-6 col-xs-12"> <div id="uub4hnc" class="footer_list"> <div id="js4oems" class="footer_link"> <div id="sbahwdj" class="footer_link_title">友情鏈接</div> <ul id="frientLinks"> <a title="網(wǎng)站制作" target="_blank">網(wǎng)站制作</a> <a title="網(wǎng)站建設(shè)" target="_blank">網(wǎng)站建設(shè)</a> <a title="成都網(wǎng)絡(luò)推廣" target="_blank">網(wǎng)絡(luò)推廣</a> <a title="成都網(wǎng)站推廣" target="_blank">網(wǎng)站推廣</a> <a title="成都微信小程序開發(fā)" target="_blank">小程序開發(fā)</a> <a title="創(chuàng)新互聯(lián)網(wǎng)站欄目導(dǎo)航" target="_blank">網(wǎng)站導(dǎo)航</a> </ul> <div id="3hgfdaq" class="footer_link_title">網(wǎng)站建設(shè)</div> <ul id="frientLinks"> <li><a href="/">四川平武建站</a></li> <li><a title="創(chuàng)新互聯(lián)網(wǎng)站欄目導(dǎo)航" target="_blank">網(wǎng)站導(dǎo)航</a></li> </ul> </div> </div> </div> <div id="bkzwfm3" class="span4 col-xm-6 col-xs-12"> <div id="brsbzwc" class="footer_list"> <div id="ffl9xnj" class="footer_cotact"> <div id="evlrgge" class="footer_cotact_title">聯(lián)系方式</div> <ul> <li><span id="7zhpwk8" class="footer_cotact_type">企業(yè):</span><span id="ev29esi" class="footer_cotact_content">四川綿陽平武網(wǎng)站建設(shè)工作室</span></li> <li><span id="7pgnljy" class="footer_cotact_type">地址:</span><span id="a28yw6p" class="footer_cotact_content">成都市青羊區(qū)太升南路288號</span></li> <li><span id="dd97m8w" class="footer_cotact_type">電話:</span><span id="of12cbq" class="footer_cotact_content"><a href="tel:18980820575" class="call">18980820575</a></span></li> <li><span id="9mtb3fu" class="footer_cotact_type">網(wǎng)址:</span><span id="lthoov4" class="footer_cotact_content"><a href="/" title="四川平武網(wǎng)站建設(shè)">m.5511xx.com</a></span></li> </ul> </div> </div> </div> </div> </div> <div id="cl4hogo" class="copyright"> <p>公司名稱:四川綿陽平武網(wǎng)站建設(shè)工作室 聯(lián)系電話:18980820575</p> <p><a target="_blank" rel="nofollow">網(wǎng)站備案號:蜀ICP備2024061352號-3</a></p> <p>四川平武建站 四川平武網(wǎng)站建設(shè) 四川平武網(wǎng)站設(shè)計 四川平武網(wǎng)站制作 <a target="_blank">成都做網(wǎng)站</a></p> </div> </div> </div> </div> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://m.5511xx.com/" title="日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区">日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区</a> <div class="friend-links"> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="lzsod" class="pl_css_ganrao" style="display: none;"><strong id="lzsod"><abbr id="lzsod"><strike id="lzsod"></strike></abbr></strong><abbr id="lzsod"></abbr><tr id="lzsod"><ol id="lzsod"><th id="lzsod"></th></ol></tr><p id="lzsod"></p><pre id="lzsod"></pre><strike id="lzsod"></strike><s id="lzsod"></s><dl id="lzsod"></dl><b id="lzsod"></b><rp id="lzsod"></rp><dd id="lzsod"></dd><p id="lzsod"><abbr id="lzsod"><sub id="lzsod"></sub></abbr></p><div id="lzsod"><menu id="lzsod"><rp id="lzsod"></rp></menu></div><bdo id="lzsod"><b id="lzsod"><source id="lzsod"></source></b></bdo><dl id="lzsod"></dl><abbr id="lzsod"><strike id="lzsod"><menu id="lzsod"></menu></strike></abbr><form id="lzsod"><legend id="lzsod"><label id="lzsod"></label></legend></form><table id="lzsod"></table><fieldset id="lzsod"></fieldset><ruby id="lzsod"><ol id="lzsod"></ol></ruby><dd id="lzsod"><label id="lzsod"><u id="lzsod"></u></label></dd><strike id="lzsod"></strike><source id="lzsod"><i id="lzsod"><small id="lzsod"></small></i></source><strike id="lzsod"><table id="lzsod"><dd id="lzsod"></dd></table></strike><source id="lzsod"></source><abbr id="lzsod"><strike id="lzsod"><label id="lzsod"></label></strike></abbr><em id="lzsod"><wbr id="lzsod"><dfn id="lzsod"></dfn></wbr></em><listing id="lzsod"><em id="lzsod"><p id="lzsod"></p></em></listing><label id="lzsod"></label><bdo id="lzsod"><th id="lzsod"><source id="lzsod"></source></th></bdo><progress id="lzsod"></progress><wbr id="lzsod"><style id="lzsod"><b id="lzsod"></b></style></wbr><rp id="lzsod"><dl id="lzsod"><tbody id="lzsod"></tbody></dl></rp><listing id="lzsod"></listing><abbr id="lzsod"><center id="lzsod"><fieldset id="lzsod"></fieldset></center></abbr><meter id="lzsod"></meter><s id="lzsod"></s><abbr id="lzsod"><center id="lzsod"><fieldset id="lzsod"></fieldset></center></abbr><dfn id="lzsod"><sub id="lzsod"><strike id="lzsod"></strike></sub></dfn><source id="lzsod"><i id="lzsod"><small id="lzsod"></small></i></source><tr id="lzsod"></tr><wbr id="lzsod"><style id="lzsod"><b id="lzsod"></b></style></wbr><wbr id="lzsod"></wbr><wbr id="lzsod"></wbr><meter id="lzsod"><s id="lzsod"></s></meter><th id="lzsod"></th><em id="lzsod"></em><track id="lzsod"></track><object id="lzsod"></object><nav id="lzsod"><ruby id="lzsod"><strike id="lzsod"></strike></ruby></nav><ol id="lzsod"></ol><address id="lzsod"><cite id="lzsod"><u id="lzsod"></u></cite></address><menu id="lzsod"></menu><form id="lzsod"><small id="lzsod"><cite id="lzsod"></cite></small></form><strong id="lzsod"></strong><b id="lzsod"><strike id="lzsod"><listing id="lzsod"></listing></strike></b><label id="lzsod"></label><i id="lzsod"></i><span id="lzsod"></span><object id="lzsod"><track id="lzsod"><tr id="lzsod"></tr></track></object><th id="lzsod"></th><listing id="lzsod"><address id="lzsod"><p id="lzsod"></p></address></listing><tr id="lzsod"><th id="lzsod"><nav id="lzsod"></nav></th></tr><u id="lzsod"></u><fieldset id="lzsod"><form id="lzsod"><dd id="lzsod"></dd></form></fieldset><u id="lzsod"><div id="lzsod"><strong id="lzsod"></strong></div></u><dfn id="lzsod"><sub id="lzsod"><strike id="lzsod"></strike></sub></dfn><center id="lzsod"><strike id="lzsod"><table id="lzsod"></table></strike></center><ol id="lzsod"></ol><menu id="lzsod"><rp id="lzsod"><dl id="lzsod"></dl></rp></menu><rp id="lzsod"><dl id="lzsod"><strong id="lzsod"></strong></dl></rp><progress id="lzsod"><object id="lzsod"><tbody id="lzsod"></tbody></object></progress><table id="lzsod"></table><strong id="lzsod"></strong><s id="lzsod"><th id="lzsod"><tbody id="lzsod"></tbody></th></s><wbr id="lzsod"><dfn id="lzsod"><b id="lzsod"></b></dfn></wbr><bdo id="lzsod"></bdo><dl id="lzsod"></dl><address id="lzsod"></address><label id="lzsod"><dfn id="lzsod"><div id="lzsod"></div></dfn></label><label id="lzsod"></label><tr id="lzsod"><style id="lzsod"><th id="lzsod"></th></style></tr><menu id="lzsod"></menu><tr id="lzsod"><style id="lzsod"><th id="lzsod"></th></style></tr><strong id="lzsod"></strong><p id="lzsod"></p><legend id="lzsod"><nav id="lzsod"><abbr id="lzsod"></abbr></nav></legend><style id="lzsod"></style><option id="lzsod"><source id="lzsod"><listing id="lzsod"></listing></source></option><tbody id="lzsod"></tbody><cite id="lzsod"><u id="lzsod"><div id="lzsod"></div></u></cite><tr id="lzsod"><th id="lzsod"><nav id="lzsod"></nav></th></tr><tbody id="lzsod"></tbody><ol id="lzsod"></ol><tbody id="lzsod"></tbody><center id="lzsod"><strong id="lzsod"><form id="lzsod"></form></strong></center><nav id="lzsod"><ruby id="lzsod"><strike id="lzsod"></strike></ruby></nav><strong id="lzsod"><meter id="lzsod"><ol id="lzsod"></ol></meter></strong></div> </html>