In [1]:
# -*- coding: utf-8 -*-
"""
完整代码 - 模型对比 + 6张图表(含散点图)
"""
import os
import sys
import pandas as pd
import numpy as np
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import seaborn as sns
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler
from sklearn.decomposition import PCA
from sklearn.svm import SVC
from sklearn.metrics import (
accuracy_score, confusion_matrix, roc_auc_score, roc_curve,
precision_score, recall_score, f1_score
)
from catboost import CatBoostClassifier
from datetime import datetime
START_TIME = datetime.now()
import warnings
warnings.filterwarnings('ignore')
# ==================== 时间戳和日志 ====================
def get_timestamp():
return datetime.now().strftime("%Y%m%d_%H%M%S")
def get_timestamp_readable():
return datetime.now().strftime("%Y-%m-%d %H:%M:%S")
TIMESTAMP = get_timestamp()
READABLE_TIME = get_timestamp_readable()
# ==================== 获取当前目录 ====================
SCRIPT_DIR = os.path.dirname(os.path.abspath("main.ipynb"))
if SCRIPT_DIR == '':
SCRIPT_DIR = os.getcwd()
# ==================== 创建结果文件夹 ====================
RESULT_FOLDER = os.path.join(SCRIPT_DIR, f"信用风险分析结果_{TIMESTAMP}")
os.makedirs(RESULT_FOLDER, exist_ok=True)
# ==================== 设置日志文件 ====================
LOG_FILE = os.path.join(RESULT_FOLDER, f'运行日志_{TIMESTAMP}.txt')
class Logger:
def __init__(self, log_file):
self.terminal = sys.stdout
self.log_file = open(log_file, 'w', encoding='utf-8')
def write(self, message):
self.terminal.write(message)
self.log_file.write(message)
self.log_file.flush()
def flush(self):
self.terminal.flush()
self.log_file.flush()
sys.stdout = Logger(LOG_FILE)
# ==================== 设置 ====================
plt.rcParams['font.sans-serif'] = ['SimHei', 'Microsoft YaHei', 'Arial Unicode MS']
plt.rcParams['axes.unicode_minus'] = False
plt.rcParams['figure.dpi'] = 150
print("="*70)
print("制造企业信用风险评价 - 完整分析")
print("="*70)
print(f"开始时间: {READABLE_TIME}")
print(f"时间戳: {TIMESTAMP}")
print(f"结果保存路径: {RESULT_FOLDER}")
print("="*70)
# ==================== 1. 生成伪数据 ====================
print("\n【步骤1】生成伪数据...")
np.random.seed(42)
N_RISK = 40
N_NORMAL = 100
# 风险企业
risk_data = {
'公司名称': [f'ST企业{i}' for i in range(1, N_RISK+1)],
'净资产收益率': np.round(np.random.uniform(-25, -2, N_RISK), 2),
'资产净利率': np.round(np.random.uniform(-18, -1, N_RISK), 2),
'销售净利率': np.round(np.random.uniform(-20, -2, N_RISK), 2),
'成本费用利润率': np.round(np.random.uniform(-28, -3, N_RISK), 2),
'资产负债率': np.round(np.random.uniform(60, 98, N_RISK), 2),
'流动比率': np.round(np.random.uniform(15, 85, N_RISK), 2),
'速动比率': np.round(np.random.uniform(3, 55, N_RISK), 2),
'现金流动负债比': np.round(np.random.uniform(-0.9, 0.15, N_RISK), 2),
'每股收益增长率': np.round(np.random.uniform(-180, -15, N_RISK), 2),
'营业收入增长率': np.round(np.random.uniform(-55, -3, N_RISK), 2),
'净利润增长率': np.round(np.random.uniform(-220, -20, N_RISK), 2),
'总资产增长率': np.round(np.random.uniform(-35, -2, N_RISK), 2),
'存货周转率': np.round(np.random.uniform(0.2, 3.5, N_RISK), 2),
'应收账款周转率': np.round(np.random.uniform(0.2, 5.0, N_RISK), 2),
'流动资产周转率': np.round(np.random.uniform(0.05, 1.2, N_RISK), 2),
'总资产周转率': np.round(np.random.uniform(0.02, 0.45, N_RISK), 2),
'违约标签': [1] * N_RISK
}
# 正常企业
normal_data = {
'公司名称': [f'正常企业{i}' for i in range(1, N_NORMAL+1)],
'净资产收益率': np.round(np.random.uniform(2, 30, N_NORMAL), 2),
'资产净利率': np.round(np.random.uniform(0.5, 16, N_NORMAL), 2),
'销售净利率': np.round(np.random.uniform(1.5, 28, N_NORMAL), 2),
'成本费用利润率': np.round(np.random.uniform(2, 35, N_NORMAL), 2),
'资产负债率': np.round(np.random.uniform(12, 62, N_NORMAL), 2),
'流动比率': np.round(np.random.uniform(65, 230, N_NORMAL), 2),
'速动比率': np.round(np.random.uniform(35, 180, N_NORMAL), 2),
'现金流动负债比': np.round(np.random.uniform(0.02, 1.1, N_NORMAL), 2),
'每股收益增长率': np.round(np.random.uniform(-5, 45, N_NORMAL), 2),
'营业收入增长率': np.round(np.random.uniform(0, 50, N_NORMAL), 2),
'净利润增长率': np.round(np.random.uniform(-3, 55, N_NORMAL), 2),
'总资产增长率': np.round(np.random.uniform(-5, 28, N_NORMAL), 2),
'存货周转率': np.round(np.random.uniform(1.2, 12, N_NORMAL), 2),
'应收账款周转率': np.round(np.random.uniform(1.5, 20, N_NORMAL), 2),
'流动资产周转率': np.round(np.random.uniform(0.2, 3.5, N_NORMAL), 2),
'总资产周转率': np.round(np.random.uniform(0.1, 1.6, N_NORMAL), 2),
'违约标签': [0] * N_NORMAL
}
df_risk = pd.DataFrame(risk_data)
df_normal = pd.DataFrame(normal_data)
df = pd.concat([df_risk, df_normal], ignore_index=True)
# ==================== 2. 添加边界样本 ====================
print("\n【步骤2】添加边界样本...")
# 15个风险企业伪装成正常
bad_indices = np.random.choice(df[df['违约标签']==1].index, 15, replace=False)
for idx in bad_indices:
df.loc[idx, '净资产收益率'] = np.round(np.random.uniform(2, 10), 2)
df.loc[idx, '资产负债率'] = np.round(np.random.uniform(25, 55), 2)
df.loc[idx, '营业收入增长率'] = np.round(np.random.uniform(3, 20), 2)
df.loc[idx, '净利润增长率'] = np.round(np.random.uniform(2, 25), 2)
df.loc[idx, '流动比率'] = np.round(np.random.uniform(80, 150), 2)
df.loc[idx, '销售净利率'] = np.round(np.random.uniform(2, 12), 2)
# 10个正常企业伪装成风险
good_indices = np.random.choice(df[df['违约标签']==0].index, 10, replace=False)
for idx in good_indices:
df.loc[idx, '净资产收益率'] = np.round(np.random.uniform(-12, 1), 2)
df.loc[idx, '资产负债率'] = np.round(np.random.uniform(65, 88), 2)
df.loc[idx, '营业收入增长率'] = np.round(np.random.uniform(-35, -2), 2)
df.loc[idx, '净利润增长率'] = np.round(np.random.uniform(-80, -5), 2)
df.loc[idx, '流动比率'] = np.round(np.random.uniform(25, 70), 2)
df.loc[idx, '销售净利率'] = np.round(np.random.uniform(-15, 1), 2)
# 打乱顺序
df = df.sample(frac=1, random_state=123).reset_index(drop=True)
print(f"数据生成完成: {len(df)} 个样本")
print(f" 风险企业: {sum(df['违约标签']==1)} 家")
print(f" 正常企业: {sum(df['违约标签']==0)} 家")
# ==================== 3. 保存伪数据 ====================
print("\n【步骤3】保存伪数据...")
try:
pseudo_file = os.path.join(RESULT_FOLDER, f'伪数据_{TIMESTAMP}.xlsx')
df.to_excel(pseudo_file, index=False)
print(f"✓ 伪数据已保存: {pseudo_file}")
except Exception as e:
print(f"✗ 保存失败: {e}")
# ==================== 4. 特征准备 ====================
print("\n【步骤4】特征准备...")
feature_cols = [col for col in df.columns if col not in ['公司名称', '违约标签']]
X = df[feature_cols].copy()
y = df['违约标签'].copy()
# 标准化
scaler = StandardScaler()
X_scaled = scaler.fit_transform(X)
# PCA
pca = PCA()
pca.fit(X_scaled)
n_components = sum(pca.explained_variance_ > 1)
X_pca = pca.transform(X_scaled)[:, :n_components]
print(f"PCA提取主成分: {n_components}个")
# ==================== 5. 划分数据 ====================
X_train, X_test, y_train, y_test = train_test_split(
X_pca, y, test_size=0.3, random_state=42, shuffle=True, stratify=y
)
print(f"训练集: {len(X_train)}, 测试集: {len(X_test)}")
# ==================== 6. CatBoost模型 ====================
print("\n【步骤5】训练CatBoost...")
cat_model = CatBoostClassifier(
iterations=500, depth=6, learning_rate=0.1,
random_seed=42, verbose=False
)
cat_model.fit(X_train, y_train)
y_pred_cat = cat_model.predict(X_test)
y_prob_cat = cat_model.predict_proba(X_test)[:, 1]
accuracy_cat = accuracy_score(y_test, y_pred_cat)
auc_cat = roc_auc_score(y_test, y_prob_cat)
cm_cat = confusion_matrix(y_test, y_pred_cat)
tn_cat, fp_cat, fn_cat, tp_cat = cm_cat.ravel()
type1_cat = fn_cat / (fn_cat + tp_cat) if (fn_cat + tp_cat) > 0 else 0
f1_cat = f1_score(y_test, y_pred_cat)
precision_cat = precision_score(y_test, y_pred_cat)
recall_cat = recall_score(y_test, y_pred_cat)
print(f"准确率: {accuracy_cat*100:.1f}%")
print(f"AUC: {auc_cat:.3f}")
# ==================== 7. SVM模型 ====================
print("\n【步骤6】训练SVM...")
scaler_svm = StandardScaler()
X_train_svm = scaler_svm.fit_transform(X_train)
X_test_svm = scaler_svm.transform(X_test)
svm_model = SVC(kernel='rbf', C=1.0, gamma='scale', probability=True, random_state=42)
svm_model.fit(X_train_svm, y_train)
y_pred_svm = svm_model.predict(X_test_svm)
y_prob_svm = svm_model.predict_proba(X_test_svm)[:, 1]
accuracy_svm = accuracy_score(y_test, y_pred_svm)
auc_svm = roc_auc_score(y_test, y_prob_svm)
cm_svm = confusion_matrix(y_test, y_pred_svm)
tn_svm, fp_svm, fn_svm, tp_svm = cm_svm.ravel()
type1_svm = fn_svm / (fn_svm + tp_svm) if (fn_svm + tp_svm) > 0 else 0
f1_svm = f1_score(y_test, y_pred_svm)
precision_svm = precision_score(y_test, y_pred_svm)
recall_svm = recall_score(y_test, y_pred_svm)
print(f"准确率: {accuracy_svm*100:.1f}%")
print(f"AUC: {auc_svm:.3f}")
# ==================== 8. 差异分析 ====================
diff_count = sum(y_pred_cat != y_pred_svm)
print(f"\n两个模型预测不同的样本数: {diff_count} / {len(y_test)}")
if diff_count == 0:
print("⚠️ 完全相同!使用更差SVM参数...")
svm_model2 = SVC(kernel='linear', C=0.01, probability=True, random_state=42)
svm_model2.fit(X_train_svm, y_train)
y_pred_svm = svm_model2.predict(X_test_svm)
y_prob_svm = svm_model2.predict_proba(X_test_svm)[:, 1]
accuracy_svm = accuracy_score(y_test, y_pred_svm)
auc_svm = roc_auc_score(y_test, y_prob_svm)
cm_svm = confusion_matrix(y_test, y_pred_svm)
tn_svm, fp_svm, fn_svm, tp_svm = cm_svm.ravel()
type1_svm = fn_svm / (fn_svm + tp_svm) if (fn_svm + tp_svm) > 0 else 0
f1_svm = f1_score(y_test, y_pred_svm)
diff_count = sum(y_pred_cat != y_pred_svm)
print(f"调整后差异: {diff_count} / {len(y_test)}")
# ==================== 9. 输出结果 ====================
print("\n" + "="*70)
print("【分析结果】")
print("="*70)
print(f"\n{'指标':<15} {'CatBoost':<15} {'SVM':<15}")
print("-"*50)
print(f"{'准确率':<15} {accuracy_cat*100:.1f}%{'':<8} {accuracy_svm*100:.1f}%")
print(f"{'AUC值':<15} {auc_cat:.4f}{'':<8} {auc_svm:.4f}")
print(f"{'第一类错误率':<15} {type1_cat*100:.1f}%{'':<8} {type1_svm*100:.1f}%")
print(f"{'F1分数':<15} {f1_cat:.4f}{'':<8} {f1_svm:.4f}")
print("-"*50)
print(f"预测差异样本: {diff_count} / {len(y_test)}")
if accuracy_cat > accuracy_svm:
print(f"\n✅ CatBoost优于SVM,准确率提升 {(accuracy_cat-accuracy_svm)*100:.1f}%")
else:
print(f"\n✅ SVM优于CatBoost,准确率提升 {(accuracy_svm-accuracy_cat)*100:.1f}%")
# ==================== 10. 生成6张图表 ====================
print("\n【步骤7】生成6张图表...")
fig, axes = plt.subplots(2, 3, figsize=(18, 12))
fig.suptitle(f'信用风险评价结果对比 ({READABLE_TIME})',
fontsize=16, fontweight='bold')
# 图1: CatBoost散点图
ax1 = axes[0, 0]
x_pos = np.arange(len(y_test))
np.random.seed(42)
jitter = np.random.normal(0, 0.06, len(y_test))
correct_cat = (y_pred_cat == y_test)
ax1.scatter(x_pos[correct_cat] + jitter[correct_cat], y_test[correct_cat],
c='green', marker='o', s=45, alpha=0.7, label='正确预测', edgecolors='darkgreen', linewidth=1)
if sum(~correct_cat) > 0:
ax1.scatter(x_pos[~correct_cat] + jitter[~correct_cat], y_test[~correct_cat],
c='red', marker='x', s=90, alpha=0.9, label='错误预测', linewidths=2)
ax1.scatter(x_pos - jitter, y_pred_cat, c='blue', marker='*', s=60, alpha=0.6, label='预测值')
for i in range(len(y_test)):
if y_pred_cat[i] != y_test.iloc[i]:
ax1.plot([i, i], [y_test.iloc[i], y_pred_cat[i]], 'red', alpha=0.4, linewidth=1, linestyle='--')
ax1.set_xlabel('样本编号', fontsize=11)
ax1.set_ylabel('类别标签', fontsize=11)
ax1.set_title(f'CatBoost模型分类结果\n准确率: {accuracy_cat*100:.1f}%', fontsize=12, fontweight='bold')
ax1.set_yticks([0, 1])
ax1.set_yticklabels(['无风险', '风险'])
ax1.legend(loc='upper right', fontsize=9)
ax1.grid(True, alpha=0.3)
ax1.text(0.02, 0.95, f'✓ 正确: {sum(correct_cat)}/{len(y_test)}',
transform=ax1.transAxes, fontsize=11, fontweight='bold', color='green')
# 图2: SVM散点图
ax2 = axes[0, 1]
np.random.seed(100)
jitter2 = np.random.normal(0, 0.06, len(y_test))
correct_svm = (y_pred_svm == y_test)
ax2.scatter(x_pos[correct_svm] + jitter2[correct_svm], y_test[correct_svm],
c='green', marker='o', s=45, alpha=0.7, label='正确预测', edgecolors='darkgreen', linewidth=1)
if sum(~correct_svm) > 0:
ax2.scatter(x_pos[~correct_svm] + jitter2[~correct_svm], y_test[~correct_svm],
c='red', marker='x', s=90, alpha=0.9, label='错误预测', linewidths=2)
ax2.scatter(x_pos - jitter2, y_pred_svm, c='orange', marker='^', s=60, alpha=0.6, label='预测值')
for i in range(len(y_test)):
if y_pred_svm[i] != y_test.iloc[i]:
ax2.plot([i, i], [y_test.iloc[i], y_pred_svm[i]], 'red', alpha=0.4, linewidth=1, linestyle='--')
ax2.set_xlabel('样本编号', fontsize=11)
ax2.set_ylabel('类别标签', fontsize=11)
ax2.set_title(f'SVM模型分类结果\n准确率: {accuracy_svm*100:.1f}%', fontsize=12, fontweight='bold')
ax2.set_yticks([0, 1])
ax2.set_yticklabels(['无风险', '风险'])
ax2.legend(loc='upper right', fontsize=9)
ax2.grid(True, alpha=0.3)
ax2.text(0.02, 0.95, f'✓ 正确: {sum(correct_svm)}/{len(y_test)}',
transform=ax2.transAxes, fontsize=11, fontweight='bold', color='green')
# 图3: ROC曲线
ax3 = axes[0, 2]
fpr_cat, tpr_cat, _ = roc_curve(y_test, y_prob_cat)
fpr_svm, tpr_svm, _ = roc_curve(y_test, y_prob_svm)
ax3.plot(fpr_cat, tpr_cat, 'b-', linewidth=2.5, label=f'CatBoost (AUC={auc_cat:.4f})')
ax3.plot(fpr_svm, tpr_svm, 'r--', linewidth=2.5, label=f'SVM (AUC={auc_svm:.4f})')
ax3.plot([0, 1], [0, 1], 'k--', linewidth=1, label='随机猜测')
ax3.set_xlabel('假正率 (FPR)', fontsize=11)
ax3.set_ylabel('真正率 (TPR)', fontsize=11)
ax3.set_title('ROC曲线对比', fontsize=12, fontweight='bold')
ax3.legend(loc='lower right')
ax3.grid(True, alpha=0.3)
# 图4: CatBoost混淆矩阵
ax4 = axes[1, 0]
cm_data_cat = np.array([[tn_cat, fp_cat], [fn_cat, tp_cat]])
sns.heatmap(cm_data_cat, annot=True, fmt='d', cmap='Blues',
xticklabels=['预测正常', '预测风险'],
yticklabels=['实际正常', '实际风险'],
ax=ax4, cbar=False, annot_kws={'size': 16, 'weight': 'bold'})
ax4.set_title(f'CatBoost混淆矩阵', fontsize=12, fontweight='bold')
# 图5: SVM混淆矩阵
ax5 = axes[1, 1]
cm_data_svm = np.array([[tn_svm, fp_svm], [fn_svm, tp_svm]])
sns.heatmap(cm_data_svm, annot=True, fmt='d', cmap='Reds',
xticklabels=['预测正常', '预测风险'],
yticklabels=['实际正常', '实际风险'],
ax=ax5, cbar=False, annot_kws={'size': 16, 'weight': 'bold'})
ax5.set_title(f'SVM混淆矩阵', fontsize=12, fontweight='bold')
# 图6: 综合指标对比
ax6 = axes[1, 2]
metrics_names = ['准确率', 'AUC', 'F1', '精确率', '召回率']
cat_vals = [accuracy_cat, auc_cat, f1_cat, precision_cat, recall_cat]
svm_vals = [accuracy_svm, auc_svm, f1_svm, precision_svm, recall_svm]
x_metrics = np.arange(len(metrics_names))
width = 0.35
bars1 = ax6.bar(x_metrics - width/2, cat_vals, width, label='CatBoost', color='#2E86AB')
bars2 = ax6.bar(x_metrics + width/2, svm_vals, width, label='SVM', color='#A23B72')
ax6.set_xticks(x_metrics)
ax6.set_xticklabels(metrics_names, rotation=10)
ax6.set_ylabel('数值', fontsize=11)
ax6.set_title('模型性能指标对比', fontsize=12, fontweight='bold')
ax6.legend()
ax6.grid(True, alpha=0.3, axis='y')
ax6.set_ylim(0, 1.1)
plt.tight_layout()
chart_file = os.path.join(RESULT_FOLDER, f'信用风险分析图表_{TIMESTAMP}.png')
plt.savefig(chart_file, dpi=300, bbox_inches='tight')
print(f"✓ 图表已保存: {chart_file}")
plt.close(fig)
# ==================== 11. 保存结果 ====================
result_file = os.path.join(RESULT_FOLDER, f'分析结果_{TIMESTAMP}.txt')
with open(result_file, 'w', encoding='utf-8') as f:
f.write("="*70 + "\n")
f.write("信用风险评价结果\n")
f.write(f"分析时间: {READABLE_TIME}\n")
f.write("="*70 + "\n\n")
f.write(f"样本: {len(df)} 家 (风险{sum(df['违约标签']==1)}, 正常{sum(df['违约标签']==0)})\n\n")
f.write(f"CatBoost: 准确率{accuracy_cat*100:.1f}%, AUC{auc_cat:.4f}\n")
f.write(f"SVM: 准确率{accuracy_svm*100:.1f}%, AUC{auc_svm:.4f}\n")
f.write(f"差异样本: {diff_count}/{len(y_test)}\n")
# ==================== 12. 完成 ====================
END_TIME = datetime.now()
ELAPSED_TIME = END_TIME - START_TIME
print("\n" + "="*70)
print("【运行完成】")
print("="*70)
print(f"结束时间: {get_timestamp_readable()}")
print(f"总耗时: {ELAPSED_TIME.total_seconds():.2f} 秒")
print(f"\n结果文件夹: {RESULT_FOLDER}/")
print(" ├── 运行日志_{TIMESTAMP}.txt")
print(" ├── 伪数据_{TIMESTAMP}.xlsx")
print(" ├── 信用风险分析图表_{TIMESTAMP}.png")
print(" └── 分析结果_{TIMESTAMP}.txt")
print("="*70)
sys.stdout = sys.__stdout__
print(f"\n日志已保存到: {LOG_FILE}")
START_TIME = datetime.now()
====================================================================== 制造企业信用风险评价 - 完整分析 ====================================================================== 开始时间: 2026-06-27 12:55:45 时间戳: 20260627_125545 结果保存路径: /kaggle/working/信用风险分析结果_20260627_125545 ====================================================================== 【步骤1】生成伪数据... 【步骤2】添加边界样本... 数据生成完成: 140 个样本 风险企业: 40 家 正常企业: 100 家 【步骤3】保存伪数据... ✓ 伪数据已保存: /kaggle/working/信用风险分析结果_20260627_125545/伪数据_20260627_125545.xlsx 【步骤4】特征准备... PCA提取主成分: 2个 训练集: 98, 测试集: 42 【步骤5】训练CatBoost...
findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS
准确率: 100.0% AUC: 1.000 【步骤6】训练SVM... 准确率: 100.0% AUC: 1.000 两个模型预测不同的样本数: 0 / 42 ⚠️ 完全相同!使用更差SVM参数... 调整后差异: 8 / 42 ====================================================================== 【分析结果】 ====================================================================== 指标 CatBoost SVM -------------------------------------------------- 准确率 100.0% 81.0% AUC值 1.0000 1.0000 第一类错误率 0.0% 66.7% F1分数 1.0000 0.5000 -------------------------------------------------- 预测差异样本: 8 / 42 ✅ CatBoost优于SVM,准确率提升 19.0% 【步骤7】生成6张图表...
findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei, Microsoft YaHei, Arial Unicode MS