<legend id='WacC4'><style id='WacC4'><dir id='WacC4'><q id='WacC4'></q></dir></style></legend>
    <i id='WacC4'><tr id='WacC4'><dt id='WacC4'><q id='WacC4'><span id='WacC4'><b id='WacC4'><form id='WacC4'><ins id='WacC4'></ins><ul id='WacC4'></ul><sub id='WacC4'></sub></form><legend id='WacC4'></legend><bdo id='WacC4'><pre id='WacC4'><center id='WacC4'></center></pre></bdo></b><th id='WacC4'></th></span></q></dt></tr></i><div id='WacC4'><tfoot id='WacC4'></tfoot><dl id='WacC4'><fieldset id='WacC4'></fieldset></dl></div>

      <tfoot id='WacC4'></tfoot>

    1. <small id='WacC4'></small><noframes id='WacC4'>

        <bdo id='WacC4'></bdo><ul id='WacC4'></ul>
    2. 烧瓶插座 |使用 Flask Executor 或 ThreadPoolExecutor 创建的后台任务更新和绘制图表

      时间:2023-09-30

      <small id='vc5Ti'></small><noframes id='vc5Ti'>

      1. <i id='vc5Ti'><tr id='vc5Ti'><dt id='vc5Ti'><q id='vc5Ti'><span id='vc5Ti'><b id='vc5Ti'><form id='vc5Ti'><ins id='vc5Ti'></ins><ul id='vc5Ti'></ul><sub id='vc5Ti'></sub></form><legend id='vc5Ti'></legend><bdo id='vc5Ti'><pre id='vc5Ti'><center id='vc5Ti'></center></pre></bdo></b><th id='vc5Ti'></th></span></q></dt></tr></i><div id='vc5Ti'><tfoot id='vc5Ti'></tfoot><dl id='vc5Ti'><fieldset id='vc5Ti'></fieldset></dl></div>
      2. <legend id='vc5Ti'><style id='vc5Ti'><dir id='vc5Ti'><q id='vc5Ti'></q></dir></style></legend>
          <bdo id='vc5Ti'></bdo><ul id='vc5Ti'></ul>
              <tbody id='vc5Ti'></tbody>

                <tfoot id='vc5Ti'></tfoot>
                本文介绍了烧瓶插座 |使用 Flask Executor 或 ThreadPoolExecutor 创建的后台任务更新和绘制图表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我目前正在尝试在数据框的结果更新或数据发生任何变化时成功绘制条形图.

                设置:

                • Flask-SocketIO==4.3.1
                • python-engineio==3.13.2
                • python-socketio==4.6.0

                确保您重新启动机器以免遇到错误.

                Python 代码 - 保存在 D:Projects est_backgroundtask:

                from flask import Flask, render_template, request将熊猫导入为 pd从 flask_executor 导入执行器导入情节导入 plotly.graph_objs从 flask_socketio 导入 SocketIO,发出导入json全局 test_valapp = Flask(__name__)socketio = SocketIO(应用程序)def create_plot(feature_importance):feature_importance=feature_importance.reset_index(drop=True)feature_importance=feature_importance.iloc[0:5]打印(特征重要性)数据 = [去吧(x=feature_importance['Age'], # 指定 x 作为数据框列 'x'y=feature_importance['名称'],方向='h')]graphJSON = json.dumps(数据,cls=plotly.utils.PlotlyJSONEncoder)返回图JSON@socketio.on(响应")def background_task_func():全局 test_val全局图socketio.sleep(10)数据= {'姓名':['汤姆','约瑟夫','克里什','约翰'],'年龄':[20,21,19,18]}test_val= pd.DataFrame(数据)bar = create_plot(test_val)情节=酒吧如果 test_val.shape[0]>1:打印(test_val)发射('response_output',绘图,广播=真)socketio.sleep(1)#return render_template('views/index_img_soc.html', plot=bar)@app.route('/', 方法=['GET'])定义索引():全局图executor.submit(background_task_func)bar = create_plot(test_val)return render_template('views/index_img_soc.html', plot=bar)如果 __name__ == __main__":数据={'姓名':[],'年龄':[]}test_val= pd.DataFrame(数据)执行者 = 执行者(应用程序)socketio.run(应用程序)

                Html 代码(保存在 D:Projects est_backgroundtask emplateviews 中):

                <script src="https://cdn.plot.ly/plotly-latest.min.js"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js>></script>

                输出:

                WebSocket 传输不可用.安装 eventlet 或 gevent 和 gevent-websocket 以提高性能.* 服务 Flask 应用程序flask_background_app_img_soc2"(懒加载)* 环境:生产警告:这是一个开发服务器.不要在生产部署中使用它.请改用生产 WSGI 服务器.* 调试模式:关闭* 在 http://127.0.0.1:5000/上运行(按 CTRL+C 退出)127.0.0.1 - - [14/Jul/2021 11:45:01] GET/HTTP/1.1"200 -空数据框列:[姓名,年龄]指数: []2c6e85bb23aa4c83af37bc005a08837b: 发送数据包 OPEN 数据 {'sid': '2c6e85bb23aa4c83af37bc005a08837b', 'upgrades': [], 'pingTimeout': 60000, 'pingInterval': 25000}2c6e85bb23aa4c83af37bc005a08837b:发送数据包MESSAGE数据0127.0.0.1 - - [14/Jul/2021 11:45:03] GET/socket.io/?EIO=3&transport=polling&t=NgaPyfS HTTP/1.1"200 -2c6e85bb23aa4c83af37bc005a08837b:收到数据包 MESSAGE 数据 2[响应"]收到事件响应";从 2c6e85bb23aa4c83af37bc005a08837b [/]127.0.0.1 - - [14/Jul/2021 11:45:03] POST/socket.io/?EIO=3&transport=polling&t=NgaPyf-&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1"200 -姓名年龄0 汤姆 201约瑟夫212 克里希 19约翰三书 18姓名年龄0 汤姆 201约瑟夫212 克里希 19约翰三书 18发出事件response_output";对所有人 [/]2c6e85bb23aa4c83af37bc005a08837b:发送数据包MESSAGE数据2[response_output","[{"orientation":"h","x":[20,21,19,18], "y": ["Tom", "Joseph", "Krish", "John"], "type";: "bar"}]"]127.0.0.1 - - [14/Jul/2021 11:45:13] GET/socket.io/?EIO=3&transport=polling&t=NgaPyg0&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1"200 -姓名年龄0 汤姆 201约瑟夫212 克里希 19约翰三书 18姓名年龄0 汤姆 201约瑟夫212 克里希 19约翰三书 182c6e85bb23aa4c83af37bc005a08837b:收到数据包PING数据无2c6e85bb23aa4c83af37bc005a08837b:发送数据包PONG数据无127.0.0.1 - - [14/Jul/2021 11:45:28] GET/socket.io/?EIO=3&transport=polling&t=NgaP_9E&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1"200 -127.0.0.1 - - [14/Jul/2021 11:45:28] POST/socket.io/?EIO=3&transport=polling&t=NgaQ2md&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1"200 -2c6e85bb23aa4c83af37bc005a08837b:收到数据包PING数据无2c6e85bb23aa4c83af37bc005a08837b:发送数据包PONG数据无127.0.0.1 - - [14/Jul/2021 11:45:54] GET/socket.io/?EIO=3&transport=polling&t=NgaQ2nA&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1"200 -127.0.0.1 - - [14/Jul/2021 11:45:54] POST/socket.io/?EIO=3&transport=polling&t=NgaQ93n&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1"200 -2c6e85bb23aa4c83af37bc005a08837b:收到数据包PING数据无2c6e85bb23aa4c83af37bc005a08837b:发送数据包PONG数据无127.0.0.1 - - [14/Jul/2021 11:46:20] GET/socket.io/?EIO=3&transport=polling&t=NgaQ94a&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1"200 -127.0.0.1 - - [14/Jul/2021 11:46:20] POST/socket.io/?EIO=3&transport=polling&t=NgaQFPv&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1"200 -

                即使数据框已更新,也首次输出.

                重新加载页面后,页面为空白,然后显示正确的图表.

                我想要达到的目标:

                1. 更新数据框时自动显示条形图无需重新加载页面.

                解决方案

                在html页面的function(receiving_data)中,使用变量plot代替receiving_data.变量 plotrender_template 被调用时被初始化.通过套接字发出数据时,调用 return render_template('views/index_img_soc.html', plot=bar) 时不需要传递变量 plot.

                请参阅下面的示例脚本,了解如何使用套接字向 html 脚本发送数据.

                下面的脚本会自动更新条形图而不需要重新加载页面.

                使用 chart.js 而不是 plotly 的代码.与 plotly 相比,在 javascript 中绘制 chart.js 的示例要多得多.

                更新的 Python 脚本:

                随机导入从烧瓶导入烧瓶,渲染模板,会话,请求从 flask_socketio 导入 SocketIO从 flask_executor 导入执行器将熊猫导入为 pd导入jsonapp = Flask(__name__)app.config['SECRET_KEY'] = '秘密!'socketio = SocketIO(应用程序)线程 = 无@socketio.on(response_demo")def background_task_func():""""如何将服务器生成的事件发送到客户端的示例.""""socketio.sleep(5)打印(发送")数据 = {'姓名':['Tom','Joseph','Krish','John','Shadz'],'年龄':[20,21,19,18,36]}data_2= pd.DataFrame(数据)df_json=data_2.to_json(orient='records')结果 = {对象":json.loads(df_json)}socketio.emit('my_response',result, broadcast=True)@app.route('/')定义索引():executor.submit(background_task_func)返回渲染模板('index_2.html')如果 __name__ == '__main__':执行者 = 执行者(应用程序)socketio.run(应用程序)

                更新的 html 脚本:

                <!DOCTYPE HTML><html><头><title>Flask-SocketIO 测试</title><脚本类型=文本/javascript"src="//code.jquery.com/jquery-1.4.2.min.js"></script><脚本类型=文本/javascript"src="//cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.5/socket.io.min.js"></script><脚本类型=文本/javascript"src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js"完整性=sha256-yr4fRk/GU1ehYJPas8P4JlTgu0Hdsp4ZKrx8bDEDC3I="crossorigin=匿名"></script></头><画布 id=我的图表"宽度=100"height="100"></canvas><脚本类型=文本/javascript"字符集=utf-8">//Chart.js 条形图var ctx = document.getElementById("myChart");var myChart = new Chart(ctx, {类型:'酒吧',数据: {标签:[红"、蓝"、黄"、绿"、紫"]、数据集:[{数据:[2, 2,2, 2,2],背景颜色: ['rgba(255, 99, 132, 0.2)','rgba(54, 162, 235, 0.2)','rgba(255, 206, 86, 0.2)','rgba(75, 192, 192, 0.2)','rgba(153, 102, 255, 0.2)'],边框颜色: ['rgba(255,99,132,1)','rgba(54, 162, 235, 1)','rgba(255, 206, 86, 1)','rgba(75, 192, 192, 1)','rgba(153, 102, 255, 1)'],边框宽度:1}]},选项: {秤:{y轴:[{滴答声:{开始零:真}}]}}});$(文档).ready(函数() {var socket = io().connect('http://127.0.0.1:5000');socket.emit('response_demo')socket.on('my_response', function(obj) {for (var i=0; i < obj.objects.length; i++) {myChart.data.datasets[0].data[i] =obj.objects[i].Age;myChart.data.labels[i] =obj.objects[i].Name;}myChart.update();});});</脚本></html>

                I am currently trying to successfully plot a bar chart when the results from the dataframe is updated or when there is any change in the data.

                Setup:

                • Flask-SocketIO==4.3.1
                • python-engineio==3.13.2
                • python-socketio==4.6.0

                Make sure you restart your machine to not encounter errors.

                Python Code -saved in D:Projects est_backgroundtask:

                from flask import Flask, render_template, request
                import pandas as pd
                from flask_executor import Executor
                import plotly
                import plotly.graph_objs as go
                from flask_socketio import SocketIO, emit
                import json
                
                global test_val
                app = Flask(__name__)
                socketio = SocketIO(app)
                def create_plot(feature_importance):
                    feature_importance=feature_importance.reset_index(drop=True)
                    feature_importance=feature_importance.iloc[0:5]
                    print(feature_importance)
                
                    data = [
                        go.Bar(
                            x=feature_importance['Age'], # assign x as the dataframe column 'x'
                            y=feature_importance['Name'], orientation='h'
                        )
                    ]
                
                    graphJSON = json.dumps(data, cls=plotly.utils.PlotlyJSONEncoder)
                
                    return graphJSON
                
                @socketio.on("response")
                def background_task_func():
                    global test_val
                    global plot
                    socketio.sleep(10)
                    data = {'Name': ['Tom', 'Joseph', 'Krish', 'John'], 'Age': [20, 21, 19, 18]}  
                    test_val= pd.DataFrame(data)
                    bar = create_plot(test_val)
                    plot=bar
                    if test_val.shape[0]>1:
                        print(test_val)
                        emit('response_output',plot ,broadcast=True)
                        socketio.sleep(1)
                        #return render_template('views/index_img_soc.html', plot=bar)
                    
                @app.route('/', methods=['GET'])
                def index():
                    global plot
                    executor.submit(background_task_func)
                    bar = create_plot(test_val)
                    
                    return render_template('views/index_img_soc.html', plot=bar)
                
                
                
                if __name__ == "__main__":
                    data ={'Name': [], 'Age': []}  
                    test_val= pd.DataFrame(data)   
                    executor = Executor(app)
                    socketio.run(app) 
                

                Html Code (saved in D:Projects est_backgroundtask emplateviews):

                <script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
                <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
                <div class="chart" id="bargraph">
                
                    <script src="//cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js" integrity="sha256-yr4fRk/GU1ehYJPAs8P4JlTgu0Hdsp4ZKrx8bDEDC3I=" crossorigin="anonymous"></script>
                        <script type="text/javascript" charset="utf-8">
                
                            var socket = io().connect('http://127.0.0.1:5000');
                            socket.emit('response')
                            socket.on('response_output', function(receiving_data) {
                              var graphs = {{plot | safe}};
                              Plotly.plot('bargraph',graphs,{});
                            });
                    </script>
                </div>
                

                Output:

                WebSocket transport not available. Install eventlet or gevent and gevent-websocket for improved performance.
                 * Serving Flask app "flask_background_app_img_soc2" (lazy loading)
                 * Environment: production
                   WARNING: This is a development server. Do not use it in a production deployment.
                   Use a production WSGI server instead.
                 * Debug mode: off
                 * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
                127.0.0.1 - - [14/Jul/2021 11:45:01] "GET / HTTP/1.1" 200 -
                Empty DataFrame
                Columns: [Name, Age]
                Index: []
                2c6e85bb23aa4c83af37bc005a08837b: Sending packet OPEN data {'sid': '2c6e85bb23aa4c83af37bc005a08837b', 'upgrades': [], 'pingTimeout': 60000, 'pingInterval': 25000}
                2c6e85bb23aa4c83af37bc005a08837b: Sending packet MESSAGE data 0
                127.0.0.1 - - [14/Jul/2021 11:45:03] "GET /socket.io/?EIO=3&transport=polling&t=NgaPyfS HTTP/1.1" 200 -
                2c6e85bb23aa4c83af37bc005a08837b: Received packet MESSAGE data 2["response"]
                received event "response" from 2c6e85bb23aa4c83af37bc005a08837b [/]
                127.0.0.1 - - [14/Jul/2021 11:45:03] "POST /socket.io/?EIO=3&transport=polling&t=NgaPyf-&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1" 200 -
                     Name  Age
                0     Tom   20
                1  Joseph   21
                2   Krish   19
                3    John   18
                     Name  Age
                0     Tom   20
                1  Joseph   21
                2   Krish   19
                3    John   18
                emitting event "response_output" to all [/]
                2c6e85bb23aa4c83af37bc005a08837b: Sending packet MESSAGE data 2["response_output","[{"orientation": "h", "x": [20, 21, 19, 18], "y": ["Tom", "Joseph", "Krish", "John"], "type": "bar"}]"]
                127.0.0.1 - - [14/Jul/2021 11:45:13] "GET /socket.io/?EIO=3&transport=polling&t=NgaPyg0&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1" 200 -
                     Name  Age
                0     Tom   20
                1  Joseph   21
                2   Krish   19
                3    John   18
                     Name  Age
                0     Tom   20
                1  Joseph   21
                2   Krish   19
                3    John   18
                2c6e85bb23aa4c83af37bc005a08837b: Received packet PING data None
                2c6e85bb23aa4c83af37bc005a08837b: Sending packet PONG data None
                127.0.0.1 - - [14/Jul/2021 11:45:28] "GET /socket.io/?EIO=3&transport=polling&t=NgaP_9E&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1" 200 -
                127.0.0.1 - - [14/Jul/2021 11:45:28] "POST /socket.io/?EIO=3&transport=polling&t=NgaQ2md&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1" 200 -
                2c6e85bb23aa4c83af37bc005a08837b: Received packet PING data None
                2c6e85bb23aa4c83af37bc005a08837b: Sending packet PONG data None
                127.0.0.1 - - [14/Jul/2021 11:45:54] "GET /socket.io/?EIO=3&transport=polling&t=NgaQ2nA&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1" 200 -
                127.0.0.1 - - [14/Jul/2021 11:45:54] "POST /socket.io/?EIO=3&transport=polling&t=NgaQ93n&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1" 200 -
                2c6e85bb23aa4c83af37bc005a08837b: Received packet PING data None
                2c6e85bb23aa4c83af37bc005a08837b: Sending packet PONG data None
                127.0.0.1 - - [14/Jul/2021 11:46:20] "GET /socket.io/?EIO=3&transport=polling&t=NgaQ94a&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1" 200 -
                127.0.0.1 - - [14/Jul/2021 11:46:20] "POST /socket.io/?EIO=3&transport=polling&t=NgaQFPv&sid=2c6e85bb23aa4c83af37bc005a08837b HTTP/1.1" 200 -
                

                First output even though dataframe is updated.

                After reloading the page, the page is blank and then displays correct chart.

                What I would like to achieve:

                1. Automatically display the bar chart when dataframe is updated without reloading page.

                解决方案

                In function(receiving_data) found in the html page , variable plot is used instead of receiving_data. Variable plot is initialized when render_template is evoked. When data is being emitted via sockets, you do not need to pass variable plot when return render_template('views/index_img_soc.html', plot=bar) is called.

                See example script below on how to emit data using sockets to the html script.

                The script below will automatically update a bar chart without reloading the page.

                The code using chart.js instead of plotly. There are much more examples plotting chart.js in javascript as opposed to plotly.

                Updated Python script:

                import random
                from flask import Flask, render_template, session, request
                from flask_socketio import SocketIO
                from flask_executor import Executor
                import pandas as pd
                import json
                app = Flask(__name__)
                app.config['SECRET_KEY'] = 'secret!'
                socketio = SocketIO(app)
                thread = None
                
                
                
                @socketio.on("response_demo")
                def background_task_func():
                    """Example of how to send server generated events to clients."""
                
                    socketio.sleep(5)
                    print("send")
                   
                    data = {'Name': ['Tom', 'Joseph', 'Krish', 'John','Shadz'], 'Age': [20, 21, 19, 18,36]} 
                
                    data_2= pd.DataFrame(data)
                    
                    df_json=data_2.to_json(orient='records')
                    result = {"objects": json.loads(df_json)}
                    socketio.emit('my_response',result, broadcast=True)
                
                @app.route('/')
                def index():
                    executor.submit(background_task_func)
                    return render_template('index_2.html')
                
                
                
                if __name__ == '__main__':
                    executor = Executor(app)
                    socketio.run(app)
                

                Updated html script:

                <!DOCTYPE HTML>
                <html>
                <head>
                    <title>Flask-SocketIO Test</title>
                    <script type="text/javascript" src="//code.jquery.com/jquery-1.4.2.min.js"></script>
                    <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.5/socket.io.min.js"></script>
                    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.min.js"></script>
                    <script src="//cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js" integrity="sha256-yr4fRk/GU1ehYJPAs8P4JlTgu0Hdsp4ZKrx8bDEDC3I=" crossorigin="anonymous"></script>
                
                </head>
                
                <canvas id="myChart" width="100" height="100"></canvas>
                    <script type="text/javascript" charset="utf-8">
                
                // Chart.js Bar Chart
                var ctx = document.getElementById("myChart");
                var myChart = new Chart(ctx, {
                    type: 'bar',
                    data: {
                        labels: ["Red", "Blue", "Yellow", "Green", "Purple"],
                        datasets: [{
                            data: [2, 2,2, 2,2],
                            backgroundColor: [
                                'rgba(255, 99, 132, 0.2)',
                                'rgba(54, 162, 235, 0.2)',
                                'rgba(255, 206, 86, 0.2)',
                                'rgba(75, 192, 192, 0.2)',
                                'rgba(153, 102, 255, 0.2)'
                            ],
                            borderColor: [
                                'rgba(255,99,132,1)',
                                'rgba(54, 162, 235, 1)',
                                'rgba(255, 206, 86, 1)',
                                'rgba(75, 192, 192, 1)',
                                'rgba(153, 102, 255, 1)'
                            ],
                            borderWidth: 1
                        }]
                    },
                    options: {
                        scales: {
                 
                            yAxes: [{
                                ticks: {
                                    beginAtZero:true
                                }
                            }]
                        }
                    }
                });
                
                
                        $(document).ready(function() {
                
                            var socket = io().connect('http://127.0.0.1:5000');
                            socket.emit('response_demo')
                            socket.on('my_response', function(obj) {
                            for (var i=0; i < obj.objects.length; i++) {
                             myChart.data.datasets[0].data[i] =obj.objects[i].Age;
                             myChart.data.labels[i] =obj.objects[i].Name;
                            
                            }
                            
                                myChart.update();
                           
                            });
                
                        });
                
                </script>
                </html>
                

                这篇关于烧瓶插座 |使用 Flask Executor 或 ThreadPoolExecutor 创建的后台任务更新和绘制图表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                <legend id='e64Hf'><style id='e64Hf'><dir id='e64Hf'><q id='e64Hf'></q></dir></style></legend>
                  <tbody id='e64Hf'></tbody>

                <small id='e64Hf'></small><noframes id='e64Hf'>

                <tfoot id='e64Hf'></tfoot>

                  • <bdo id='e64Hf'></bdo><ul id='e64Hf'></ul>
                      <i id='e64Hf'><tr id='e64Hf'><dt id='e64Hf'><q id='e64Hf'><span id='e64Hf'><b id='e64Hf'><form id='e64Hf'><ins id='e64Hf'></ins><ul id='e64Hf'></ul><sub id='e64Hf'></sub></form><legend id='e64Hf'></legend><bdo id='e64Hf'><pre id='e64Hf'><center id='e64Hf'></center></pre></bdo></b><th id='e64Hf'></th></span></q></dt></tr></i><div id='e64Hf'><tfoot id='e64Hf'></tfoot><dl id='e64Hf'><fieldset id='e64Hf'></fieldset></dl></div>