├── plugins
├── audio.js
├── gravatar.js
├── base64.js
├── filters.js
├── ga.js
├── README.md
├── axios.js
├── seo.js
├── moment.js
├── mdit.js
├── hljs.js
├── anniTitle.js
└── pinyin.js
├── static
├── robots.txt
├── favicon.ico
├── images
│ ├── banner.jpg
│ ├── enjoy.png
│ ├── enjoy_qq.png
│ ├── banner_1600.jpg
│ └── logo.svg
├── fonts
│ └── DIN-Regular.ttf
├── README.md
└── sitemap.xml
├── store
├── api
│ ├── profile.js
│ ├── tag.js
│ ├── category.js
│ ├── music.js
│ ├── guestbook.js
│ ├── comment.js
│ └── article.js
├── README.md
├── modules
│ ├── profile.js
│ ├── tag.js
│ ├── category.js
│ ├── guestbook.js
│ ├── comment.js
│ ├── music.js
│ └── article.js
└── index.js
├── assets
├── sass
│ ├── app.scss
│ ├── init.scss
│ ├── base.scss
│ ├── webfont.scss
│ ├── common.scss
│ └── iconfont.scss
└── README.md
├── components
├── README.md
├── layout
│ ├── index.js
│ ├── aside.vue
│ ├── header.vue
│ ├── nav.vue
│ └── banner.vue
├── article
│ ├── list.vue
│ ├── pagination.vue
│ └── item.vue
├── aside
│ ├── ad2.vue
│ ├── ad3.vue
│ ├── ad.vue
│ ├── tags.vue
│ ├── articles.vue
│ └── search.vue
├── comment
│ ├── list.vue
│ ├── item.vue
│ └── index.vue
├── music
│ ├── small.vue
│ ├── aside.vue
│ └── footer.vue
├── markdown
│ ├── parse.vue
│ └── index.vue
├── slider
│ └── index.vue
└── console
│ └── index.vue
├── .editorconfig
├── layouts
├── README.md
├── empty.vue
├── default.vue
└── error.vue
├── .gitignore
├── pages
├── README.md
├── links
│ └── index.vue
├── index.vue
├── profile
│ └── index.vue
├── guestbook
│ └── index.vue
├── article
│ ├── list
│ │ └── _page.vue
│ └── _id.vue
├── tag
│ └── _alias
│ │ ├── index.vue
│ │ └── _page.vue
├── category
│ └── _alias
│ │ ├── index.vue
│ │ └── _page.vue
├── search
│ └── _keyword
│ │ ├── index.vue
│ │ └── _page.vue
├── music
│ └── index.vue
└── game
│ └── gobang.vue
├── app.config.js
├── middleware
└── README.md
├── .eslintrc.js
├── LICENSE
├── package.json
├── README.md
└── nuxt.config.js
/plugins/audio.js:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/static/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent:*
2 | Allow:/
3 |
--------------------------------------------------------------------------------
/plugins/gravatar.js:
--------------------------------------------------------------------------------
1 | import gravatar from 'gravatar'
2 | export default gravatar
3 |
--------------------------------------------------------------------------------
/plugins/base64.js:
--------------------------------------------------------------------------------
1 | import { Base64 } from 'js-base64';
2 |
3 | export default Base64
4 |
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jigsaw-china/unnue-nuxt/HEAD/static/favicon.ico
--------------------------------------------------------------------------------
/static/images/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jigsaw-china/unnue-nuxt/HEAD/static/images/banner.jpg
--------------------------------------------------------------------------------
/static/images/enjoy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jigsaw-china/unnue-nuxt/HEAD/static/images/enjoy.png
--------------------------------------------------------------------------------
/static/images/enjoy_qq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jigsaw-china/unnue-nuxt/HEAD/static/images/enjoy_qq.png
--------------------------------------------------------------------------------
/static/fonts/DIN-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jigsaw-china/unnue-nuxt/HEAD/static/fonts/DIN-Regular.ttf
--------------------------------------------------------------------------------
/static/images/banner_1600.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jigsaw-china/unnue-nuxt/HEAD/static/images/banner_1600.jpg
--------------------------------------------------------------------------------
/store/api/profile.js:
--------------------------------------------------------------------------------
1 | import request from '~/plugins/axios'
2 |
3 | // 个人档
4 | export function profile() {
5 | return request({
6 | url: `/setting/profile`,
7 | method: 'get'
8 | })
9 | }
10 |
--------------------------------------------------------------------------------
/plugins/filters.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import * as moment from '~/plugins/moment'
3 |
4 | const filters = {...moment}
5 |
6 | Object.keys(filters).forEach(key => {
7 | Vue.filter(key, filters[key])
8 | })
9 |
--------------------------------------------------------------------------------
/store/api/tag.js:
--------------------------------------------------------------------------------
1 | import request from '~/plugins/axios'
2 |
3 | // 列表
4 | export function tagList(data) {
5 | return request({
6 | url: '/tag/list',
7 | method: 'get',
8 | data
9 | })
10 | }
11 |
--------------------------------------------------------------------------------
/assets/sass/app.scss:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 |
3 | // 初始样式
4 | @import 'init.scss';
5 |
6 | // 在线字体
7 | @import 'webfont.scss';
8 |
9 | // 图标
10 | @import 'iconfont.scss';
11 |
12 | // 公共样式
13 | @import 'common.scss';
14 |
--------------------------------------------------------------------------------
/store/api/category.js:
--------------------------------------------------------------------------------
1 | import request from '~/plugins/axios'
2 |
3 | // 列表
4 | export function categoryList(data) {
5 | return request({
6 | url: '/category/list',
7 | method: 'get',
8 | data
9 | })
10 | }
11 |
--------------------------------------------------------------------------------
/components/README.md:
--------------------------------------------------------------------------------
1 | # COMPONENTS
2 |
3 | The components directory contains your Vue.js Components.
4 | Nuxt.js doesn't supercharge these components.
5 |
6 | **This directory is not required, you can delete it if you don't want to use it.**
7 |
--------------------------------------------------------------------------------
/components/layout/index.js:
--------------------------------------------------------------------------------
1 | import Header from './header.vue'
2 | import Banner from './banner.vue'
3 | import Nav from './nav.vue'
4 | import Aside from './aside.vue'
5 |
6 | export {
7 | Header,
8 | Banner,
9 | Nav,
10 | Aside
11 | }
12 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # editorconfig.org
2 | root = true
3 |
4 | [*]
5 | indent_size = 2
6 | indent_style = space
7 | end_of_line = lf
8 | charset = utf-8
9 | trim_trailing_whitespace = true
10 | insert_final_newline = true
11 |
12 | [*.md]
13 | trim_trailing_whitespace = false
14 |
--------------------------------------------------------------------------------
/layouts/README.md:
--------------------------------------------------------------------------------
1 | # LAYOUTS
2 |
3 | This directory contains your Application Layouts.
4 |
5 | More information about the usage of this directory in the documentation:
6 | https://nuxtjs.org/guide/views#layouts
7 |
8 | **This directory is not required, you can delete it if you don't want to use it.**
9 |
--------------------------------------------------------------------------------
/plugins/ga.js:
--------------------------------------------------------------------------------
1 | export default ({ app: { router }, store }) => {
2 | /*
3 | ** 每次路由变更时进行pv统计
4 | */
5 | router.afterEach((to, from) => {
6 | /*
7 | ** 告诉 GA 增加一个 PV
8 | */
9 | window._hmt = window._hmt || []
10 | window._hmt.push(['_trackPageview', to.fullPath])
11 | })
12 | }
13 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # dependencies
2 | node_modules
3 |
4 | # logs
5 | npm-debug.log
6 |
7 | # Nuxt build
8 | .nuxt
9 |
10 | # Nuxt generate
11 | dist
12 |
13 | # Editor directories and files
14 | .idea
15 | .vscode
16 |
17 | # config file
18 | # nuxt.config.js
19 | # app.config.js
20 |
21 | package-lock.json
22 |
--------------------------------------------------------------------------------
/pages/README.md:
--------------------------------------------------------------------------------
1 | # PAGES
2 |
3 | This directory contains your Application Views and Routes.
4 | The framework reads all the .vue files inside this directory and creates the router of your application.
5 |
6 | More information about the usage of this directory in the documentation:
7 | https://nuxtjs.org/guide/routing
8 |
--------------------------------------------------------------------------------
/assets/README.md:
--------------------------------------------------------------------------------
1 | # ASSETS
2 |
3 | This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.
4 |
5 | More information about the usage of this directory in the documentation:
6 | https://nuxtjs.org/guide/assets#webpacked
7 |
8 | **This directory is not required, you can delete it if you don't want to use it.**
9 |
--------------------------------------------------------------------------------
/plugins/README.md:
--------------------------------------------------------------------------------
1 | # PLUGINS
2 |
3 | This directory contains your Javascript plugins that you want to run before instantiating the root vue.js application.
4 |
5 | More information about the usage of this directory in the documentation:
6 | https://nuxtjs.org/guide/plugins
7 |
8 | **This directory is not required, you can delete it if you don't want to use it.**
9 |
--------------------------------------------------------------------------------
/static/README.md:
--------------------------------------------------------------------------------
1 | # STATIC
2 |
3 | This directory contains your static files.
4 | Each file inside this directory is mapped to /.
5 |
6 | Example: /static/robots.txt is mapped as /robots.txt.
7 |
8 | More information about the usage of this directory in the documentation:
9 | https://nuxtjs.org/guide/assets#static
10 |
11 | **This directory is not required, you can delete it if you don't want to use it.**
12 |
--------------------------------------------------------------------------------
/app.config.js:
--------------------------------------------------------------------------------
1 | const isProdMode = Object.is(process.env.NODE_ENV, 'production')
2 |
3 | export const baseURL = isProdMode ? 'https://api.unnue.com' : 'http://localhost:3001';
4 | export const timeout = 10000;
5 |
6 | // 网站信息
7 | export const SITE = {
8 | postfix: ' _开媛笔记 💳',
9 | adminUrl: isProdMode ? 'https://admin.unnue.com' : 'http://localhost:8081'
10 | };
11 |
12 | // 百度联盟id
13 | export const adId = 'u5768008';
14 |
--------------------------------------------------------------------------------
/middleware/README.md:
--------------------------------------------------------------------------------
1 | # MIDDLEWARE
2 |
3 | This directory contains your Application Middleware.
4 | The middleware lets you define custom function to be ran before rendering a page or a group of pages (layouts).
5 |
6 | More information about the usage of this directory in the documentation:
7 | https://nuxtjs.org/guide/routing#middleware
8 |
9 | **This directory is not required, you can delete it if you don't want to use it.**
10 |
--------------------------------------------------------------------------------
/store/api/music.js:
--------------------------------------------------------------------------------
1 | import request from '~/plugins/axios'
2 |
3 | // 列表
4 | export function musicList() {
5 | return new Promise(async (resolve) => {
6 | const result = await request({
7 | url: 'https://401852215.varwx.club/music',
8 | method: 'get'
9 | })
10 | resolve({
11 | data: {
12 | code: 1,
13 | result: {
14 | list: result.data
15 | }
16 | }
17 | });
18 | })
19 | }
20 |
--------------------------------------------------------------------------------
/store/README.md:
--------------------------------------------------------------------------------
1 | # STORE
2 |
3 | This directory contains your Vuex Store files.
4 | Vuex Store option is implemented in the Nuxt.js framework.
5 | Creating a index.js file in this directory activate the option in the framework automatically.
6 |
7 | More information about the usage of this directory in the documentation:
8 | https://nuxtjs.org/guide/vuex-store
9 |
10 | **This directory is not required, you can delete it if you don't want to use it.**
11 |
--------------------------------------------------------------------------------
/store/api/guestbook.js:
--------------------------------------------------------------------------------
1 | import request from '~/plugins/axios'
2 |
3 | // 列表
4 | export function guestbookList() {
5 | return request({
6 | url: `/guestbook/list`,
7 | method: 'get'
8 | })
9 | }
10 |
11 | // 评论
12 | export function guestbook(data) {
13 | for (const item in data) {
14 | if(data[item] === '') {
15 | delete data[item]
16 | }
17 | }
18 | return request({
19 | url: '/guestbook/save',
20 | method: 'post',
21 | data
22 | })
23 | }
24 |
--------------------------------------------------------------------------------
/store/api/comment.js:
--------------------------------------------------------------------------------
1 | import request from '~/plugins/axios'
2 |
3 | // 列表
4 | export function commentList(params) {
5 | return request({
6 | url: `/comment/list/${params.id}`,
7 | method: 'get'
8 | })
9 | }
10 |
11 | // 评论
12 | export function comment(data) {
13 | for (const item in data) {
14 | if(data[item] === '') {
15 | delete data[item]
16 | }
17 | }
18 | return request({
19 | url: '/comment/save',
20 | method: 'post',
21 | data
22 | })
23 | }
24 |
--------------------------------------------------------------------------------
/plugins/axios.js:
--------------------------------------------------------------------------------
1 | import axios from 'axios'
2 | import { baseURL, timeout } from "~/app.config";
3 |
4 | const request = axios.create({
5 | baseURL,
6 | timeout
7 | })
8 |
9 | // 拦截器
10 | request.interceptors.request.use(config => {
11 | return config
12 | }, error => {
13 | return Promise.reject(error)
14 | })
15 |
16 | request.interceptors.response.use(response => {
17 | return response
18 | }, error => {
19 | return Promise.reject(error)
20 | })
21 |
22 | export default request
23 |
--------------------------------------------------------------------------------
/plugins/seo.js:
--------------------------------------------------------------------------------
1 | const isProdMode = Object.is(process.env.NODE_ENV, 'production');
2 |
3 | if (isProdMode) {
4 | var bp = document.createElement('script');
5 | var curProtocol = window.location.protocol.split(':')[0];
6 | if (curProtocol === 'https') {
7 | bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
8 | }
9 | else {
10 | bp.src = 'http://push.zhanzhang.baidu.com/push.js';
11 | }
12 | var s = document.getElementsByTagName("script")[0];
13 | s.parentNode.insertBefore(bp, s);
14 | }
15 |
--------------------------------------------------------------------------------
/plugins/moment.js:
--------------------------------------------------------------------------------
1 | import moment from 'moment'
2 |
3 | moment.locale('zh-cn'); // 使用中文
4 |
5 | export function relativeTime(date) {
6 | return moment(date).format('YY-MM-DD h:mm:ss a dddd')
7 | }
8 | export function ago(date) {
9 | return moment(date).fromNow()
10 | }
11 | export function formatSeconds(ms) {
12 | const tempTime = moment.duration(ms)
13 | const minutes = tempTime.minutes()
14 | const seconds = tempTime.seconds()
15 | return `${minutes > 9 ? minutes : '0' + minutes}:${seconds > 9 ? seconds : '0' + seconds}`
16 | }
17 |
--------------------------------------------------------------------------------
/store/api/article.js:
--------------------------------------------------------------------------------
1 | import request from '~/plugins/axios'
2 |
3 | // 列表
4 | export function articleList(params) {
5 | return request({
6 | url: '/article/list',
7 | method: 'get',
8 | params
9 | })
10 | }
11 |
12 | // 详情
13 | export function articleDetail(id) {
14 | return request({
15 | url: `/article/detail/${id}`,
16 | method: 'get'
17 | })
18 | }
19 |
20 | // 点赞
21 | export function articleLike(data) {
22 | return request({
23 | url: '/article/like',
24 | method: 'put',
25 | data
26 | })
27 | }
28 |
--------------------------------------------------------------------------------
/store/modules/profile.js:
--------------------------------------------------------------------------------
1 | import { profile } from '../api/profile'
2 |
3 | const _profile = {
4 | state: {
5 | profile: {}
6 | },
7 | mutations: {
8 | SET_PROFILE: (state, profile) => {
9 | state.profile = profile
10 | }
11 | },
12 | actions: {
13 | // 个人档
14 | async Profile({ commit }) {
15 | const result = await profile()
16 | if (result.data.code === 1){
17 | const res = result.data.result
18 | commit('SET_PROFILE', res)
19 | }
20 | }
21 | }
22 | }
23 |
24 | export default _profile
25 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | env: {
4 | browser: true,
5 | node: true
6 | },
7 | parserOptions: {
8 | parser: 'babel-eslint'
9 | },
10 | extends: [
11 | // https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
12 | // consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
13 | 'plugin:vue/essential'
14 | ],
15 | // required to lint *.vue files
16 | plugins: [
17 | 'vue'
18 | ],
19 | // add your custom rules here
20 | rules: {}
21 | }
22 |
--------------------------------------------------------------------------------
/components/article/list.vue:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
29 |
--------------------------------------------------------------------------------
/components/aside/ad2.vue:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
23 |
24 |
29 |
--------------------------------------------------------------------------------
/store/modules/tag.js:
--------------------------------------------------------------------------------
1 | import { tagList } from '../api/tag'
2 |
3 | const tag = {
4 | state: {
5 | list: [],
6 | map: {}
7 | },
8 | mutations: {
9 | SET_TAG_LIST: (state, list) => {
10 | state.list = list
11 | list.forEach(item => {
12 | state.map[item.alias] = item.id
13 | })
14 | }
15 | },
16 | actions: {
17 | // 列表
18 | async TagList({ commit }, data) {
19 | const result = await tagList(data)
20 | if (result.data.code === 1){
21 | const res = result.data.result
22 | commit('SET_TAG_LIST', res.list)
23 | }
24 | }
25 | }
26 | }
27 |
28 | export default tag
29 |
--------------------------------------------------------------------------------
/pages/links/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
12 |
13 |
31 |
--------------------------------------------------------------------------------
/layouts/empty.vue:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
14 |
23 |
24 |
34 |
--------------------------------------------------------------------------------
/store/modules/category.js:
--------------------------------------------------------------------------------
1 | import { categoryList } from '../api/category'
2 |
3 | const category = {
4 | state: {
5 | list: [],
6 | map: {}
7 | },
8 | mutations: {
9 | SET_CATEGORY_LIST: (state, list) => {
10 | state.list = list
11 | list.forEach(item => {
12 | state.map[item.alias] = item.id
13 | })
14 | }
15 | },
16 | actions: {
17 | // 列表
18 | async CategoryList({ commit }, data) {
19 | const result = await categoryList(data)
20 | if (result.data.code === 1){
21 | const res = result.data.result
22 | commit('SET_CATEGORY_LIST', res.list)
23 | }
24 | }
25 | }
26 | }
27 |
28 | export default category
29 |
--------------------------------------------------------------------------------
/components/comment/list.vue:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
27 |
28 |
35 |
--------------------------------------------------------------------------------
/static/images/logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/plugins/mdit.js:
--------------------------------------------------------------------------------
1 | import mdit from 'markdown-it'
2 | import mila from 'markdown-it-link-attributes'
3 | import hljs from '~/plugins/hljs'
4 |
5 | export default (content, htmled = false) => mdit({
6 | html: htmled, // 是否解析html
7 | highlight: function (str, lang) {
8 | if (lang && hljs.getLanguage(lang)) {
9 | try {
10 | return '
' +
11 | hljs.highlight(lang, str, true).value +
12 | '
';
13 | } catch (__) {}
14 | }
15 |
16 | return '' + mdit().utils.escapeHtml(str) + '
';
17 | }
18 | }).use(mila, { // nofollow
19 | attrs: {
20 | target: '_blank',
21 | rel: 'external nofollow noopener'
22 | }
23 | }).render(content)
24 |
--------------------------------------------------------------------------------
/assets/sass/init.scss:
--------------------------------------------------------------------------------
1 | @import 'normalize.css';
2 |
3 | *{
4 | padding: 0;
5 | margin: 0;
6 | box-sizing: border-box;
7 | }
8 |
9 | ul,
10 | li{
11 | list-style: none;
12 | }
13 |
14 | i{
15 | font-style: normal;
16 | }
17 |
18 | a{
19 | display: inline-block;
20 | color: #333;
21 | text-decoration: none;
22 | transition: .3s;
23 | &:hover{
24 | color: $orange;
25 | }
26 | }
27 |
28 | ::selection {
29 | background-color: $orange;
30 | color: #fff;
31 | }
32 |
33 | ::-webkit-scrollbar-track-piece{width:5px;background-color:#f2f2f2;border-radius:0;}
34 | ::-webkit-scrollbar{width:5px;height:5px;}
35 | ::-webkit-scrollbar-thumb{height:0;background: #f19fb6;border-radius:0;}
36 | ::-webkit-scrollbar-thumb:hover{background: #deb0bb;}
37 |
--------------------------------------------------------------------------------
/components/layout/aside.vue:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
32 |
33 |
39 |
--------------------------------------------------------------------------------
/pages/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
32 |
--------------------------------------------------------------------------------
/pages/profile/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
28 |
29 |
38 |
--------------------------------------------------------------------------------
/components/aside/ad3.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 支持
5 |
6 |
7 |
![]()
8 |
9 |
10 |
11 |
12 |
22 |
23 |
32 |
--------------------------------------------------------------------------------
/store/modules/guestbook.js:
--------------------------------------------------------------------------------
1 | import { guestbookList, guestbook } from '../api/guestbook'
2 |
3 | const _guestbook = {
4 | state: {
5 | list: []
6 | },
7 | mutations: {
8 | SET_GUESTBOOK_LIST: (state, list) => {
9 | state.list = list
10 | }
11 | },
12 | actions: {
13 | // 列表
14 | async GuestbookList({ commit }) {
15 | const result = await guestbookList()
16 | if (result.data.code === 1){
17 | const res = result.data.result
18 | commit('SET_GUESTBOOK_LIST', res.list)
19 | }
20 | },
21 | // 留言
22 | async Guestbook({ commit, state }, data) {
23 | const result = await guestbook(data)
24 | if (result.data.code === 1){
25 | commit('SET_GUESTBOOK_LIST', [ result.data.result, ...state.list ])
26 | }
27 | return result
28 | },
29 | }
30 | }
31 |
32 | export default _guestbook
33 |
--------------------------------------------------------------------------------
/pages/guestbook/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
34 |
35 |
40 |
--------------------------------------------------------------------------------
/store/modules/comment.js:
--------------------------------------------------------------------------------
1 | import { commentList, comment } from '../api/comment'
2 |
3 | const _comment = {
4 | state: {
5 | list: []
6 | },
7 | mutations: {
8 | SET_COMMENT_LIST: (state, list) => {
9 | state.list = list
10 | }
11 | },
12 | actions: {
13 | // 列表
14 | async CommentList({ commit }, data) {
15 | const result = await commentList(data)
16 | if (result.data.code === 1){
17 | const res = result.data.result
18 | commit('SET_COMMENT_LIST', res.list)
19 | }
20 | },
21 | // 评论
22 | async Comment({ commit, state }, data) {
23 | const result = await comment(data)
24 | if (result.data.code === 1){
25 | commit('SET_COMMENT_LIST', [ result.data.result, ...state.list ])
26 | commit('ARTICLE_COMMENT', 1)
27 | }
28 | return result
29 | },
30 | }
31 | }
32 |
33 | export default _comment
34 |
--------------------------------------------------------------------------------
/store/index.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import Vuex from 'vuex'
3 |
4 | import tag from './modules/tag'
5 | import category from './modules/category'
6 | import article from './modules/article'
7 | import comment from './modules/comment'
8 | import guestbook from './modules/guestbook'
9 | import profile from './modules/profile'
10 | import music from './modules/music'
11 |
12 | Vue.use(Vuex)
13 |
14 | const store = () => new Vuex.Store({
15 | modules: {
16 | tag,
17 | category,
18 | article,
19 | comment,
20 | guestbook,
21 | profile,
22 | music
23 | },
24 | actions: {
25 | // 初始化,自动执行
26 | nuxtServerInit (store) {
27 | return Promise.all([
28 | store.dispatch('ArticleBestList'),
29 | store.dispatch('TagList'),
30 | store.dispatch('CategoryList'),
31 | store.dispatch('MusicList')
32 | ])
33 | }
34 | }
35 | })
36 |
37 | export default store
38 |
--------------------------------------------------------------------------------
/pages/article/list/_page.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
33 |
--------------------------------------------------------------------------------
/plugins/hljs.js:
--------------------------------------------------------------------------------
1 | /*
2 | *
3 | * 代码高亮
4 | *
5 | */
6 |
7 | const hljs = require('highlight.js/lib/highlight')
8 |
9 | hljs.registerLanguage('css', require('highlight.js/lib/languages/css'))
10 | hljs.registerLanguage('xml', require('highlight.js/lib/languages/xml'))
11 | hljs.registerLanguage('json', require('highlight.js/lib/languages/json'))
12 | hljs.registerLanguage('bash', require('highlight.js/lib/languages/bash'))
13 | hljs.registerLanguage('less', require('highlight.js/lib/languages/less'))
14 | hljs.registerLanguage('scss', require('highlight.js/lib/languages/scss'))
15 | hljs.registerLanguage('shell', require('highlight.js/lib/languages/shell'))
16 | hljs.registerLanguage('nginx', require('highlight.js/lib/languages/nginx'))
17 | hljs.registerLanguage('stylus', require('highlight.js/lib/languages/stylus'))
18 | hljs.registerLanguage('javascript', require('highlight.js/lib/languages/javascript'))
19 | hljs.registerLanguage('typescript', require('highlight.js/lib/languages/typescript'))
20 |
21 | export default hljs
22 |
--------------------------------------------------------------------------------
/components/aside/ad.vue:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
36 |
37 |
42 |
--------------------------------------------------------------------------------
/plugins/anniTitle.js:
--------------------------------------------------------------------------------
1 | export default ({ app: { router }, store }) => {
2 | /*
3 | ** 每次路由变更之后
4 | */
5 | router.afterEach((to, from) => {
6 | // window._anniTitle = window._anniTitle || null
7 | // clearInterval(window._anniTitle)
8 | //
9 | // setTimeout(_ => {
10 | // const title = document.title
11 | // const arr = []
12 | // for (let index = 0; index < title.length; index++) {
13 | // const value = title.charAt(index).toLocaleUpperCase()
14 | // if (/^[A-Z]*$/.test(value)) {
15 | // arr.push({
16 | // index,
17 | // value
18 | // })
19 | // }
20 | // }
21 | //
22 | // if (!arr.length) {
23 | // return
24 | // }
25 | //
26 | // let i = 0
27 | // window._anniTitle = setInterval(_ => {
28 | // const tempArr = title.split('')
29 | // tempArr.splice(arr[i].index, 1, arr[i].value)
30 | // document.title = tempArr.join('')
31 | // i < arr.length - 1 ? i++ : i = 0
32 | // }, 800)
33 | // }, 800)
34 | })
35 | }
36 |
--------------------------------------------------------------------------------
/assets/sass/base.scss:
--------------------------------------------------------------------------------
1 | // 仅用于定义变量和方法
2 |
3 | /******************************** 变量 ********************************/
4 | $bg-body: #f4eece;
5 | $bg-navbar: #ccb28d;
6 | $orange: #FFA500;
7 | $white: #fff;
8 | $gray: #ddd;
9 | $border-color: #ebe3bc;
10 |
11 | /******************************** 混合 ********************************/
12 | /// 背景透明
13 | /// @param color 颜色
14 | /// @param opacity 透明度
15 | @mixin bg-opacity($color: #fff, $opacity: .85) {
16 | background: rgba($color, $opacity);
17 | }
18 |
19 | /// 绝对定位
20 | /// @param zindex 层级
21 | @mixin absolute($zindex: 1) {
22 | position: absolute;
23 | top: 0;
24 | left: 0;
25 | z-index: $zindex;
26 | width: 100%;
27 | height: 100%;
28 | }
29 |
30 | /// 超出省略
31 | /// @param line 行数
32 | @mixin ellipsis($line: 2) {
33 | display: -webkit-box;
34 | overflow: hidden;
35 | text-overflow: ellipsis;
36 | -webkit-line-clamp:$line;
37 | -webkit-box-orient: vertical;
38 | }
39 |
40 | /******************************** 方法 ********************************/
41 | /// 转换单位
42 | /// @param px 像素值
43 | @function var($px) {
44 | @return $px / 50 + rem
45 | }
46 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 jigsaw-china
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "unnue-nuxt",
3 | "version": "1.0.0",
4 | "description": "Nuxt.js project",
5 | "author": "274111451@qq.com",
6 | "private": true,
7 | "scripts": {
8 | "dev": "nuxt",
9 | "build": "nuxt build",
10 | "start": "nuxt start",
11 | "generate": "nuxt generate",
12 | "lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
13 | "precommit": "npm run lint"
14 | },
15 | "dependencies": {
16 | "axios": "^0.18.0",
17 | "font-awesome": "^4.7.0",
18 | "gravatar": "^1.6.0",
19 | "highlight.js": "^9.12.0",
20 | "js-base64": "^2.5.0",
21 | "markdown-it": "^8.4.2",
22 | "markdown-it-link-attributes": "^2.1.0",
23 | "moment": "^2.22.2",
24 | "normalize.css": "^8.0.0",
25 | "nuxt": "^1.0.0",
26 | "prettier": "^1.13.7",
27 | "simplemde": "^1.11.2",
28 | "vue-loader": "^13.7.3"
29 | },
30 | "devDependencies": {
31 | "babel-eslint": "^8.2.6",
32 | "eslint": "^4.15.0",
33 | "eslint-friendly-formatter": "^3.0.0",
34 | "eslint-loader": "^1.7.1",
35 | "eslint-plugin-vue": "^4.0.0",
36 | "node-sass": "^4.9.3",
37 | "sass-loader": "^7.1.0"
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/pages/tag/_alias/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
42 |
--------------------------------------------------------------------------------
/pages/category/_alias/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
42 |
--------------------------------------------------------------------------------
/layouts/default.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
39 |
40 |
53 |
--------------------------------------------------------------------------------
/pages/search/_keyword/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
45 |
--------------------------------------------------------------------------------
/pages/tag/_alias/_page.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
46 |
--------------------------------------------------------------------------------
/components/music/small.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
37 |
38 |
58 |
--------------------------------------------------------------------------------
/pages/category/_alias/_page.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
46 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # buluo.cc
2 |
3 | > 开媛笔记,基于nuxt ssr首屏服务器端渲染 。用于分享、记录、交流和学习,希望可以帮助到小伙伴们。同时网站在不断更新,创造属于猿(媛)的世界 -$Bao Yalong ..
4 |
5 | *****
6 | ## 剩余小任务
7 | * ~~搜索功能(已完成,支持包含空格的搜索)~~
8 | * ~~个人档模块~~
9 | * ~~音乐模块 🏄~~
10 | * 控制台接入图灵机器人
11 | * ~~移动端适配~~
12 | * ~~功能细节优化~~
13 |
14 | ## 简述
15 | ### 前端 [项目地址](https://github.com/jigsaw-china/unnue-nuxt)
16 | * 语言:Javascript
17 | * 主框架:Nuxt
18 | 1. 状态管理:Vuex
19 | 2. 路由:vue-router
20 | * 网络请求:axios
21 | * 编辑器:markdown-it
22 | * 代码高亮:highlight.js
23 | * 日期处理:moment
24 | * 头像:gravatar
25 | * 第三方登录:QQ
26 |
27 | ### 服务端 ~~[项目地址](https://github.com/jigsaw-china/unnue-nest)~~ 即将开放
28 | * 语言:Typescript
29 | * 主框架:Nestjs
30 | * 数据库:Mysql
31 | * 数据库ORM:typeorm
32 | * 静态资源:七牛云
33 | * CDN:七牛云
34 |
35 | ### 后台管理 ~~[项目地址](https://github.com/jigsaw-china/unnue-admin)~~ 暂未开放
36 | * 语言:Javascript
37 | * 前端框架:Vue
38 | * 后台管理UI:Element
39 |
40 | ### 服务器
41 | * 系统:CentOS
42 | * 运行环境:Nodejs
43 | * 反向代理:Nginx
44 | * 进程管理:Pm2
45 | * 项目管理:Git
46 |
47 | ## Build Setup
48 |
49 | ``` bash
50 | # install dependencies
51 | $ npm install # Or yarn install
52 |
53 | # serve with hot reload at localhost:3000
54 | $ npm run dev
55 |
56 | # build for production and launch server
57 | $ npm run build
58 | $ npm start
59 |
60 | # generate static project
61 | $ npm run generate
62 | ```
63 |
64 | For detailed explanation on how things work, checkout the [Nuxt.js docs](https://github.com/nuxt/nuxt.js).
65 |
--------------------------------------------------------------------------------
/components/aside/tags.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 标签
5 |
6 |
7 | -
10 |
11 | {{item.title}}[{{item.count}}]
12 |
13 |
14 |
15 |
16 |
17 |
18 |
30 |
31 |
56 |
--------------------------------------------------------------------------------
/pages/search/_keyword/_page.vue:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
46 |
--------------------------------------------------------------------------------
/components/layout/header.vue:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
28 |
29 |
61 |
--------------------------------------------------------------------------------
/components/aside/articles.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 推荐
5 |
6 |
7 | -
10 |
11 | {{index+1}}. {{item.title}}
12 |
13 |
14 |
15 |
16 |
17 |
18 |
30 |
31 |
61 |
--------------------------------------------------------------------------------
/components/aside/search.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
10 |
11 |
12 |
31 |
32 |
65 |
--------------------------------------------------------------------------------
/components/markdown/parse.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
28 |
78 |
--------------------------------------------------------------------------------
/components/layout/nav.vue:
--------------------------------------------------------------------------------
1 |
2 |
34 |
35 |
36 |
48 |
49 |
71 |
--------------------------------------------------------------------------------
/components/article/pagination.vue:
--------------------------------------------------------------------------------
1 |
2 |
31 |
32 |
33 |
51 |
52 |
78 |
--------------------------------------------------------------------------------
/components/comment/item.vue:
--------------------------------------------------------------------------------
1 |
2 |
31 |
32 |
33 |
48 |
49 |
82 |
--------------------------------------------------------------------------------
/assets/sass/webfont.scss:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'DINRegular';
3 | src: url('/fonts/DIN-Regular.ttf');
4 | }
5 |
6 | // slogan
7 | @font-face {
8 | font-family: 'slogan';
9 | src: url('//at.alicdn.com/t/webfont_evstf65lu54.eot'); /* IE9*/
10 | src: url('//at.alicdn.com/t/webfont_evstf65lu54.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
11 | url('//at.alicdn.com/t/webfont_evstf65lu54.woff') format('woff'), /* chrome、firefox */
12 | url('//at.alicdn.com/t/webfont_evstf65lu54.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
13 | url('//at.alicdn.com/t/webfont_evstf65lu54.svg#庞门正道标题体2') format('svg'); /* iOS 4.1- */
14 | }
15 |
16 | @font-face {
17 | font-family: 'zhankuxiaowei';
18 | src: url('//at.alicdn.com/t/webfont_83qhwlpu3fm.eot'); /* IE9*/
19 | src: url('//at.alicdn.com/t/webfont_83qhwlpu3fm.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
20 | url('//at.alicdn.com/t/webfont_83qhwlpu3fm.woff') format('woff'), /* chrome、firefox */
21 | url('//at.alicdn.com/t/webfont_83qhwlpu3fm.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
22 | url('//at.alicdn.com/t/webfont_83qhwlpu3fm.svg#站酷小薇体') format('svg'); /* iOS 4.1- */
23 | }
24 |
25 | @font-face {
26 | font-family: 'zhushilin';
27 | src: url('//at.alicdn.com/t/webfont_h9u93f3gq1b.eot'); /* IE9*/
28 | src: url('//at.alicdn.com/t/webfont_h9u93f3gq1b.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
29 | url('//at.alicdn.com/t/webfont_h9u93f3gq1b.woff') format('woff'), /* chrome、firefox */
30 | url('//at.alicdn.com/t/webfont_h9u93f3gq1b.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
31 | url('//at.alicdn.com/t/webfont_h9u93f3gq1b.svg#杨任东竹石体-Bold') format('svg'); /* iOS 4.1- */
32 | }
33 | .webfont {
34 | font-size: 1em;
35 | font-style: normal;
36 | -webkit-font-smoothing: antialiased;
37 | -webkit-text-stroke-width: 0.2px;
38 | -moz-osx-font-smoothing: grayscale;
39 | &.slogan{
40 | font-family: "slogan" !important;
41 | }
42 | &.w1{
43 | font-family: "zhankuxiaowei" !important;
44 | }
45 | &.w2{
46 | font-family: "zhushilin" !important;
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/components/markdown/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
64 |
65 |
88 |
--------------------------------------------------------------------------------
/nuxt.config.js:
--------------------------------------------------------------------------------
1 | const cndURL = 'https://cdn2.unnue.com';
2 | const baiduKey = 'cea5893888a0415c7e2366dc669e9a94';
3 |
4 | module.exports = {
5 | head: {
6 | title: '开媛笔记 | unNue.com',
7 | titleTemplate: '%s _开媛笔记 💳',
8 | htmlAttrs: {
9 | lang: 'zh'
10 | },
11 | meta: [
12 | { charset: 'utf-8' },
13 | { 'http-equiv': 'Content-Type', content: 'text/html' },
14 | { name: 'viewport', content: 'width=device-width, initial-scale=1.0, user-scalable=no' },
15 | { name: 'author', content: '274111451@qq.com' },
16 | { hid: 'keywords', name: 'keywords', content: '开媛笔记,开猿笔记,开源笔记,开源博客,开源个人网站,前后端分离网站,前端技术问题,vue ssr,nodejs项目,nuxt项目' },
17 | { hid: 'description', name: 'description', content: '开媛笔记,鲍亚龙的开源网站,基于nuxt ssr首屏服务器端渲染 ⚡。用于分享、记录、交流和学习,希望可以帮助到小伙伴们。同时网站在不断更新,创造属于猿(媛)的世界 🍬 -$Bao Yalong .. ' }
18 | ],
19 | link: [
20 | { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
21 | ],
22 | script: [
23 | { src: `https://hm.baidu.com/hm.js?${baiduKey}` },
24 | { src: '//cpro.baidustatic.com/cpro/ui/c.js', async: true, defer: true } // 广告
25 | ],
26 | },
27 | css: [
28 | { src: '~assets/sass/app.scss', lang: 'scss' }
29 | ],
30 | loading: { color: '#3B8070' },
31 | cache: {
32 | max: 100,
33 | maxAge: 1000 * 60 * 15
34 | },
35 | plugins: [
36 | { src: '~/plugins/ga', ssr: false },
37 | { src: '~/plugins/seo', ssr: false },
38 | { src: '~/plugins/anniTitle', ssr: false },
39 | { src: '~/plugins/audio', ssr: false },
40 | { src: '~/plugins/base64', ssr: false },
41 | { src: '~/plugins/filters' },
42 | { src: '~/plugins/gravatar' },
43 | ],
44 | build: {
45 | // analyze: true,
46 | publicPath: `${cndURL}/_nuxt/`,
47 | // 都能使用此文件
48 | styleResources: {
49 | scss: './assets/sass/base.scss'
50 | },
51 | // 可能会重复打包的插件
52 | vendor: [
53 | 'axios',
54 | 'simplemde',
55 | 'markdown-it',
56 | 'moment',
57 | 'js-base64'
58 | ],
59 | maxChunkSize: 350000,
60 | extractCSS: { allChunks: true },
61 | // Run ESLint on save
62 | extend (config, { isDev, isClient }) {
63 | if (isDev && isClient) {
64 | config.module.rules.push({
65 | enforce: 'pre',
66 | test: /\.(js|vue)$/,
67 | loader: 'eslint-loader',
68 | exclude: /(node_modules)/
69 | })
70 | }
71 | }
72 | }
73 | }
74 |
--------------------------------------------------------------------------------
/layouts/error.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
{{ message }}
9 |
页面不存在
10 |
应用发生错误异常
11 |
首页
12 |
13 |
16 |
17 |
18 |
19 |
20 |
61 |
62 |
108 |
--------------------------------------------------------------------------------
/assets/sass/common.scss:
--------------------------------------------------------------------------------
1 | html{
2 | font-size: 50px;
3 | @media screen and (max-width: 1399px) {
4 | font-size: 45px;
5 | }
6 | }
7 |
8 | body{
9 | font-family: "Helvetica Neue",Helvetica,"Microsoft YaHei",Arial,sans-serif;
10 | font-size: var(16);
11 | color: #333;
12 | background: $bg-body;
13 | }
14 |
15 | .container{
16 | width: var(1050);
17 | margin: auto;
18 | }
19 |
20 | // 过渡
21 | //.fade-enter-active, .fade-leave-active {
22 | // transition: opacity .5s;
23 | //}
24 | //.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
25 | // opacity: 0;
26 | //}
27 |
28 | // 输入框
29 | .el-input{
30 | box-sizing: border-box;
31 | display: inline-block;
32 | width: 100%;
33 | height: 32px;
34 | line-height: 32px;
35 | border: 1px solid #dcdfe6;
36 | border-radius: 4px;
37 | padding: 0 10px;
38 | font-size: 14px;
39 | color: #606266;
40 | background-color: #fff;
41 | outline: none;
42 | transition: .1s;
43 | &:hover{
44 | border-color: #c0c4cc;
45 | }
46 | }
47 |
48 | // 按钮
49 | .el-btn{
50 | box-sizing: border-box;
51 | display: inline-block;
52 | border: 1px solid $bg-navbar;
53 | border-radius: 3px;
54 | padding: 8px 13px;
55 | margin: 0;
56 | font-size: 14px;
57 | color: #fff;
58 | background: $bg-navbar;
59 | line-height: 1;
60 | text-align: center;
61 | transition: .1s;
62 | white-space: nowrap;
63 | -webkit-appearance: none;
64 | outline: none;
65 | cursor: pointer;
66 | &:hover,
67 | &:focus{
68 | opacity: .8;
69 | }
70 | }
71 |
72 | // 侧边栏
73 | .aside-block{
74 | padding: 10px;
75 | background: #fff;
76 | box-shadow: 0 2px 4px 0 rgba(255, 0, 0, 0.05);
77 | .title{
78 | border-bottom: 1px solid $bg-body;
79 | padding-bottom: 10px;
80 | color: #666;
81 | }
82 | }
83 |
84 | // 置顶
85 | .is-top{
86 | position: absolute;
87 | top: 0;
88 | right: 0;
89 | z-index: 1;
90 | font-size: 38px;
91 | color: #ff00008a;
92 | line-height: 1;
93 | }
94 |
95 | // music
96 | .music-dynamic{
97 | padding-right: 2px;
98 | i{
99 | display: inline-block;
100 | vertical-align: middle;
101 | padding: 5px 1px;
102 | margin: 1px;
103 | background: #fff;
104 | transform-origin: 0 100% 0;
105 | &:nth-child(1){
106 | animation: m-dynamic .8s infinite;
107 | }
108 | &:nth-child(2){
109 | animation: m-dynamic 1s infinite;
110 | }
111 | &:nth-child(3){
112 | animation: m-dynamic 1.1s infinite;
113 | }
114 | &:nth-child(4){
115 | animation: m-dynamic 1.3s infinite;
116 | }
117 | }
118 | &.pause i{
119 | animation-play-state: paused;
120 | }
121 | }
122 | @keyframes m-dynamic{
123 | 0%{
124 | transform: scaleX(1.2) scaleY(.3);
125 | }
126 | 50%{
127 | transform: scaleX(1.2) scaleY(1);
128 | }
129 | 100%{
130 | transform: scaleX(1.2) scaleY(.3);
131 | }
132 | }
133 |
--------------------------------------------------------------------------------
/components/slider/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
23 |
24 |
25 |
76 |
77 |
125 |
--------------------------------------------------------------------------------
/components/layout/banner.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
81 |
82 |
94 |
--------------------------------------------------------------------------------
/pages/music/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
0.
5 |
歌曲名
6 |
歌手
7 |
8 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
54 |
55 |
130 |
--------------------------------------------------------------------------------
/components/comment/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
101 |
102 |
120 |
--------------------------------------------------------------------------------
/assets/sass/iconfont.scss:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'iconfont'; /* project id 809185 */
3 | src: url('//at.alicdn.com/t/font_809185_yufqqk26vio.eot');
4 | src: url('//at.alicdn.com/t/font_809185_yufqqk26vio.eot?#iefix') format('embedded-opentype'),
5 | url('//at.alicdn.com/t/font_809185_yufqqk26vio.woff2') format('woff2'),
6 | url('//at.alicdn.com/t/font_809185_yufqqk26vio.woff') format('woff'),
7 | url('//at.alicdn.com/t/font_809185_yufqqk26vio.ttf') format('truetype'),
8 | url('//at.alicdn.com/t/font_809185_yufqqk26vio.svg#iconfont') format('svg');
9 | }
10 |
11 | .iconfont {
12 | font-family:"iconfont" !important;
13 | font-size:1em;
14 | font-style:normal;
15 | -webkit-font-smoothing: antialiased;
16 | -moz-osx-font-smoothing: grayscale;
17 | }
18 |
19 | // article
20 | .icon-date:before { content: "\e60d"; }
21 | .icon-watch:before { content: "\e653"; }
22 | .icon-comment:before { content: "\e605"; }
23 | .icon-like:before { content: "\e622"; }
24 | .icon-classify:before { content: "\e6bd"; }
25 | .icon-enjoy:before { content: "\e609"; }
26 | .icon-enjoy2:before { content: "\e666"; }
27 |
28 | // tags
29 | .icon-tags:before { content: "\e61d"; }
30 | .icon-vue:before { content: "\f25f"; }
31 | .icon-php:before { content: "\f20e"; }
32 | .icon-gulp:before { content: "\f1c9"; }
33 | .icon-bootstrap:before { content: "\e620"; }
34 | .icon-xiaochengxu:before { content: "\e61e"; }
35 | .icon-webpack:before { content: "\e65b"; }
36 | .icon-jquery:before { content: "\e655"; }
37 | .icon-react:before { content: "\e64b"; }
38 | .icon-nginx:before { content: "\e63c"; }
39 | .icon-npm:before { content: "\e610"; }
40 | .icon-books:before { content: "\e613"; }
41 | .icon-music:before { content: "\e674"; }
42 | .icon-emoji:before { content: "\e62a"; }
43 | .icon-html5:before { content: "\e6bb"; }
44 | .icon-chrome:before { content: "\e684"; }
45 | .icon-android:before { content: "\e67c"; }
46 | .icon-angular:before { content: "\e619"; }
47 | .icon-ai:before { content: "\e612"; }
48 | .icon-js:before { content: "\e899"; }
49 | .icon-shejiao:before { content: "\e62d"; }
50 | .icon-sql:before { content: "\e6f5"; }
51 | .icon-anquan:before { content: "\e633"; }
52 | .icon-ios:before { content: "\e676"; }
53 | .icon-egg:before { content: "\e6d8"; }
54 | .icon-others:before { content: "\e62c"; }
55 | .icon-java:before { content: "\e746"; }
56 | .icon-css3:before { content: "\e6b1"; }
57 | .icon-centos:before { content: "\e69a"; }
58 | .icon-nodejs:before { content: "\e989"; }
59 | .icon-git:before { content: "\e897"; }
60 | .icon-note:before { content: "\e603"; }
61 | .icon-sass:before { content: "\e917"; }
62 | .icon-aliyun:before { content: "\e602"; }
63 | .icon-echarts:before { content: "\e604"; }
64 |
65 | // slide
66 | .icon-search:before { content: "\e607"; }
67 | .icon-tuiguang:before { content: "\e601"; }
68 | .icon-tuijian:before { content: "\e623"; }
69 | .icon-top:before { content: "\e600"; }
70 | .icon-ad:before { content: "\e678"; }
71 |
72 | // console
73 | .icon-console:before { content: "\e639"; }
74 | .icon-zoom-out:before { content: "\e750"; }
75 | .icon-zoom-in:before { content: "\e66c"; }
76 | .icon-restore:before { content: "\e606"; }
77 | .icon-close:before { content: "\e60b"; }
78 |
79 | // music
80 | .icon-m-sym:before { content: "\e6b7"; }
81 | .icon-m-play:before { content: "\e645"; }
82 | .icon-m-pause:before { content: "\e608"; }
83 | .icon-m-stop:before { content: "\e61f"; }
84 | .icon-m-prev:before { content: "\e626"; }
85 | .icon-m-next:before { content: "\f260"; }
86 | .icon-m-vol:before { content: "\e621"; }
87 |
--------------------------------------------------------------------------------
/store/modules/music.js:
--------------------------------------------------------------------------------
1 | import { musicList } from "../api/music";
2 |
3 | const _music = {
4 | state: {
5 | list: [],
6 | music: {},
7 | audio: {},
8 | curIndex: 0,
9 | pause: true,
10 | currentTime: 0,
11 | totalTime: 0,
12 | bufferedTime: 0,
13 | noFirst: false
14 | },
15 | mutations: {
16 | SET_MUSIC_LIST: (state, list) => {
17 | let i = list.length;
18 | while (i) {
19 | let j = Math.floor(Math.random() * i--);
20 | [list[j], list[i]] = [list[i], list[j]];
21 | }
22 | state.list = list
23 | },
24 | SET_MUSIC: (state) => {
25 | state.music = state.list[state.curIndex]
26 | },
27 | MUSIC_INIT: (state) => {
28 | if (state.audio.src) {
29 | return
30 | }
31 | state.audio = new Audio()
32 | state.audio.src = state.music.url
33 |
34 | // 只加载元数据
35 | state.audio.preload = 'metadata'
36 | state.audio.autoplay = 'autoplay'
37 | state.audio.volume = .8
38 |
39 | // 元数据加载后触发
40 | state.audio.onloadedmetadata = _ => {
41 | state.totalTime = state.audio.duration.toFixed(3) * 1000
42 | state.noFirst && state.audio.play()
43 | }
44 |
45 | // 开始播放时触发
46 | state.audio.onplay = _ => {
47 | state.pause = false
48 | }
49 |
50 | // 暂停时触发
51 | state.audio.onpause = _ => {
52 | state.pause = true
53 | }
54 |
55 | // 播放位置改变时触发
56 | state.audio.ontimeupdate = _ => {
57 | state.currentTime = state.audio.currentTime.toFixed(3) * 1000
58 | if (state.audio.readyState === 4) {
59 | state.bufferedTime = state.audio.buffered.end(0).toFixed(3) * 1000
60 | }
61 | }
62 |
63 | // 结尾时触发
64 | state.audio.onended = _ => {
65 | state.noFirst = true
66 | state.pause = true
67 |
68 | if (state.curIndex === state.list.length - 1) {
69 | state.curIndex = -1
70 | }
71 | state.audio.src = state.list[++state.curIndex].url
72 |
73 | state.music = state.list[state.curIndex]
74 | }
75 |
76 | // 数据加载期间发生错误
77 | state.audio.onerror = _ => {
78 | state.totalTime = 0
79 | console.warn('数据加载错误 😔')
80 | }
81 | },
82 | MUSIC_PLAY_OR_PAUSE: (state) => {
83 | if (state.pause) {
84 | state.audio.play()
85 | } else {
86 | state.audio.pause()
87 | }
88 | },
89 | MUSIC_PLAY_PREV: (state) => {
90 | state.noFirst = true
91 | state.pause = true
92 |
93 | if (state.curIndex === 0) {
94 | state.curIndex = state.list.length
95 | }
96 | state.audio.src = state.list[--state.curIndex].url
97 |
98 | state.music = state.list[state.curIndex]
99 | },
100 | MUSIC_PLAY_NEXT: (state) => {
101 | state.noFirst = true
102 | state.pause = true
103 |
104 | if (state.curIndex === state.list.length - 1) {
105 | state.curIndex = -1
106 | }
107 | state.audio.src = state.list[++state.curIndex].url
108 |
109 | state.music = state.list[state.curIndex]
110 | }
111 | },
112 | actions: {
113 | // 列表
114 | async MusicList({ commit }) {
115 | const result = await musicList()
116 | if (result.data.code === 1){
117 | const res = result.data.result
118 | commit('SET_MUSIC_LIST', res.list)
119 | commit('SET_MUSIC')
120 | }
121 | },
122 | // 初始化
123 | MusicInit({ commit }) {
124 | commit('MUSIC_INIT')
125 | },
126 | // 播放或暂停
127 | MusicPlayOrPause({ commit }) {
128 | commit('MUSIC_PLAY_OR_PAUSE')
129 | },
130 | // 上一首
131 | MusicPlayPrev({ commit }) {
132 | commit('MUSIC_PLAY_PREV')
133 | },
134 | // 下一首
135 | MusicPlayNext({ commit }) {
136 | commit('MUSIC_PLAY_NEXT')
137 | }
138 | }
139 | }
140 |
141 | export default _music
142 |
--------------------------------------------------------------------------------
/components/music/aside.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
![]()
5 |
6 |
7 |
8 | -
12 | {{item.value}}
13 |
14 |
15 |
16 |
17 |
18 |
19 |
82 |
83 |
147 |
--------------------------------------------------------------------------------
/store/modules/article.js:
--------------------------------------------------------------------------------
1 | import { articleList, articleDetail, articleLike } from '../api/article'
2 |
3 | const article = {
4 | state: {
5 | list: [],
6 | bestList: [],
7 | historyLikes: [],
8 | pageCount: 1,
9 | currencyPage: 1,
10 | where: '',
11 | detail: {}
12 | },
13 | mutations: {
14 | SET_ARTICLE_LIST: (state, list) => {
15 | state.list = list
16 | },
17 | SET_ARTICLE_PAGE: (state, {currencyPage, pageCount}) => {
18 | state.currencyPage = currencyPage
19 | state.pageCount = pageCount
20 | },
21 | SET_ARTICLE_WHERE: (state, where) => {
22 | state.where = where
23 | },
24 | SET_ARTICLE_BEST_LIST: (state, list) => {
25 | state.bestList = list
26 | },
27 | SET_ARTICLE_DETAIL: (state, detail) => {
28 | detail.liked = false
29 | state.detail = detail
30 | },
31 | SET_HISTORY_LIKES: (state, ids) => {
32 | state.historyLikes = ids
33 | },
34 | ARTICLE_LIKE: (state, val) => {
35 | state.detail.liked = true
36 | state.detail.likeCount += val
37 | },
38 | ARTICLE_COMMENT: (state, val) => {
39 | state.detail.commentCount += val
40 | }
41 | },
42 | actions: {
43 | // 列表
44 | async ArticleList({ commit }, params) {
45 | const result = await articleList(params)
46 | if (result.data.code === 1){
47 | const res = result.data.result
48 | commit('SET_ARTICLE_LIST', res.list)
49 | commit('SET_ARTICLE_PAGE', { currencyPage: params ? +params.page : 1, pageCount: res.pageCount })
50 | }
51 | },
52 | // 列表(搜索)
53 | async SearchArticleList({ state, commit }, params) {
54 | const result = await articleList(params)
55 | if (result.data.code === 1){
56 | const res = result.data.result
57 | commit('SET_ARTICLE_LIST', res.list)
58 | commit('SET_ARTICLE_WHERE', `search/${params.keyword}`)
59 | commit('SET_ARTICLE_PAGE', { currencyPage: params ? +params.page : 1, pageCount: res.pageCount })
60 | }
61 | },
62 | // 列表(标签)
63 | async TagArticleList({ state, commit, rootState }, params) {
64 | const tag_id = rootState.tag.map[params.alias]
65 | const result = await articleList({ tag_id, page: params.page })
66 | if (result.data.code === 1){
67 | const res = result.data.result
68 | commit('SET_ARTICLE_LIST', res.list)
69 | commit('SET_ARTICLE_WHERE', `tag/${params.alias}`)
70 | commit('SET_ARTICLE_PAGE', { currencyPage: params ? +params.page : 1, pageCount: res.pageCount })
71 | }
72 | },
73 | // 列表(分类)
74 | async CategoryArticleList({ state, commit, rootState }, params) {
75 | const category_id = rootState.category.map[params.alias]
76 | const result = await articleList({ category_id, page: params.page })
77 | if (result.data.code === 1){
78 | const res = result.data.result
79 | commit('SET_ARTICLE_LIST', res.list)
80 | commit('SET_ARTICLE_WHERE', `category/${params.alias}`)
81 | commit('SET_ARTICLE_PAGE', { currencyPage: params ? +params.page : 1, pageCount: res.pageCount })
82 | }
83 | },
84 | // 推荐列表
85 | async ArticleBestList({ commit }) {
86 | const result = await articleList({ is_best: true })
87 | if (result.data.code === 1){
88 | const res = result.data.result
89 | commit('SET_ARTICLE_BEST_LIST', res.list)
90 | }
91 | },
92 | // 详情
93 | async ArticleDetail({ commit }, params) {
94 | const result = await articleDetail(params.id)
95 | if (result.data.code === 1){
96 | const res = result.data.result
97 | commit('SET_ARTICLE_DETAIL', res)
98 | }
99 |
100 | return result
101 | },
102 | // 清除详情
103 | async ClearArticleDetail({ commit }) {
104 | commit('SET_ARTICLE_DETAIL', {})
105 | },
106 | // 点赞历史记录
107 | async HistoryLikes({ commit, state }) {
108 | const historyLikes = localStorage.getItem('history_like_article')
109 | if (historyLikes) {
110 | commit('SET_HISTORY_LIKES', historyLikes)
111 | if (historyLikes.includes(state.detail.id)){
112 | commit('ARTICLE_LIKE', 0)
113 | }
114 | }
115 | },
116 | // 点赞
117 | async ArticleLike({ commit, state }) {
118 | if (state.detail.liked) {
119 | return
120 | }
121 | const result = await articleLike({id: state.detail.id})
122 | if (result.data.code === 1){
123 | commit('ARTICLE_LIKE', 1)
124 | localStorage.setItem('history_like_article', [state.historyLikes, state.detail.id])
125 | }
126 | },
127 | }
128 | }
129 |
130 | export default article
131 |
--------------------------------------------------------------------------------
/components/music/footer.vue:
--------------------------------------------------------------------------------
1 |
2 |
26 |
27 |
28 |
57 |
58 |
154 |
--------------------------------------------------------------------------------
/components/article/item.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
10 | {{pinyinTwo}}
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | {{article.publishDate | ago}}
25 | {{article.visitCount}}
26 | {{article.commentCount}}
27 | {{article.likeCount}}
28 | {{article.categoryNames}}
29 |
30 |
31 |
32 |
33 |
34 |
35 |
81 |
82 |
97 |
174 |
--------------------------------------------------------------------------------
/components/console/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 | C:\WINDOWS\system32\cmd.exe
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | > {{history}}
19 |
20 |
26 |
27 |
28 |
29 |
30 |
109 |
110 |
201 |
--------------------------------------------------------------------------------
/pages/article/_id.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
{{article.title}}
8 |
9 | {{article.publishDate | ago}}
10 | {{article.visitCount}}
11 |
12 |
13 |
14 | ,
15 | {{item.title}}
19 |
20 |
21 |
22 |
23 |
24 | ,
25 | {{item.title}}
29 |
30 |
31 |
32 |
33 |
34 |
{{article.description}}
35 |
36 |
37 |
38 |
评论 ({{article.commentCount}})
39 |
42 | {{article.liked ? '已赞' : '赞'}} ({{article.likeCount}})
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
116 |
117 |
258 |
--------------------------------------------------------------------------------
/pages/game/gobang.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
266 |
267 |
277 |
--------------------------------------------------------------------------------
/static/sitemap.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | https://unnue.com/
5 | 2019-12-16
6 | monthly
7 | 0.9
8 |
9 |
10 | https://unnue.com/category/note
11 | 2019-12-16
12 | monthly
13 | 0.8
14 |
15 |
16 | https://unnue.com/category/collect
17 | 2019-12-16
18 | monthly
19 | 0.8
20 |
21 |
22 | https://unnue.com/category/other
23 | 2019-12-16
24 | monthly
25 | 0.8
26 |
27 |
28 | https://unnue.com/category/qa
29 | 2019-12-16
30 | monthly
31 | 0.8
32 |
33 |
34 | https://unnue.com/game/gobang
35 | 2019-12-16
36 | monthly
37 | 0.8
38 |
39 |
40 | https://unnue.com/guestbook
41 | 2019-12-16
42 | monthly
43 | 0.8
44 |
45 |
46 | https://unnue.com/music
47 | 2019-12-16
48 | monthly
49 | 0.8
50 |
51 |
52 | https://unnue.com/profile
53 | 2019-12-16
54 | monthly
55 | 0.8
56 |
57 |
58 | https://unnue.com/links
59 | 2019-12-16
60 | monthly
61 | 0.8
62 |
63 |
64 | https://unnue.com/article/82
65 | 2019-12-16
66 | monthly
67 | 0.8
68 |
69 |
70 | https://unnue.com/article/78
71 | 2019-12-16
72 | monthly
73 | 0.8
74 |
75 |
76 | https://unnue.com/article/9
77 | 2019-12-16
78 | monthly
79 | 0.8
80 |
81 |
82 | https://unnue.com/article/1
83 | 2019-12-16
84 | monthly
85 | 0.8
86 |
87 |
88 | https://unnue.com/article/228
89 | 2019-12-16
90 | monthly
91 | 0.8
92 |
93 |
94 | https://unnue.com/article/227
95 | 2019-12-16
96 | monthly
97 | 0.8
98 |
99 |
100 | https://unnue.com/article/226
101 | 2019-12-16
102 | monthly
103 | 0.8
104 |
105 |
106 | https://unnue.com/article/225
107 | 2019-12-16
108 | monthly
109 | 0.8
110 |
111 |
112 | https://unnue.com/article/224
113 | 2019-12-16
114 | monthly
115 | 0.8
116 |
117 |
118 | https://unnue.com/article/223
119 | 2019-12-16
120 | monthly
121 | 0.8
122 |
123 |
124 | https://unnue.com/article/list/2
125 | 2019-12-16
126 | monthly
127 | 0.8
128 |
129 |
130 | https://unnue.com/article/list/3
131 | 2019-12-16
132 | monthly
133 | 0.8
134 |
135 |
136 | https://unnue.com/article/list/4
137 | 2019-12-16
138 | monthly
139 | 0.8
140 |
141 |
142 | https://unnue.com/article/list/5
143 | 2019-12-16
144 | monthly
145 | 0.8
146 |
147 |
148 | https://unnue.com/article/list/6
149 | 2019-12-16
150 | monthly
151 | 0.8
152 |
153 |
154 | https://unnue.com/article/list/7
155 | 2019-12-16
156 | monthly
157 | 0.8
158 |
159 |
160 | https://unnue.com/article/list/8
161 | 2019-12-16
162 | monthly
163 | 0.8
164 |
165 |
166 | https://unnue.com/article/list/9
167 | 2019-12-16
168 | monthly
169 | 0.8
170 |
171 |
172 | https://unnue.com/article/list/10
173 | 2019-12-16
174 | monthly
175 | 0.8
176 |
177 |
178 | https://unnue.com/article/list/11
179 | 2019-12-16
180 | monthly
181 | 0.8
182 |
183 |
184 | https://unnue.com/article/list/12
185 | 2019-12-16
186 | monthly
187 | 0.8
188 |
189 |
190 | https://unnue.com/article/list/13
191 | 2019-12-16
192 | monthly
193 | 0.8
194 |
195 |
196 | https://unnue.com/article/list/14
197 | 2019-12-16
198 | monthly
199 | 0.8
200 |
201 |
202 | https://unnue.com/article/list/15
203 | 2019-12-16
204 | monthly
205 | 0.8
206 |
207 |
208 | https://unnue.com/article/4
209 | 2019-12-16
210 | monthly
211 | 0.8
212 |
213 |
214 | https://unnue.com/article/46
215 | 2019-12-16
216 | monthly
217 | 0.8
218 |
219 |
220 | https://unnue.com/article/30
221 | 2019-12-16
222 | monthly
223 | 0.8
224 |
225 |
226 | https://unnue.com/article/27
227 | 2019-12-16
228 | monthly
229 | 0.8
230 |
231 |
232 | https://unnue.com/article/50
233 | 2019-12-16
234 | monthly
235 | 0.8
236 |
237 |
238 | https://unnue.com/article/51
239 | 2019-12-16
240 | monthly
241 | 0.8
242 |
243 |
244 | https://unnue.com/article/83
245 | 2019-12-16
246 | monthly
247 | 0.8
248 |
249 |
250 | https://unnue.com/tag/git
251 | 2019-12-16
252 | monthly
253 | 0.8
254 |
255 |
256 | https://unnue.com/tag/other
257 | 2019-12-16
258 | monthly
259 | 0.8
260 |
261 |
262 | https://unnue.com/tag/centos
263 | 2019-12-16
264 | monthly
265 | 0.8
266 |
267 |
268 | https://unnue.com/tag/emoji
269 | 2019-12-16
270 | monthly
271 | 0.8
272 |
273 |
274 | https://unnue.com/tag/mysql
275 | 2019-12-16
276 | monthly
277 | 0.8
278 |
279 |
280 | https://unnue.com/tag/npm
281 | 2019-12-16
282 | monthly
283 | 0.8
284 |
285 |
286 | https://unnue.com/tag/nodejs
287 | 2019-12-16
288 | monthly
289 | 0.8
290 |
291 |
292 | https://unnue.com/tag/nginx
293 | 2019-12-16
294 | monthly
295 | 0.8
296 |
297 |
298 | https://unnue.com/tag/mp
299 | 2019-12-16
300 | monthly
301 | 0.8
302 |
303 |
304 | https://unnue.com/tag/echarts
305 | 2019-12-16
306 | monthly
307 | 0.8
308 |
309 |
310 | https://unnue.com/tag/java
311 | 2019-12-16
312 | monthly
313 | 0.8
314 |
315 |
316 | https://unnue.com/tag/css
317 | 2019-12-16
318 | monthly
319 | 0.8
320 |
321 |
322 | https://unnue.com/tag/angular
323 | 2019-12-16
324 | monthly
325 | 0.8
326 |
327 |
328 | https://unnue.com/tag/javascript
329 | 2019-12-16
330 | monthly
331 | 0.8
332 |
333 |
334 | https://unnue.com/tag/vue
335 | 2019-12-16
336 | monthly
337 | 0.8
338 |
339 |
340 | https://unnue.com/tag/macos
341 | 2019-12-16
342 | monthly
343 | 0.8
344 |
345 |
346 | https://unnue.com/tag/blockchain
347 | 2019-12-16
348 | monthly
349 | 0.8
350 |
351 |
352 | https://unnue.com/article/61
353 | 2019-12-16
354 | monthly
355 | 0.8
356 |
357 |
358 | https://unnue.com/article/60
359 | 2019-12-16
360 | monthly
361 | 0.8
362 |
363 |
364 | https://unnue.com/article/59
365 | 2019-12-16
366 | monthly
367 | 0.8
368 |
369 |
370 | https://unnue.com/article/58
371 | 2019-12-16
372 | monthly
373 | 0.8
374 |
375 |
376 | https://unnue.com/article/57
377 | 2019-12-16
378 | monthly
379 | 0.8
380 |
381 |
382 | https://unnue.com/article/56
383 | 2019-12-16
384 | monthly
385 | 0.8
386 |
387 |
388 | https://unnue.com/article/55
389 | 2019-12-16
390 | monthly
391 | 0.8
392 |
393 |
394 | https://unnue.com/article/54
395 | 2019-12-16
396 | monthly
397 | 0.8
398 |
399 |
400 | https://unnue.com/article/53
401 | 2019-12-16
402 | monthly
403 | 0.8
404 |
405 |
406 | https://unnue.com/article/52
407 | 2019-12-16
408 | monthly
409 | 0.8
410 |
411 |
412 | https://unnue.com/article/list/1
413 | 2019-12-16
414 | monthly
415 | 0.8
416 |
417 |
418 | https://unnue.com/article/183
419 | 2019-12-16
420 | monthly
421 | 0.8
422 |
423 |
424 | https://unnue.com/article/94
425 | 2019-12-16
426 | monthly
427 | 0.8
428 |
429 |
430 | https://unnue.com/article/93
431 | 2019-12-16
432 | monthly
433 | 0.8
434 |
435 |
436 | https://unnue.com/article/92
437 | 2019-12-16
438 | monthly
439 | 0.8
440 |
441 |
442 | https://unnue.com/article/91
443 | 2019-12-16
444 | monthly
445 | 0.8
446 |
447 |
448 | https://unnue.com/article/89
449 | 2019-12-16
450 | monthly
451 | 0.8
452 |
453 |
454 | https://unnue.com/article/88
455 | 2019-12-16
456 | monthly
457 | 0.8
458 |
459 |
460 | https://unnue.com/category/note/2
461 | 2019-12-16
462 | monthly
463 | 0.8
464 |
465 |
466 | https://unnue.com/category/note/3
467 | 2019-12-16
468 | monthly
469 | 0.8
470 |
471 |
472 | https://unnue.com/category/note/4
473 | 2019-12-16
474 | monthly
475 | 0.8
476 |
477 |
478 | https://unnue.com/category/note/5
479 | 2019-12-16
480 | monthly
481 | 0.8
482 |
483 |
484 | https://unnue.com/category/note/6
485 | 2019-12-16
486 | monthly
487 | 0.8
488 |
489 |
490 | https://unnue.com/category/note/7
491 | 2019-12-16
492 | monthly
493 | 0.8
494 |
495 |
496 | https://unnue.com/article/90
497 | 2019-12-16
498 | monthly
499 | 0.8
500 |
501 |
502 | https://unnue.com/article/81
503 | 2019-12-16
504 | monthly
505 | 0.8
506 |
507 |
508 | https://unnue.com/article/69
509 | 2019-12-16
510 | monthly
511 | 0.8
512 |
513 |
514 | https://unnue.com/article/66
515 | 2019-12-16
516 | monthly
517 | 0.8
518 |
519 |
520 | https://unnue.com/article/64
521 | 2019-12-16
522 | monthly
523 | 0.8
524 |
525 |
526 | https://unnue.com/category/collect/2
527 | 2019-12-16
528 | monthly
529 | 0.8
530 |
531 |
532 | https://unnue.com/category/collect/3
533 | 2019-12-16
534 | monthly
535 | 0.8
536 |
537 |
538 | https://unnue.com/article/222
539 | 2019-12-16
540 | monthly
541 | 0.8
542 |
543 |
544 | https://unnue.com/article/221
545 | 2019-12-16
546 | monthly
547 | 0.8
548 |
549 |
550 | https://unnue.com/article/220
551 | 2019-12-16
552 | monthly
553 | 0.8
554 |
555 |
556 | https://unnue.com/article/219
557 | 2019-12-16
558 | monthly
559 | 0.8
560 |
561 |
562 | https://unnue.com/category/qa/2
563 | 2019-12-16
564 | monthly
565 | 0.8
566 |
567 |
568 | https://unnue.com/category/qa/3
569 | 2019-12-16
570 | monthly
571 | 0.8
572 |
573 |
574 | https://unnue.com/category/qa/4
575 | 2019-12-16
576 | monthly
577 | 0.8
578 |
579 |
580 | https://unnue.com/category/qa/5
581 | 2019-12-16
582 | monthly
583 | 0.8
584 |
585 |
586 | https://unnue.com/category/qa/6
587 | 2019-12-16
588 | monthly
589 | 0.8
590 |
591 |
592 | https://unnue.com/article/40
593 | 2019-12-16
594 | monthly
595 | 0.8
596 |
597 |
598 | https://unnue.com/article/38
599 | 2019-12-16
600 | monthly
601 | 0.8
602 |
603 |
604 | https://unnue.com/article/37
605 | 2019-12-16
606 | monthly
607 | 0.8
608 |
609 |
610 | https://unnue.com/article/36
611 | 2019-12-16
612 | monthly
613 | 0.8
614 |
615 |
616 | https://unnue.com/article/29
617 | 2019-12-16
618 | monthly
619 | 0.8
620 |
621 |
622 | https://unnue.com/article/44
623 | 2019-12-16
624 | monthly
625 | 0.8
626 |
627 |
628 | https://unnue.com/article/43
629 | 2019-12-16
630 | monthly
631 | 0.8
632 |
633 |
634 | https://unnue.com/article/25
635 | 2019-12-16
636 | monthly
637 | 0.8
638 |
639 |
640 | https://unnue.com/article/22
641 | 2019-12-16
642 | monthly
643 | 0.8
644 |
645 |
646 | https://unnue.com/article/19
647 | 2019-12-16
648 | monthly
649 | 0.8
650 |
651 |
652 | https://unnue.com/article/34
653 | 2019-12-16
654 | monthly
655 | 0.8
656 |
657 |
658 | https://unnue.com/article/12
659 | 2019-12-16
660 | monthly
661 | 0.8
662 |
663 |
664 | https://unnue.com/article/80
665 | 2019-12-16
666 | monthly
667 | 0.8
668 |
669 |
670 | https://unnue.com/article/20
671 | 2019-12-16
672 | monthly
673 | 0.8
674 |
675 |
676 | https://unnue.com/article/6
677 | 2019-12-16
678 | monthly
679 | 0.8
680 |
681 |
682 | https://unnue.com/article/3
683 | 2019-12-16
684 | monthly
685 | 0.8
686 |
687 |
688 | https://unnue.com/article/65
689 | 2019-12-16
690 | monthly
691 | 0.8
692 |
693 |
694 | https://unnue.com/article/15
695 | 2019-12-16
696 | monthly
697 | 0.8
698 |
699 |
700 | https://unnue.com/article/14
701 | 2019-12-16
702 | monthly
703 | 0.8
704 |
705 |
706 | https://unnue.com/article/70
707 | 2019-12-16
708 | monthly
709 | 0.8
710 |
711 |
712 | https://unnue.com/article/5
713 | 2019-12-16
714 | monthly
715 | 0.8
716 |
717 |
718 | https://unnue.com/article/73
719 | 2019-12-16
720 | monthly
721 | 0.8
722 |
723 |
724 | https://unnue.com/article/71
725 | 2019-12-16
726 | monthly
727 | 0.8
728 |
729 |
730 | https://unnue.com/article/13
731 | 2019-12-16
732 | monthly
733 | 0.8
734 |
735 |
736 | https://unnue.com/article/163
737 | 2019-12-16
738 | monthly
739 | 0.8
740 |
741 |
742 | https://unnue.com/article/87
743 | 2019-12-16
744 | monthly
745 | 0.8
746 |
747 |
748 | https://unnue.com/article/86
749 | 2019-12-16
750 | monthly
751 | 0.8
752 |
753 |
754 | https://unnue.com/article/85
755 | 2019-12-16
756 | monthly
757 | 0.8
758 |
759 |
760 | https://unnue.com/article/84
761 | 2019-12-16
762 | monthly
763 | 0.8
764 |
765 |
766 | https://unnue.com/article/79
767 | 2019-12-16
768 | monthly
769 | 0.8
770 |
771 |
772 | https://unnue.com/article/77
773 | 2019-12-16
774 | monthly
775 | 0.8
776 |
777 |
778 | https://unnue.com/article/76
779 | 2019-12-16
780 | monthly
781 | 0.8
782 |
783 |
784 | https://unnue.com/article/75
785 | 2019-12-16
786 | monthly
787 | 0.8
788 |
789 |
790 | https://unnue.com/article/74
791 | 2019-12-16
792 | monthly
793 | 0.8
794 |
795 |
796 | https://unnue.com/article/204
797 | 2019-12-16
798 | monthly
799 | 0.8
800 |
801 |
802 | https://unnue.com/article/203
803 | 2019-12-16
804 | monthly
805 | 0.8
806 |
807 |
808 | https://unnue.com/article/202
809 | 2019-12-16
810 | monthly
811 | 0.8
812 |
813 |
814 | https://unnue.com/article/201
815 | 2019-12-16
816 | monthly
817 | 0.8
818 |
819 |
820 | https://unnue.com/article/200
821 | 2019-12-16
822 | monthly
823 | 0.8
824 |
825 |
826 | https://unnue.com/article/199
827 | 2019-12-16
828 | monthly
829 | 0.8
830 |
831 |
832 | https://unnue.com/article/198
833 | 2019-12-16
834 | monthly
835 | 0.8
836 |
837 |
838 | https://unnue.com/article/197
839 | 2019-12-16
840 | monthly
841 | 0.8
842 |
843 |
844 | https://unnue.com/tag/nodejs/2
845 | 2019-12-16
846 | monthly
847 | 0.8
848 |
849 |
850 | https://unnue.com/tag/nodejs/3
851 | 2019-12-16
852 | monthly
853 | 0.8
854 |
855 |
856 | https://unnue.com/article/33
857 | 2019-12-16
858 | monthly
859 | 0.8
860 |
861 |
862 | https://unnue.com/tag/other/2
863 | 2019-12-16
864 | monthly
865 | 0.8
866 |
867 |
868 | https://unnue.com/article/191
869 | 2019-12-16
870 | monthly
871 | 0.8
872 |
873 |
874 | https://unnue.com/article/190
875 | 2019-12-16
876 | monthly
877 | 0.8
878 |
879 |
880 | https://unnue.com/article/189
881 | 2019-12-16
882 | monthly
883 | 0.8
884 |
885 |
886 | https://unnue.com/article/188
887 | 2019-12-16
888 | monthly
889 | 0.8
890 |
891 |
892 | https://unnue.com/article/187
893 | 2019-12-16
894 | monthly
895 | 0.8
896 |
897 |
898 | https://unnue.com/article/186
899 | 2019-12-16
900 | monthly
901 | 0.8
902 |
903 |
904 | https://unnue.com/article/185
905 | 2019-12-16
906 | monthly
907 | 0.8
908 |
909 |
910 | https://unnue.com/article/184
911 | 2019-12-16
912 | monthly
913 | 0.8
914 |
915 |
916 | https://unnue.com/article/182
917 | 2019-12-16
918 | monthly
919 | 0.8
920 |
921 |
922 | https://unnue.com/article/218
923 | 2019-12-16
924 | monthly
925 | 0.8
926 |
927 |
928 | https://unnue.com/article/217
929 | 2019-12-16
930 | monthly
931 | 0.8
932 |
933 |
934 | https://unnue.com/article/216
935 | 2019-12-16
936 | monthly
937 | 0.8
938 |
939 |
940 | https://unnue.com/article/215
941 | 2019-12-16
942 | monthly
943 | 0.8
944 |
945 |
946 | https://unnue.com/article/214
947 | 2019-12-16
948 | monthly
949 | 0.8
950 |
951 |
952 | https://unnue.com/article/212
953 | 2019-12-16
954 | monthly
955 | 0.8
956 |
957 |
958 | https://unnue.com/article/72
959 | 2019-12-16
960 | monthly
961 | 0.8
962 |
963 |
964 | https://unnue.com/article/68
965 | 2019-12-16
966 | monthly
967 | 0.8
968 |
969 |
970 | https://unnue.com/article/67
971 | 2019-12-16
972 | monthly
973 | 0.8
974 |
975 |
976 | https://unnue.com/article/211
977 | 2019-12-16
978 | monthly
979 | 0.8
980 |
981 |
982 | https://unnue.com/article/210
983 | 2019-12-16
984 | monthly
985 | 0.8
986 |
987 |
988 | https://unnue.com/article/209
989 | 2019-12-16
990 | monthly
991 | 0.8
992 |
993 |
994 | https://unnue.com/article/208
995 | 2019-12-16
996 | monthly
997 | 0.8
998 |
999 |
1000 | https://unnue.com/article/207
1001 | 2019-12-16
1002 | monthly
1003 | 0.8
1004 |
1005 |
1006 | https://unnue.com/article/206
1007 | 2019-12-16
1008 | monthly
1009 | 0.8
1010 |
1011 |
1012 | https://unnue.com/article/205
1013 | 2019-12-16
1014 | monthly
1015 | 0.8
1016 |
1017 |
1018 | https://unnue.com/tag/echarts/2
1019 | 2019-12-16
1020 | monthly
1021 | 0.8
1022 |
1023 |
1024 | https://unnue.com/category/note/1
1025 | 2019-12-16
1026 | monthly
1027 | 0.8
1028 |
1029 |
1030 | https://unnue.com/article/42
1031 | 2019-12-16
1032 | monthly
1033 | 0.8
1034 |
1035 |
1036 | https://unnue.com/article/35
1037 | 2019-12-16
1038 | monthly
1039 | 0.8
1040 |
1041 |
1042 | https://unnue.com/category/collect/1
1043 | 2019-12-16
1044 | monthly
1045 | 0.8
1046 |
1047 |
1048 | https://unnue.com/article/181
1049 | 2019-12-16
1050 | monthly
1051 | 0.8
1052 |
1053 |
1054 | https://unnue.com/article/180
1055 | 2019-12-16
1056 | monthly
1057 | 0.8
1058 |
1059 |
1060 | https://unnue.com/article/179
1061 | 2019-12-16
1062 | monthly
1063 | 0.8
1064 |
1065 |
1066 | https://unnue.com/article/178
1067 | 2019-12-16
1068 | monthly
1069 | 0.8
1070 |
1071 |
1072 | https://unnue.com/article/177
1073 | 2019-12-16
1074 | monthly
1075 | 0.8
1076 |
1077 |
1078 | https://unnue.com/article/176
1079 | 2019-12-16
1080 | monthly
1081 | 0.8
1082 |
1083 |
1084 | https://unnue.com/article/175
1085 | 2019-12-16
1086 | monthly
1087 | 0.8
1088 |
1089 |
1090 | https://unnue.com/article/174
1091 | 2019-12-16
1092 | monthly
1093 | 0.8
1094 |
1095 |
1096 | https://unnue.com/article/173
1097 | 2019-12-16
1098 | monthly
1099 | 0.8
1100 |
1101 |
1102 | https://unnue.com/tag/javascript/2
1103 | 2019-12-16
1104 | monthly
1105 | 0.8
1106 |
1107 |
1108 | https://unnue.com/tag/javascript/3
1109 | 2019-12-16
1110 | monthly
1111 | 0.8
1112 |
1113 |
1114 | https://unnue.com/tag/javascript/4
1115 | 2019-12-16
1116 | monthly
1117 | 0.8
1118 |
1119 |
1120 | https://unnue.com/article/31
1121 | 2019-12-16
1122 | monthly
1123 | 0.8
1124 |
1125 |
1126 | https://unnue.com/article/28
1127 | 2019-12-16
1128 | monthly
1129 | 0.8
1130 |
1131 |
1132 | https://unnue.com/article/26
1133 | 2019-12-16
1134 | monthly
1135 | 0.8
1136 |
1137 |
1138 | https://unnue.com/article/24
1139 | 2019-12-16
1140 | monthly
1141 | 0.8
1142 |
1143 |
1144 | https://unnue.com/article/23
1145 | 2019-12-16
1146 | monthly
1147 | 0.8
1148 |
1149 |
1150 | https://unnue.com/article/21
1151 | 2019-12-16
1152 | monthly
1153 | 0.8
1154 |
1155 |
1156 | https://unnue.com/article/18
1157 | 2019-12-16
1158 | monthly
1159 | 0.8
1160 |
1161 |
1162 | https://unnue.com/article/17
1163 | 2019-12-16
1164 | monthly
1165 | 0.8
1166 |
1167 |
1168 | https://unnue.com/article/16
1169 | 2019-12-16
1170 | monthly
1171 | 0.8
1172 |
1173 |
1174 | https://unnue.com/category/qa/1
1175 | 2019-12-16
1176 | monthly
1177 | 0.8
1178 |
1179 |
1180 | https://unnue.com/tag/nodejs/1
1181 | 2019-12-16
1182 | monthly
1183 | 0.8
1184 |
1185 |
1186 | https://unnue.com/article/196
1187 | 2019-12-16
1188 | monthly
1189 | 0.8
1190 |
1191 |
1192 | https://unnue.com/article/195
1193 | 2019-12-16
1194 | monthly
1195 | 0.8
1196 |
1197 |
1198 | https://unnue.com/article/194
1199 | 2019-12-16
1200 | monthly
1201 | 0.8
1202 |
1203 |
1204 | https://unnue.com/article/193
1205 | 2019-12-16
1206 | monthly
1207 | 0.8
1208 |
1209 |
1210 | https://unnue.com/article/192
1211 | 2019-12-16
1212 | monthly
1213 | 0.8
1214 |
1215 |
1216 | https://unnue.com/tag/blockchain/2
1217 | 2019-12-16
1218 | monthly
1219 | 0.8
1220 |
1221 |
1222 | https://unnue.com/article/41
1223 | 2019-12-16
1224 | monthly
1225 | 0.8
1226 |
1227 |
1228 | https://unnue.com/article/11
1229 | 2019-12-16
1230 | monthly
1231 | 0.8
1232 |
1233 |
1234 | https://unnue.com/tag/echarts/1
1235 | 2019-12-16
1236 | monthly
1237 | 0.8
1238 |
1239 |
1240 | https://unnue.com/article/164
1241 | 2019-12-16
1242 | monthly
1243 | 0.8
1244 |
1245 |
1246 | https://unnue.com/article/2
1247 | 2019-12-16
1248 | monthly
1249 | 0.8
1250 |
1251 |
1252 | https://unnue.com/tag/other/1
1253 | 2019-12-16
1254 | monthly
1255 | 0.8
1256 |
1257 |
1258 | https://unnue.com/article/48
1259 | 2019-12-16
1260 | monthly
1261 | 0.8
1262 |
1263 |
1264 | https://unnue.com/article/47
1265 | 2019-12-16
1266 | monthly
1267 | 0.8
1268 |
1269 |
1270 | https://unnue.com/article/7
1271 | 2019-12-16
1272 | monthly
1273 | 0.8
1274 |
1275 |
1276 | https://unnue.com/article/32
1277 | 2019-12-16
1278 | monthly
1279 | 0.8
1280 |
1281 |
1282 | https://unnue.com/tag/javascript/1
1283 | 2019-12-16
1284 | monthly
1285 | 0.8
1286 |
1287 |
1288 | https://unnue.com/article/49
1289 | 2019-12-16
1290 | monthly
1291 | 0.8
1292 |
1293 |
1294 | https://unnue.com/tag/mp/2
1295 | 2019-12-16
1296 | monthly
1297 | 0.8
1298 |
1299 |
1300 | https://unnue.com/tag/mp/3
1301 | 2019-12-16
1302 | monthly
1303 | 0.8
1304 |
1305 |
1306 | https://unnue.com/tag/mp/4
1307 | 2019-12-16
1308 | monthly
1309 | 0.8
1310 |
1311 |
1312 | https://unnue.com/tag/mp/1
1313 | 2019-12-16
1314 | monthly
1315 | 0.8
1316 |
1317 |
1318 | https://unnue.com/article/45
1319 | 2019-12-16
1320 | monthly
1321 | 0.8
1322 |
1323 |
1324 | https://unnue.com/article/39
1325 | 2019-12-16
1326 | monthly
1327 | 0.8
1328 |
1329 |
1330 | https://unnue.com/article/10
1331 | 2019-12-16
1332 | monthly
1333 | 0.8
1334 |
1335 |
1336 | https://unnue.com/tag/blockchain/1
1337 | 2019-12-16
1338 | monthly
1339 | 0.8
1340 |
1341 |
1342 |
--------------------------------------------------------------------------------
/plugins/pinyin.js:
--------------------------------------------------------------------------------
1 | /*
2 | * 获取汉字拼音首字母
3 | *
4 | * */
5 |
6 | var pinYin = {
7 | "a": "\u554a\u963f\u9515",
8 | "ai": "\u57c3\u6328\u54ce\u5509\u54c0\u7691\u764c\u853c\u77ee\u827e\u788d\u7231\u9698\u8bf6\u6371\u55f3\u55cc\u5ad2\u7477\u66a7\u7839\u953f\u972d",
9 | "an": "\u978d\u6c28\u5b89\u4ffa\u6309\u6697\u5cb8\u80fa\u6848\u8c19\u57ef\u63de\u72b4\u5eb5\u6849\u94f5\u9e4c\u9878\u9eef",
10 | "ang": "\u80ae\u6602\u76ce",
11 | "ao": "\u51f9\u6556\u71ac\u7ff1\u8884\u50b2\u5965\u61ca\u6fb3\u5773\u62d7\u55f7\u5662\u5c99\u5ed2\u9068\u5aaa\u9a9c\u8071\u87af\u93ca\u9ccc\u93d6",
12 | "ba": "\u82ad\u634c\u6252\u53ed\u5427\u7b06\u516b\u75a4\u5df4\u62d4\u8dcb\u9776\u628a\u8019\u575d\u9738\u7f62\u7238\u8307\u83dd\u8406\u636d\u5c9c\u705e\u6777\u94af\u7c91\u9c85\u9b43",
13 | "bai": "\u767d\u67cf\u767e\u6446\u4f70\u8d25\u62dc\u7a17\u859c\u63b0\u97b4",
14 | "ban": "\u6591\u73ed\u642c\u6273\u822c\u9881\u677f\u7248\u626e\u62cc\u4f34\u74e3\u534a\u529e\u7eca\u962a\u5742\u8c73\u94a3\u7622\u764d\u8228",
15 | "bang": "\u90a6\u5e2e\u6886\u699c\u8180\u7ed1\u68d2\u78c5\u868c\u9551\u508d\u8c24\u84a1\u8783",
16 | "bao": "\u82de\u80de\u5305\u8912\u96f9\u4fdd\u5821\u9971\u5b9d\u62b1\u62a5\u66b4\u8c79\u9c8d\u7206\u52f9\u8446\u5b80\u5b62\u7172\u9e28\u8913\u8db5\u9f85",
17 | "bo": "\u5265\u8584\u73bb\u83e0\u64ad\u62e8\u94b5\u6ce2\u535a\u52c3\u640f\u94c2\u7b94\u4f2f\u5e1b\u8236\u8116\u818a\u6e24\u6cca\u9a73\u4eb3\u8543\u5575\u997d\u6a97\u64d8\u7934\u94b9\u9e41\u7c38\u8ddb",
18 | "bei": "\u676f\u7891\u60b2\u5351\u5317\u8f88\u80cc\u8d1d\u94a1\u500d\u72c8\u5907\u60eb\u7119\u88ab\u5b5b\u9642\u90b6\u57e4\u84d3\u5457\u602b\u6096\u789a\u9e4e\u8919\u943e",
19 | "ben": "\u5954\u82ef\u672c\u7b28\u755a\u574c\u951b",
20 | "beng": "\u5d29\u7ef7\u752d\u6cf5\u8e66\u8ff8\u552a\u5623\u750f",
21 | "bi": "\u903c\u9f3b\u6bd4\u9119\u7b14\u5f7c\u78a7\u84d6\u853d\u6bd5\u6bd9\u6bd6\u5e01\u5e87\u75f9\u95ed\u655d\u5f0a\u5fc5\u8f9f\u58c1\u81c2\u907f\u965b\u5315\u4ef3\u4ffe\u8298\u835c\u8378\u5421\u54d4\u72f4\u5eb3\u610e\u6ed7\u6fde\u5f3c\u59a3\u5a62\u5b16\u74a7\u8d32\u7540\u94cb\u79d5\u88e8\u7b5a\u7b85\u7be6\u822d\u895e\u8df8\u9ac0",
22 | "bian": "\u97ad\u8fb9\u7f16\u8d2c\u6241\u4fbf\u53d8\u535e\u8fa8\u8fa9\u8fab\u904d\u533e\u5f01\u82c4\u5fed\u6c74\u7f0f\u7178\u782d\u78a5\u7a39\u7a86\u8759\u7b3e\u9cca",
23 | "biao": "\u6807\u5f6a\u8198\u8868\u5a4a\u9aa0\u98d1\u98d9\u98da\u706c\u9556\u9573\u762d\u88f1\u9cd4",
24 | "bie": "\u9cd6\u618b\u522b\u762a\u8e69\u9cd8",
25 | "bin": "\u5f6c\u658c\u6fd2\u6ee8\u5bbe\u6448\u50a7\u6d5c\u7f24\u73a2\u6ba1\u8191\u9554\u9acc\u9b13",
26 | "bing": "\u5175\u51b0\u67c4\u4e19\u79c9\u997c\u70b3\u75c5\u5e76\u7980\u90b4\u6452\u7ee0\u678b\u69df\u71f9",
27 | "bu": "\u6355\u535c\u54fa\u8865\u57e0\u4e0d\u5e03\u6b65\u7c3f\u90e8\u6016\u62ca\u535f\u900b\u74ff\u6661\u949a\u91ad",
28 | "ca": "\u64e6\u5693\u7924",
29 | "cai": "\u731c\u88c1\u6750\u624d\u8d22\u776c\u8e29\u91c7\u5f69\u83dc\u8521",
30 | "can": "\u9910\u53c2\u8695\u6b8b\u60ed\u60e8\u707f\u9a96\u74a8\u7cb2\u9eea",
31 | "cang": "\u82cd\u8231\u4ed3\u6ca7\u85cf\u4f27",
32 | "cao": "\u64cd\u7cd9\u69fd\u66f9\u8349\u8279\u5608\u6f15\u87ac\u825a",
33 | "ce": "\u5395\u7b56\u4fa7\u518c\u6d4b\u5202\u5e3b\u607b",
34 | "ceng": "\u5c42\u8e6d\u564c",
35 | "cha": "\u63d2\u53c9\u832c\u8336\u67e5\u78b4\u643d\u5bdf\u5c94\u5dee\u8be7\u7339\u9987\u6c4a\u59f9\u6748\u6942\u69ce\u6aab\u9497\u9538\u9572\u8869",
36 | "chai": "\u62c6\u67f4\u8c7a\u4faa\u8308\u7625\u867f\u9f87",
37 | "chan": "\u6400\u63ba\u8749\u998b\u8c17\u7f20\u94f2\u4ea7\u9610\u98a4\u5181\u8c04\u8c36\u8487\u5edb\u5fcf\u6f7a\u6fb6\u5b71\u7fbc\u5a75\u5b17\u9aa3\u89c7\u7985\u9561\u88e3\u87fe\u8e94",
38 | "chang": "\u660c\u7316\u573a\u5c1d\u5e38\u957f\u507f\u80a0\u5382\u655e\u7545\u5531\u5021\u4f25\u9b2f\u82cc\u83d6\u5f9c\u6005\u60dd\u960a\u5a3c\u5ae6\u6636\u6c05\u9cb3",
39 | "chao": "\u8d85\u6284\u949e\u671d\u5632\u6f6e\u5de2\u5435\u7092\u600a\u7ec9\u6641\u8016",
40 | "che": "\u8f66\u626f\u64a4\u63a3\u5f7b\u6f88\u577c\u5c6e\u7817",
41 | "chen": "\u90f4\u81e3\u8fb0\u5c18\u6668\u5ff1\u6c89\u9648\u8d81\u886c\u79f0\u8c0c\u62bb\u55d4\u5bb8\u741b\u6987\u809c\u80c2\u789c\u9f80",
42 | "cheng": "\u6491\u57ce\u6a59\u6210\u5448\u4e58\u7a0b\u60e9\u6f84\u8bda\u627f\u901e\u9a8b\u79e4\u57d5\u5d4a\u5fb5\u6d48\u67a8\u67fd\u6a18\u665f\u584d\u77a0\u94d6\u88ce\u86cf\u9172",
43 | "chi": "\u5403\u75f4\u6301\u5319\u6c60\u8fdf\u5f1b\u9a70\u803b\u9f7f\u4f88\u5c3a\u8d64\u7fc5\u65a5\u70bd\u50ba\u5880\u82aa\u830c\u640b\u53f1\u54e7\u557b\u55e4\u5f73\u996c\u6cb2\u5ab8\u6555\u80dd\u7719\u7735\u9e31\u761b\u892b\u86a9\u87ad\u7b1e\u7bea\u8c49\u8e05\u8e1f\u9b51",
44 | "chong": "\u5145\u51b2\u866b\u5d07\u5ba0\u833a\u5fe1\u61a7\u94f3\u825f",
45 | "chou": "\u62bd\u916c\u7574\u8e0c\u7a20\u6101\u7b79\u4ec7\u7ef8\u7785\u4e11\u4fe6\u5733\u5e31\u60c6\u6eb4\u59af\u7633\u96e0\u9c8b",
46 | "chu": "\u81ed\u521d\u51fa\u6a71\u53a8\u8e87\u9504\u96cf\u6ec1\u9664\u695a\u7840\u50a8\u77d7\u6410\u89e6\u5904\u4e8d\u520d\u61b7\u7ecc\u6775\u696e\u6a17\u870d\u8e70\u9edc",
47 | "chuan": "\u63e3\u5ddd\u7a7f\u693d\u4f20\u8239\u5598\u4e32\u63be\u821b\u60f4\u9044\u5ddb\u6c1a\u948f\u9569\u8221",
48 | "chuang": "\u75ae\u7a97\u5e62\u5e8a\u95ef\u521b\u6006",
49 | "chui": "\u5439\u708a\u6376\u9524\u5782\u9672\u68f0\u69cc",
50 | "chun": "\u6625\u693f\u9187\u5507\u6df3\u7eaf\u8822\u4fc3\u83bc\u6c8c\u80ab\u6710\u9e51\u877d",
51 | "chuo": "\u6233\u7ef0\u851f\u8fb6\u8f8d\u955e\u8e14\u9f8a",
52 | "ci": "\u75b5\u8328\u78c1\u96cc\u8f9e\u6148\u74f7\u8bcd\u6b64\u523a\u8d50\u6b21\u8360\u5472\u5d6f\u9e5a\u8785\u7ccd\u8d91",
53 | "cong": "\u806a\u8471\u56f1\u5306\u4ece\u4e1b\u506c\u82c1\u6dd9\u9aa2\u742e\u7481\u679e",
54 | "cu": "\u51d1\u7c97\u918b\u7c07\u731d\u6b82\u8e59",
55 | "cuan": "\u8e7f\u7be1\u7a9c\u6c46\u64ba\u6615\u7228",
56 | "cui": "\u6467\u5d14\u50ac\u8106\u7601\u7cb9\u6dec\u7fe0\u8403\u60b4\u7480\u69b1\u96b9",
57 | "cun": "\u6751\u5b58\u5bf8\u78cb\u5fd6\u76b4",
58 | "cuo": "\u64ae\u6413\u63aa\u632b\u9519\u539d\u811e\u9509\u77ec\u75e4\u9e7e\u8e49\u8e9c",
59 | "da": "\u642d\u8fbe\u7b54\u7629\u6253\u5927\u8037\u54d2\u55d2\u601b\u59b2\u75b8\u8921\u7b2a\u977c\u9791",
60 | "dai": "\u5446\u6b79\u50a3\u6234\u5e26\u6b86\u4ee3\u8d37\u888b\u5f85\u902e\u6020\u57ed\u7519\u5454\u5cb1\u8fe8\u902f\u9a80\u7ed0\u73b3\u9edb",
61 | "dan": "\u803d\u62c5\u4e39\u5355\u90f8\u63b8\u80c6\u65e6\u6c2e\u4f46\u60ee\u6de1\u8bde\u5f39\u86cb\u4ebb\u510b\u5369\u840f\u5556\u6fb9\u6a90\u6b9a\u8d55\u7708\u7605\u8043\u7baa",
62 | "dang": "\u5f53\u6321\u515a\u8361\u6863\u8c20\u51fc\u83ea\u5b95\u7800\u94db\u88c6",
63 | "dao": "\u5200\u6363\u8e48\u5012\u5c9b\u7977\u5bfc\u5230\u7a3b\u60bc\u9053\u76d7\u53e8\u5541\u5fc9\u6d2e\u6c18\u7118\u5fd1\u7e9b",
64 | "de": "\u5fb7\u5f97\u7684\u951d",
65 | "deng": "\u8e6c\u706f\u767b\u7b49\u77aa\u51f3\u9093\u5654\u5d9d\u6225\u78f4\u956b\u7c26",
66 | "di": "\u5824\u4f4e\u6ef4\u8fea\u654c\u7b1b\u72c4\u6da4\u7fdf\u5ae1\u62b5\u5e95\u5730\u8482\u7b2c\u5e1d\u5f1f\u9012\u7f14\u6c10\u7c74\u8bcb\u8c1b\u90b8\u577b\u839c\u837b\u5600\u5a23\u67e2\u68e3\u89cc\u7825\u78b2\u7747\u955d\u7f9d\u9ab6",
67 | "dian": "\u98a0\u6382\u6ec7\u7898\u70b9\u5178\u975b\u57ab\u7535\u4f43\u7538\u5e97\u60e6\u5960\u6dc0\u6bbf\u4e36\u963d\u576b\u57dd\u5dc5\u73b7\u765c\u766b\u7c1f\u8e2e",
68 | "diao": "\u7889\u53fc\u96d5\u51cb\u5201\u6389\u540a\u9493\u8c03\u8f7a\u94de\u8729\u7c9c\u8c82",
69 | "die": "\u8dcc\u7239\u789f\u8776\u8fed\u8c0d\u53e0\u4f5a\u57a4\u581e\u63f2\u558b\u6e2b\u8f76\u7252\u74de\u8936\u800b\u8e40\u9cbd\u9cce",
70 | "ding": "\u4e01\u76ef\u53ee\u9489\u9876\u9f0e\u952d\u5b9a\u8ba2\u4e22\u4ec3\u5576\u738e\u815a\u7887\u753a\u94e4\u7594\u8035\u914a",
71 | "dong": "\u4e1c\u51ac\u8463\u61c2\u52a8\u680b\u4f97\u606b\u51bb\u6d1e\u578c\u549a\u5cbd\u5cd2\u5902\u6c21\u80e8\u80f4\u7850\u9e2b",
72 | "dou": "\u515c\u6296\u6597\u9661\u8c46\u9017\u75d8\u8538\u94ad\u7aa6\u7aac\u86aa\u7bfc\u9161",
73 | "du": "\u90fd\u7763\u6bd2\u728a\u72ec\u8bfb\u5835\u7779\u8d4c\u675c\u9540\u809a\u5ea6\u6e21\u5992\u828f\u561f\u6e0e\u691f\u6a50\u724d\u8839\u7b03\u9ad1\u9ee9",
74 | "duan": "\u7aef\u77ed\u953b\u6bb5\u65ad\u7f0e\u5f56\u6934\u7145\u7c16",
75 | "dui": "\u5806\u5151\u961f\u5bf9\u603c\u619d\u7893",
76 | "dun": "\u58a9\u5428\u8e72\u6566\u987f\u56e4\u949d\u76fe\u9041\u7096\u7818\u7905\u76f9\u9566\u8db8",
77 | "duo": "\u6387\u54c6\u591a\u593a\u579b\u8eb2\u6735\u8dfa\u8235\u5241\u60f0\u5815\u5484\u54da\u7f0d\u67c1\u94ce\u88f0\u8e31",
78 | "e": "\u86fe\u5ce8\u9e45\u4fc4\u989d\u8bb9\u5a25\u6076\u5384\u627c\u904f\u9102\u997f\u5669\u8c14\u57a9\u57ad\u82ca\u83aa\u843c\u5443\u6115\u5c59\u5a40\u8f6d\u66f7\u816d\u786a\u9507\u9537\u9e57\u989a\u9cc4",
79 | "en": "\u6069\u84bd\u6441\u5514\u55ef",
80 | "er": "\u800c\u513f\u8033\u5c14\u9975\u6d31\u4e8c\u8d30\u8fe9\u73e5\u94d2\u9e38\u9c95",
81 | "fa": "\u53d1\u7f5a\u7b4f\u4f10\u4e4f\u9600\u6cd5\u73d0\u57a1\u781d",
82 | "fan": "\u85e9\u5e06\u756a\u7ffb\u6a0a\u77fe\u9492\u7e41\u51e1\u70e6\u53cd\u8fd4\u8303\u8d29\u72af\u996d\u6cdb\u8629\u5e61\u72ad\u68b5\u6535\u71d4\u7548\u8e6f",
83 | "fang": "\u574a\u82b3\u65b9\u80aa\u623f\u9632\u59a8\u4eff\u8bbf\u7eba\u653e\u531a\u90a1\u5f77\u94ab\u822b\u9c82",
84 | "fei": "\u83f2\u975e\u5561\u98de\u80a5\u532a\u8bfd\u5420\u80ba\u5e9f\u6cb8\u8d39\u82be\u72d2\u60b1\u6ddd\u5983\u7ecb\u7eef\u69a7\u8153\u6590\u6249\u7953\u7829\u9544\u75f1\u871a\u7bda\u7fe1\u970f\u9cb1",
85 | "fen": "\u82ac\u915a\u5429\u6c1b\u5206\u7eb7\u575f\u711a\u6c7e\u7c89\u594b\u4efd\u5fff\u6124\u7caa\u507e\u7035\u68fc\u610d\u9cbc\u9f22",
86 | "feng": "\u4e30\u5c01\u67ab\u8702\u5cf0\u950b\u98ce\u75af\u70fd\u9022\u51af\u7f1d\u8bbd\u5949\u51e4\u4ff8\u9146\u8451\u6ca3\u781c",
87 | "fu": "\u4f5b\u5426\u592b\u6577\u80a4\u5b75\u6276\u62c2\u8f90\u5e45\u6c1f\u7b26\u4f0f\u4fd8\u670d\u6d6e\u6daa\u798f\u88b1\u5f17\u752b\u629a\u8f85\u4fef\u91dc\u65a7\u812f\u8151\u5e9c\u8150\u8d74\u526f\u8986\u8d4b\u590d\u5085\u4ed8\u961c\u7236\u8179\u8d1f\u5bcc\u8ba3\u9644\u5987\u7f1a\u5490\u5310\u51eb\u90db\u8299\u82fb\u832f\u83a9\u83d4\u544b\u5e5e\u6ecf\u8274\u5b5a\u9a78\u7ec2\u6874\u8d59\u9efb\u9efc\u7f58\u7a03\u99a5\u864d\u86a8\u8709\u8760\u876e\u9eb8\u8dba\u8dd7\u9cc6",
88 | "ga": "\u5676\u560e\u86e4\u5c2c\u5477\u5c15\u5c1c\u65ee\u9486",
89 | "gai": "\u8be5\u6539\u6982\u9499\u76d6\u6e89\u4e10\u9654\u5793\u6224\u8d45\u80f2",
90 | "gan": "\u5e72\u7518\u6746\u67d1\u7aff\u809d\u8d76\u611f\u79c6\u6562\u8d63\u5769\u82f7\u5c34\u64c0\u6cd4\u6de6\u6f89\u7ec0\u6a44\u65f0\u77f8\u75b3\u9150",
91 | "gang": "\u5188\u521a\u94a2\u7f38\u809b\u7eb2\u5c97\u6e2f\u6206\u7f61\u9883\u7b7b",
92 | "gong": "\u6760\u5de5\u653b\u529f\u606d\u9f9a\u4f9b\u8eac\u516c\u5bab\u5f13\u5de9\u6c5e\u62f1\u8d21\u5171\u857b\u5efe\u54a3\u73d9\u80b1\u86a3\u86e9\u89e5",
93 | "gao": "\u7bd9\u768b\u9ad8\u818f\u7f94\u7cd5\u641e\u9550\u7a3f\u544a\u777e\u8bf0\u90dc\u84bf\u85c1\u7f1f\u69d4\u69c1\u6772\u9506",
94 | "ge": "\u54e5\u6b4c\u6401\u6208\u9e3d\u80f3\u7599\u5272\u9769\u845b\u683c\u9601\u9694\u94ec\u4e2a\u5404\u9b32\u4ee1\u54ff\u5865\u55dd\u7ea5\u643f\u8188\u784c\u94ea\u9549\u88bc\u988c\u867c\u8238\u9abc\u9ac2",
95 | "gei": "\u7ed9",
96 | "gen": "\u6839\u8ddf\u4e98\u831b\u54cf\u826e",
97 | "geng": "\u8015\u66f4\u5e9a\u7fb9\u57c2\u803f\u6897\u54fd\u8d53\u9ca0",
98 | "gou": "\u94a9\u52fe\u6c9f\u82df\u72d7\u57a2\u6784\u8d2d\u591f\u4f5d\u8bdf\u5ca3\u9058\u5abe\u7f11\u89cf\u5f40\u9e32\u7b31\u7bdd\u97b2",
99 | "gu": "\u8f9c\u83c7\u5495\u7b8d\u4f30\u6cbd\u5b64\u59d1\u9f13\u53e4\u86ca\u9aa8\u8c37\u80a1\u6545\u987e\u56fa\u96c7\u560f\u8bc2\u83f0\u54cc\u5d2e\u6c69\u688f\u8f71\u726f\u727f\u80cd\u81cc\u6bc2\u77bd\u7f5f\u94b4\u9522\u74e0\u9e2a\u9e44\u75fc\u86c4\u9164\u89da\u9cb4\u9ab0\u9e58",
100 | "gua": "\u522e\u74dc\u5250\u5be1\u6302\u8902\u5366\u8bd6\u5471\u681d\u9e39",
101 | "guai": "\u4e56\u62d0\u602a\u54d9",
102 | "guan": "\u68fa\u5173\u5b98\u51a0\u89c2\u7ba1\u9986\u7f50\u60ef\u704c\u8d2f\u500c\u839e\u63bc\u6dab\u76e5\u9e73\u9ccf",
103 | "guang": "\u5149\u5e7f\u901b\u72b7\u6844\u80f1\u7592",
104 | "gui": "\u7470\u89c4\u572d\u7845\u5f52\u9f9f\u95fa\u8f68\u9b3c\u8be1\u7678\u6842\u67dc\u8dea\u8d35\u523d\u5326\u523f\u5e8b\u5b84\u59ab\u6867\u7085\u6677\u7688\u7c0b\u9c91\u9cdc",
105 | "gun": "\u8f8a\u6eda\u68cd\u4e28\u886e\u7ef2\u78d9\u9ca7",
106 | "guo": "\u9505\u90ed\u56fd\u679c\u88f9\u8fc7\u9998\u8803\u57da\u63b4\u5459\u56d7\u5e3c\u5d1e\u7313\u6901\u8662\u951e\u8052\u872e\u873e\u8748",
107 | "ha": "\u54c8",
108 | "hai": "\u9ab8\u5b69\u6d77\u6c26\u4ea5\u5bb3\u9a87\u54b4\u55e8\u988f\u91a2",
109 | "han": "\u9163\u61a8\u90af\u97e9\u542b\u6db5\u5bd2\u51fd\u558a\u7f55\u7ff0\u64bc\u634d\u65f1\u61be\u608d\u710a\u6c57\u6c49\u9097\u83e1\u6496\u961a\u701a\u6657\u7113\u9894\u86b6\u9f3e",
110 | "hen": "\u592f\u75d5\u5f88\u72e0\u6068",
111 | "hang": "\u676d\u822a\u6c86\u7ed7\u73e9\u6841",
112 | "hao": "\u58d5\u568e\u8c6a\u6beb\u90dd\u597d\u8017\u53f7\u6d69\u8585\u55e5\u5686\u6fe0\u704f\u660a\u7693\u98a2\u869d",
113 | "he": "\u5475\u559d\u8377\u83cf\u6838\u79be\u548c\u4f55\u5408\u76d2\u8c89\u9602\u6cb3\u6db8\u8d6b\u8910\u9e64\u8d3a\u8bc3\u52be\u58d1\u85ff\u55d1\u55ec\u9616\u76cd\u86b5\u7fee",
114 | "hei": "\u563f\u9ed1",
115 | "heng": "\u54fc\u4ea8\u6a2a\u8861\u6052\u8a07\u8605",
116 | "hong": "\u8f70\u54c4\u70d8\u8679\u9e3f\u6d2a\u5b8f\u5f18\u7ea2\u9ec9\u8ba7\u836d\u85a8\u95f3\u6cd3",
117 | "hou": "\u5589\u4faf\u7334\u543c\u539a\u5019\u540e\u5820\u5f8c\u9005\u760a\u7bcc\u7cc7\u9c8e\u9aba",
118 | "hu": "\u547c\u4e4e\u5ffd\u745a\u58f6\u846b\u80e1\u8774\u72d0\u7cca\u6e56\u5f27\u864e\u552c\u62a4\u4e92\u6caa\u6237\u51b1\u553f\u56eb\u5cb5\u7322\u6019\u60da\u6d52\u6ef9\u7425\u69f2\u8f77\u89f3\u70c0\u7173\u623d\u6248\u795c\u9e55\u9e71\u7b0f\u9190\u659b",
119 | "hua": "\u82b1\u54d7\u534e\u733e\u6ed1\u753b\u5212\u5316\u8bdd\u5290\u6d4d\u9a85\u6866\u94e7\u7a1e",
120 | "huai": "\u69d0\u5f8a\u6000\u6dee\u574f\u8fd8\u8e1d",
121 | "huan": "\u6b22\u73af\u6853\u7f13\u6362\u60a3\u5524\u75ea\u8c62\u7115\u6da3\u5ba6\u5e7b\u90c7\u5942\u57b8\u64d0\u571c\u6d39\u6d63\u6f36\u5bf0\u902d\u7f33\u953e\u9ca9\u9b1f",
122 | "huang": "\u8352\u614c\u9ec4\u78fa\u8757\u7c27\u7687\u51f0\u60f6\u714c\u6643\u5e4c\u604d\u8c0e\u968d\u5fa8\u6e5f\u6f62\u9051\u749c\u8093\u7640\u87e5\u7bc1\u9cc7",
123 | "hui": "\u7070\u6325\u8f89\u5fbd\u6062\u86d4\u56de\u6bc1\u6094\u6167\u5349\u60e0\u6666\u8d3f\u79fd\u4f1a\u70e9\u6c47\u8bb3\u8bf2\u7ed8\u8bd9\u8334\u835f\u8559\u54d5\u5599\u96b3\u6d04\u5f57\u7f0b\u73f2\u6656\u605a\u867a\u87ea\u9ebe",
124 | "hun": "\u8364\u660f\u5a5a\u9b42\u6d51\u6df7\u8be8\u9984\u960d\u6eb7\u7f17",
125 | "huo": "\u8c41\u6d3b\u4f19\u706b\u83b7\u6216\u60d1\u970d\u8d27\u7978\u6509\u56af\u5925\u94ac\u952a\u956c\u8020\u8816",
126 | "ji": "\u51fb\u573e\u57fa\u673a\u7578\u7a3d\u79ef\u7b95\u808c\u9965\u8ff9\u6fc0\u8ba5\u9e21\u59ec\u7ee9\u7f09\u5409\u6781\u68d8\u8f91\u7c4d\u96c6\u53ca\u6025\u75be\u6c72\u5373\u5ac9\u7ea7\u6324\u51e0\u810a\u5df1\u84df\u6280\u5180\u5b63\u4f0e\u796d\u5242\u60b8\u6d4e\u5bc4\u5bc2\u8ba1\u8bb0\u65e2\u5fcc\u9645\u5993\u7ee7\u7eaa\u5c45\u4e0c\u4e69\u525e\u4f76\u4f74\u8114\u58bc\u82a8\u82b0\u8401\u84ba\u857a\u638e\u53fd\u54ad\u54dc\u5527\u5c8c\u5d74\u6d0e\u5f50\u5c50\u9aa5\u757f\u7391\u696b\u6b9b\u621f\u6222\u8d4d\u89ca\u7284\u9f51\u77f6\u7f81\u5d47\u7a37\u7620\u7635\u866e\u7b08\u7b04\u66a8\u8dfb\u8dfd\u9701\u9c9a\u9cab\u9afb\u9e82",
127 | "jia": "\u5609\u67b7\u5939\u4f73\u5bb6\u52a0\u835a\u988a\u8d3e\u7532\u94be\u5047\u7a3c\u4ef7\u67b6\u9a7e\u5ac1\u4f3d\u90cf\u62ee\u5cac\u6d43\u8fe6\u73c8\u621b\u80db\u605d\u94d7\u9553\u75c2\u86f1\u7b33\u8888\u8dcf",
128 | "jian": "\u6b7c\u76d1\u575a\u5c16\u7b3a\u95f4\u714e\u517c\u80a9\u8270\u5978\u7f04\u8327\u68c0\u67ec\u78b1\u7877\u62e3\u6361\u7b80\u4fed\u526a\u51cf\u8350\u69db\u9274\u8df5\u8d31\u89c1\u952e\u7bad\u4ef6\u5065\u8230\u5251\u996f\u6e10\u6e85\u6da7\u5efa\u50ed\u8c0f\u8c2b\u83c5\u84b9\u641b\u56dd\u6e54\u8e47\u8b07\u7f23\u67a7\u67d9\u6957\u620b\u622c\u726e\u728d\u6bfd\u8171\u7751\u950f\u9e63\u88e5\u7b15\u7bb4\u7fe6\u8dbc\u8e3a\u9ca3\u97af",
129 | "jiang": "\u50f5\u59dc\u5c06\u6d46\u6c5f\u7586\u848b\u6868\u5956\u8bb2\u5320\u9171\u964d\u8333\u6d1a\u7edb\u7f30\u729f\u7913\u8029\u7ce8\u8c47",
130 | "jiao": "\u8549\u6912\u7901\u7126\u80f6\u4ea4\u90ca\u6d47\u9a84\u5a07\u56bc\u6405\u94f0\u77eb\u4fa5\u811a\u72e1\u89d2\u997a\u7f34\u7ede\u527f\u6559\u9175\u8f7f\u8f83\u53eb\u4f7c\u50ec\u832d\u6322\u564d\u5ce4\u5fbc\u59e3\u7e9f\u656b\u768e\u9e6a\u86df\u91ae\u8de4\u9c9b",
131 | "jie": "\u7a96\u63ed\u63a5\u7686\u79f8\u8857\u9636\u622a\u52ab\u8282\u6854\u6770\u6377\u776b\u7aed\u6d01\u7ed3\u89e3\u59d0\u6212\u85c9\u82a5\u754c\u501f\u4ecb\u75a5\u8beb\u5c4a\u5048\u8ba6\u8bd8\u5588\u55df\u736c\u5a55\u5b51\u6840\u7352\u78a3\u9534\u7596\u88b7\u9889\u86a7\u7faf\u9c92\u9ab1\u9aeb",
132 | "jin": "\u5dfe\u7b4b\u65a4\u91d1\u4eca\u6d25\u895f\u7d27\u9526\u4ec5\u8c28\u8fdb\u9773\u664b\u7981\u8fd1\u70ec\u6d78\u5c3d\u537a\u8369\u5807\u5664\u9991\u5ed1\u5997\u7f19\u747e\u69ff\u8d46\u89d0\u9485\u9513\u887f\u77dc",
133 | "jing": "\u52b2\u8346\u5162\u830e\u775b\u6676\u9cb8\u4eac\u60ca\u7cbe\u7cb3\u7ecf\u4e95\u8b66\u666f\u9888\u9759\u5883\u656c\u955c\u5f84\u75c9\u9756\u7adf\u7ade\u51c0\u522d\u5106\u9631\u83c1\u734d\u61ac\u6cfe\u8ff3\u5f2a\u5a67\u80bc\u80eb\u8148\u65cc",
134 | "jiong": "\u70af\u7a98\u5182\u8fe5\u6243",
135 | "jiu": "\u63ea\u7a76\u7ea0\u7396\u97ed\u4e45\u7078\u4e5d\u9152\u53a9\u6551\u65e7\u81fc\u8205\u548e\u5c31\u759a\u50e6\u557e\u9604\u67e9\u6855\u9e6b\u8d73\u9b0f",
136 | "ju": "\u97a0\u62d8\u72d9\u75bd\u9a79\u83ca\u5c40\u5480\u77e9\u4e3e\u6cae\u805a\u62d2\u636e\u5de8\u5177\u8ddd\u8e1e\u952f\u4ff1\u53e5\u60e7\u70ac\u5267\u5028\u8bb5\u82e3\u82f4\u8392\u63ac\u907d\u5c66\u741a\u67b8\u6910\u6998\u6989\u6a58\u728b\u98d3\u949c\u9514\u7aad\u88fe\u8d84\u91b5\u8e3d\u9f83\u96ce\u97ab",
137 | "juan": "\u6350\u9e43\u5a1f\u5026\u7737\u5377\u7ee2\u9104\u72f7\u6d93\u684a\u8832\u9529\u954c\u96bd",
138 | "jue": "\u6485\u652b\u6289\u6398\u5014\u7235\u89c9\u51b3\u8bc0\u7edd\u53a5\u5282\u8c32\u77cd\u8568\u5658\u5d1b\u7357\u5b53\u73cf\u6877\u6a5b\u721d\u9562\u8e76\u89d6",
139 | "jun": "\u5747\u83cc\u94a7\u519b\u541b\u5cfb\u4fca\u7ae3\u6d5a\u90e1\u9a8f\u6343\u72fb\u76b2\u7b60\u9e87",
140 | "ka": "\u5580\u5496\u5361\u4f67\u5494\u80e9",
141 | "ke": "\u54af\u5777\u82db\u67ef\u68f5\u78d5\u9897\u79d1\u58f3\u54b3\u53ef\u6e34\u514b\u523b\u5ba2\u8bfe\u5ca2\u606a\u6e98\u9a92\u7f02\u73c2\u8f72\u6c2a\u778c\u94b6\u75b4\u7aa0\u874c\u9ac1",
142 | "kai": "\u5f00\u63e9\u6977\u51ef\u6168\u5240\u57b2\u8488\u5ffe\u607a\u94e0\u950e",
143 | "kan": "\u520a\u582a\u52d8\u574e\u780d\u770b\u4f83\u51f5\u83b0\u83b6\u6221\u9f9b\u77b0",
144 | "kang": "\u5eb7\u6177\u7ce0\u625b\u6297\u4ea2\u7095\u5751\u4f09\u95f6\u94aa",
145 | "kao": "\u8003\u62f7\u70e4\u9760\u5c3b\u6832\u7292\u94d0",
146 | "ken": "\u80af\u5543\u57a6\u6073\u57a0\u88c9\u9880",
147 | "keng": "\u542d\u5fd0\u94ff",
148 | "kong": "\u7a7a\u6050\u5b54\u63a7\u5025\u5d06\u7b9c",
149 | "kou": "\u62a0\u53e3\u6263\u5bc7\u82a4\u853b\u53e9\u770d\u7b58",
150 | "ku": "\u67af\u54ed\u7a9f\u82e6\u9177\u5e93\u88e4\u5233\u5800\u55be\u7ed4\u9ab7",
151 | "kua": "\u5938\u57ae\u630e\u8de8\u80ef\u4f89",
152 | "kuai": "\u5757\u7b77\u4fa9\u5feb\u84af\u90d0\u8489\u72ef\u810d",
153 | "kuan": "\u5bbd\u6b3e\u9acb",
154 | "kuang": "\u5321\u7b50\u72c2\u6846\u77ff\u7736\u65f7\u51b5\u8bd3\u8bf3\u909d\u5739\u593c\u54d0\u7ea9\u8d36",
155 | "kui": "\u4e8f\u76d4\u5cbf\u7aa5\u8475\u594e\u9b41\u5080\u9988\u6127\u6e83\u9997\u532e\u5914\u9697\u63c6\u55b9\u559f\u609d\u6126\u9615\u9035\u668c\u777d\u8069\u8770\u7bd1\u81fe\u8dec",
156 | "kun": "\u5764\u6606\u6346\u56f0\u6083\u9603\u7428\u951f\u918c\u9cb2\u9ae1",
157 | "kuo": "\u62ec\u6269\u5ed3\u9614\u86de",
158 | "la": "\u5783\u62c9\u5587\u8721\u814a\u8fa3\u5566\u524c\u647a\u908b\u65ef\u782c\u760c",
159 | "lai": "\u83b1\u6765\u8d56\u5d03\u5f95\u6d9e\u6fd1\u8d49\u7750\u94fc\u765e\u7c41",
160 | "lan": "\u84dd\u5a6a\u680f\u62e6\u7bee\u9611\u5170\u6f9c\u8c30\u63fd\u89c8\u61d2\u7f06\u70c2\u6ee5\u5549\u5c9a\u61d4\u6f24\u6984\u6593\u7f71\u9567\u8934",
161 | "lang": "\u7405\u6994\u72fc\u5eca\u90ce\u6717\u6d6a\u83a8\u8497\u5577\u9606\u9512\u7a02\u8782",
162 | "lao": "\u635e\u52b3\u7262\u8001\u4f6c\u59e5\u916a\u70d9\u6d9d\u5520\u5d02\u6833\u94d1\u94f9\u75e8\u91aa",
163 | "le": "\u52d2\u4e50\u808b\u4ec2\u53fb\u561e\u6cd0\u9cd3",
164 | "lei": "\u96f7\u956d\u857e\u78ca\u7d2f\u5121\u5792\u64c2\u7c7b\u6cea\u7fb8\u8bd4\u837d\u54a7\u6f2f\u5ad8\u7f27\u6a91\u8012\u9179",
165 | "ling": "\u68f1\u51b7\u62ce\u73b2\u83f1\u96f6\u9f84\u94c3\u4f36\u7f9a\u51cc\u7075\u9675\u5cad\u9886\u53e6\u4ee4\u9143\u5844\u82d3\u5464\u56f9\u6ce0\u7eeb\u67c3\u68c2\u74f4\u8046\u86c9\u7fce\u9cae",
166 | "leng": "\u695e\u6123",
167 | "li": "\u5398\u68a8\u7281\u9ece\u7bf1\u72f8\u79bb\u6f13\u7406\u674e\u91cc\u9ca4\u793c\u8389\u8354\u540f\u6817\u4e3d\u5389\u52b1\u783e\u5386\u5229\u5088\u4f8b\u4fd0\u75e2\u7acb\u7c92\u6ca5\u96b6\u529b\u7483\u54e9\u4fea\u4fda\u90e6\u575c\u82c8\u8385\u84e0\u85dc\u6369\u5456\u5533\u55b1\u7301\u6ea7\u6fa7\u9026\u5a0c\u5ae0\u9a8a\u7f21\u73de\u67a5\u680e\u8f79\u623e\u783a\u8a48\u7f79\u9502\u9e42\u75a0\u75ac\u86ce\u870a\u8821\u7b20\u7be5\u7c9d\u91b4\u8dde\u96f3\u9ca1\u9ce2\u9ee7",
168 | "lian": "\u4fe9\u8054\u83b2\u8fde\u9570\u5ec9\u601c\u6d9f\u5e18\u655b\u8138\u94fe\u604b\u70bc\u7ec3\u631b\u8539\u5941\u6f4b\u6fc2\u5a08\u740f\u695d\u6b93\u81c1\u81a6\u88e2\u880a\u9ca2",
169 | "liang": "\u7cae\u51c9\u6881\u7cb1\u826f\u4e24\u8f86\u91cf\u667e\u4eae\u8c05\u589a\u690b\u8e09\u9753\u9b49",
170 | "liao": "\u64a9\u804a\u50da\u7597\u71ce\u5be5\u8fbd\u6f66\u4e86\u6482\u9563\u5ed6\u6599\u84fc\u5c25\u5639\u7360\u5bee\u7f2d\u948c\u9e69\u8022",
171 | "lie": "\u5217\u88c2\u70c8\u52a3\u730e\u51bd\u57d2\u6d0c\u8d94\u8e90\u9b23",
172 | "lin": "\u7433\u6797\u78f7\u9716\u4e34\u90bb\u9cde\u6dcb\u51db\u8d41\u541d\u853a\u5d99\u5eea\u9074\u6aa9\u8f9a\u77b5\u7cbc\u8e8f\u9e9f",
173 | "liu": "\u6e9c\u7409\u69b4\u786b\u998f\u7559\u5218\u7624\u6d41\u67f3\u516d\u62a1\u507b\u848c\u6cd6\u6d4f\u905b\u9a9d\u7efa\u65d2\u7198\u950d\u954f\u9e68\u938f",
174 | "long": "\u9f99\u804b\u5499\u7b3c\u7abf\u9686\u5784\u62e2\u9647\u5f04\u5785\u830f\u6cf7\u73d1\u680a\u80e7\u783b\u7643",
175 | "lou": "\u697c\u5a04\u6402\u7bd3\u6f0f\u964b\u55bd\u5d5d\u9542\u7618\u8027\u877c\u9ac5",
176 | "lu": "\u82a6\u5362\u9885\u5e90\u7089\u63b3\u5364\u864f\u9c81\u9e93\u788c\u9732\u8def\u8d42\u9e7f\u6f5e\u7984\u5f55\u9646\u622e\u5786\u6445\u64b8\u565c\u6cf8\u6e0c\u6f09\u7490\u680c\u6a79\u8f73\u8f82\u8f98\u6c07\u80ea\u9565\u9e2c\u9e6d\u7c0f\u823b\u9c88",
177 | "lv": "\u9a74\u5415\u94dd\u4fa3\u65c5\u5c65\u5c61\u7f15\u8651\u6c2f\u5f8b\u7387\u6ee4\u7eff\u634b\u95fe\u6988\u8182\u7a06\u891b",
178 | "luan": "\u5ce6\u5b6a\u6ee6\u5375\u4e71\u683e\u9e3e\u92ae",
179 | "lue": "\u63a0\u7565\u950a",
180 | "lun": "\u8f6e\u4f26\u4ed1\u6ca6\u7eb6\u8bba\u56f5",
181 | "luo": "\u841d\u87ba\u7f57\u903b\u9523\u7ba9\u9aa1\u88f8\u843d\u6d1b\u9a86\u7edc\u502e\u8366\u645e\u7321\u6cfa\u6924\u8136\u9559\u7630\u96d2",
182 | "ma": "\u5988\u9ebb\u739b\u7801\u8682\u9a6c\u9a82\u561b\u5417\u551b\u72b8\u5b37\u6769\u9ebd",
183 | "mai": "\u57cb\u4e70\u9ea6\u5356\u8fc8\u8109\u52a2\u836c\u54aa\u973e",
184 | "man": "\u7792\u9992\u86ee\u6ee1\u8513\u66fc\u6162\u6f2b\u8c29\u5881\u5e54\u7f26\u71b3\u9558\u989f\u87a8\u9cd7\u9794",
185 | "mang": "\u8292\u832b\u76f2\u5fd9\u83bd\u9099\u6f2d\u6726\u786d\u87d2",
186 | "meng": "\u6c13\u840c\u8499\u6aac\u76df\u9530\u731b\u68a6\u5b5f\u52d0\u750d\u77a2\u61f5\u791e\u867b\u8722\u8813\u824b\u8268\u9efe",
187 | "miao": "\u732b\u82d7\u63cf\u7784\u85d0\u79d2\u6e3a\u5e99\u5999\u55b5\u9088\u7f08\u7f2a\u676a\u6dfc\u7707\u9e4b\u8731",
188 | "mao": "\u8305\u951a\u6bdb\u77db\u94c6\u536f\u8302\u5192\u5e3d\u8c8c\u8d38\u4f94\u88a4\u52d6\u8306\u5cc1\u7441\u6634\u7266\u8004\u65c4\u61cb\u7780\u86d1\u8765\u87ca\u9ae6",
189 | "me": "\u4e48",
190 | "mei": "\u73ab\u679a\u6885\u9176\u9709\u7164\u6ca1\u7709\u5a92\u9541\u6bcf\u7f8e\u6627\u5bd0\u59b9\u5a9a\u5776\u8393\u5d4b\u7338\u6d7c\u6e44\u6963\u9545\u9e5b\u8882\u9b45",
191 | "men": "\u95e8\u95f7\u4eec\u626a\u739f\u7116\u61d1\u9494",
192 | "mi": "\u772f\u919a\u9761\u7cdc\u8ff7\u8c1c\u5f25\u7c73\u79d8\u89c5\u6ccc\u871c\u5bc6\u5e42\u8288\u5196\u8c27\u863c\u5627\u7315\u736f\u6c68\u5b93\u5f2d\u8112\u6549\u7cf8\u7e3b\u9e8b",
193 | "mian": "\u68c9\u7720\u7ef5\u5195\u514d\u52c9\u5a29\u7f05\u9762\u6c94\u6e4e\u817c\u7704",
194 | "mie": "\u8511\u706d\u54a9\u881b\u7bfe",
195 | "min": "\u6c11\u62bf\u76bf\u654f\u60af\u95fd\u82e0\u5cb7\u95f5\u6cef\u73c9",
196 | "ming": "\u660e\u879f\u9e23\u94ed\u540d\u547d\u51a5\u8317\u6e9f\u669d\u7791\u9169",
197 | "miu": "\u8c2c",
198 | "mo": "\u6478\u6479\u8611\u6a21\u819c\u78e8\u6469\u9b54\u62b9\u672b\u83ab\u58a8\u9ed8\u6cab\u6f20\u5bde\u964c\u8c1f\u8309\u84e6\u998d\u5aeb\u9546\u79e3\u763c\u8031\u87c6\u8c8a\u8c98",
199 | "mou": "\u8c0b\u725f\u67d0\u53b6\u54de\u5a7a\u7738\u936a",
200 | "mu": "\u62c7\u7261\u4ea9\u59c6\u6bcd\u5893\u66ae\u5e55\u52df\u6155\u6728\u76ee\u7766\u7267\u7a46\u4eeb\u82dc\u5452\u6c90\u6bea\u94bc",
201 | "na": "\u62ff\u54ea\u5450\u94a0\u90a3\u5a1c\u7eb3\u5185\u637a\u80ad\u954e\u8872\u7bac",
202 | "nai": "\u6c16\u4e43\u5976\u8010\u5948\u9f10\u827f\u8418\u67f0",
203 | "nan": "\u5357\u7537\u96be\u56ca\u5583\u56e1\u6960\u8169\u877b\u8d67",
204 | "nao": "\u6320\u8111\u607c\u95f9\u5b6c\u57b4\u7331\u7459\u7847\u94d9\u86f2",
205 | "ne": "\u6dd6\u5462\u8bb7",
206 | "nei": "\u9981",
207 | "nen": "\u5ae9\u80fd\u6798\u6041",
208 | "ni": "\u59ae\u9713\u502a\u6ce5\u5c3c\u62df\u4f60\u533f\u817b\u9006\u6eba\u4f32\u576d\u730a\u6029\u6ee0\u6635\u65ce\u7962\u615d\u7768\u94cc\u9cb5",
209 | "nian": "\u852b\u62c8\u5e74\u78be\u64b5\u637b\u5ff5\u5eff\u8f87\u9ecf\u9c87\u9cb6",
210 | "niang": "\u5a18\u917f",
211 | "niao": "\u9e1f\u5c3f\u8311\u5b32\u8132\u8885",
212 | "nie": "\u634f\u8042\u5b7d\u556e\u954a\u954d\u6d85\u4e5c\u9667\u8616\u55eb\u8080\u989e\u81ec\u8e51",
213 | "nin": "\u60a8\u67e0",
214 | "ning": "\u72de\u51dd\u5b81\u62e7\u6cde\u4f5e\u84e5\u549b\u752f\u804d",
215 | "niu": "\u725b\u626d\u94ae\u7ebd\u72c3\u5ff8\u599e\u86b4",
216 | "nong": "\u8113\u6d53\u519c\u4fac",
217 | "nu": "\u5974\u52aa\u6012\u5476\u5e11\u5f29\u80ec\u5b65\u9a7d",
218 | "nv": "\u5973\u6067\u9495\u8844",
219 | "nuan": "\u6696",
220 | "nuenue": "\u8650",
221 | "nue": "\u759f\u8c11",
222 | "nuo": "\u632a\u61e6\u7cef\u8bfa\u50a9\u6426\u558f\u9518",
223 | "ou": "\u54e6\u6b27\u9e25\u6bb4\u85d5\u5455\u5076\u6ca4\u6004\u74ef\u8026",
224 | "pa": "\u556a\u8db4\u722c\u5e15\u6015\u7436\u8469\u7b62",
225 | "pai": "\u62cd\u6392\u724c\u5f98\u6e43\u6d3e\u4ff3\u848e",
226 | "pan": "\u6500\u6f58\u76d8\u78d0\u76fc\u7554\u5224\u53db\u723f\u6cee\u88a2\u897b\u87e0\u8e52",
227 | "pang": "\u4e53\u5e9e\u65c1\u802a\u80d6\u6ec2\u9004",
228 | "pao": "\u629b\u5486\u5228\u70ae\u888d\u8dd1\u6ce1\u530f\u72cd\u5e96\u812c\u75b1",
229 | "pei": "\u5478\u80da\u57f9\u88f4\u8d54\u966a\u914d\u4f69\u6c9b\u638a\u8f94\u5e14\u6de0\u65c6\u952b\u9185\u9708",
230 | "pen": "\u55b7\u76c6\u6e53",
231 | "peng": "\u7830\u62a8\u70f9\u6f8e\u5f6d\u84ec\u68da\u787c\u7bf7\u81a8\u670b\u9e4f\u6367\u78b0\u576f\u580b\u562d\u6026\u87db",
232 | "pi": "\u7812\u9739\u6279\u62ab\u5288\u7435\u6bd7\u5564\u813e\u75b2\u76ae\u5339\u75de\u50fb\u5c41\u8b6c\u4e15\u9674\u90b3\u90eb\u572e\u9f19\u64d7\u567c\u5e80\u5ab2\u7eb0\u6787\u7513\u7765\u7f74\u94cd\u75e6\u7656\u758b\u868d\u8c94",
233 | "pian": "\u7bc7\u504f\u7247\u9a97\u8c1d\u9a88\u728f\u80fc\u890a\u7fe9\u8e41",
234 | "piao": "\u98d8\u6f02\u74e2\u7968\u527d\u560c\u5ad6\u7f25\u6b8d\u779f\u87b5",
235 | "pie": "\u6487\u77a5\u4e3f\u82e4\u6c15",
236 | "pin": "\u62fc\u9891\u8d2b\u54c1\u8058\u62da\u59d8\u5ad4\u6980\u725d\u98a6",
237 | "ping": "\u4e52\u576a\u82f9\u840d\u5e73\u51ed\u74f6\u8bc4\u5c4f\u4fdc\u5a09\u67b0\u9c86",
238 | "po": "\u5761\u6cfc\u9887\u5a46\u7834\u9b44\u8feb\u7c95\u53f5\u9131\u6ea5\u73c0\u948b\u94b7\u76a4\u7b38",
239 | "pou": "\u5256\u88d2\u8e23",
240 | "pu": "\u6251\u94fa\u4ec6\u8386\u8461\u83e9\u84b2\u57d4\u6734\u5703\u666e\u6d66\u8c31\u66dd\u7011\u530d\u5657\u6fee\u749e\u6c06\u9564\u9568\u8e7c",
241 | "qi": "\u671f\u6b3a\u6816\u621a\u59bb\u4e03\u51c4\u6f06\u67d2\u6c8f\u5176\u68cb\u5947\u6b67\u7566\u5d0e\u8110\u9f50\u65d7\u7948\u7941\u9a91\u8d77\u5c82\u4e5e\u4f01\u542f\u5951\u780c\u5668\u6c14\u8fc4\u5f03\u6c7d\u6ce3\u8bab\u4e9f\u4e93\u573b\u8291\u840b\u847a\u5601\u5c7a\u5c90\u6c54\u6dc7\u9a90\u7eee\u742a\u7426\u675e\u6864\u69ed\u6b39\u797a\u61a9\u789b\u86f4\u871e\u7da6\u7dae\u8dbf\u8e4a\u9ccd\u9e92",
242 | "qia": "\u6390\u6070\u6d3d\u845c",
243 | "qian": "\u7275\u6266\u948e\u94c5\u5343\u8fc1\u7b7e\u4edf\u8c26\u4e7e\u9ed4\u94b1\u94b3\u524d\u6f5c\u9063\u6d45\u8c34\u5811\u5d4c\u6b20\u6b49\u4f65\u9621\u828a\u82a1\u8368\u63ae\u5c8d\u60ad\u614a\u9a9e\u6434\u8930\u7f31\u6920\u80b7\u6106\u94a4\u8654\u7b9d",
244 | "qiang": "\u67aa\u545b\u8154\u7f8c\u5899\u8537\u5f3a\u62a2\u5af1\u6a2f\u6217\u709d\u9516\u9535\u956a\u8941\u8723\u7f9f\u8deb\u8dc4",
245 | "qiao": "\u6a47\u9539\u6572\u6084\u6865\u77a7\u4e54\u4fa8\u5de7\u9798\u64ac\u7fd8\u5ced\u4fcf\u7a8d\u5281\u8bee\u8c2f\u835e\u6100\u6194\u7f32\u6a35\u6bf3\u7857\u8df7\u9792",
246 | "qie": "\u5207\u8304\u4e14\u602f\u7a83\u90c4\u553c\u60ec\u59be\u6308\u9532\u7ba7",
247 | "qin": "\u94a6\u4fb5\u4eb2\u79e6\u7434\u52e4\u82b9\u64d2\u79bd\u5bdd\u6c81\u82a9\u84c1\u8572\u63ff\u5423\u55ea\u5659\u6eb1\u6a8e\u8793\u887e",
248 | "qing": "\u9752\u8f7b\u6c22\u503e\u537f\u6e05\u64ce\u6674\u6c30\u60c5\u9877\u8bf7\u5e86\u5029\u82d8\u570a\u6aa0\u78ec\u873b\u7f44\u7b90\u8b26\u9cad\u9ee5",
249 | "qiong": "\u743c\u7a77\u909b\u8315\u7a79\u7b47\u928e",
250 | "qiu": "\u79cb\u4e18\u90b1\u7403\u6c42\u56da\u914b\u6cc5\u4fc5\u6c3d\u5def\u827d\u72b0\u6e6b\u9011\u9052\u6978\u8d47\u9e20\u866c\u86af\u8764\u88d8\u7cd7\u9cc5\u9f3d",
251 | "qu": "\u8d8b\u533a\u86c6\u66f2\u8eaf\u5c48\u9a71\u6e20\u53d6\u5a36\u9f8b\u8da3\u53bb\u8bce\u52ac\u8556\u8627\u5c96\u8862\u9612\u74a9\u89d1\u6c0d\u795b\u78f2\u766f\u86d0\u883c\u9eb4\u77bf\u9ee2",
252 | "quan": "\u5708\u98a7\u6743\u919b\u6cc9\u5168\u75ca\u62f3\u72ac\u5238\u529d\u8be0\u8343\u737e\u609b\u7efb\u8f81\u754e\u94e8\u8737\u7b4c\u9b08",
253 | "que": "\u7f3a\u7094\u7638\u5374\u9e4a\u69b7\u786e\u96c0\u9619\u60ab",
254 | "qun": "\u88d9\u7fa4\u9021",
255 | "ran": "\u7136\u71c3\u5189\u67d3\u82d2\u9aef",
256 | "rang": "\u74e4\u58e4\u6518\u56b7\u8ba9\u79b3\u7a70",
257 | "rao": "\u9976\u6270\u7ed5\u835b\u5a06\u6861",
258 | "ruo": "\u60f9\u82e5\u5f31",
259 | "re": "\u70ed\u504c",
260 | "ren": "\u58ec\u4ec1\u4eba\u5fcd\u97e7\u4efb\u8ba4\u5203\u598a\u7eab\u4ede\u834f\u845a\u996a\u8f6b\u7a14\u887d",
261 | "reng": "\u6254\u4ecd",
262 | "ri": "\u65e5",
263 | "rong": "\u620e\u8338\u84c9\u8363\u878d\u7194\u6eb6\u5bb9\u7ed2\u5197\u5d58\u72e8\u7f1b\u6995\u877e",
264 | "rou": "\u63c9\u67d4\u8089\u7cc5\u8e42\u97a3",
265 | "ru": "\u8339\u8815\u5112\u5b7a\u5982\u8fb1\u4e73\u6c5d\u5165\u8925\u84d0\u85b7\u5685\u6d33\u6ebd\u6fe1\u94f7\u8966\u98a5",
266 | "ruan": "\u8f6f\u962e\u670a",
267 | "rui": "\u854a\u745e\u9510\u82ae\u8564\u777f\u868b",
268 | "run": "\u95f0\u6da6",
269 | "sa": "\u6492\u6d12\u8428\u5345\u4ee8\u6332\u98d2",
270 | "sai": "\u816e\u9cc3\u585e\u8d5b\u567b",
271 | "san": "\u4e09\u53c1\u4f1e\u6563\u5f61\u9993\u6c35\u6bf5\u7cc1\u9730",
272 | "sang": "\u6851\u55d3\u4e27\u6421\u78c9\u98a1",
273 | "sao": "\u6414\u9a9a\u626b\u5ac2\u57fd\u81ca\u7619\u9ccb",
274 | "se": "\u745f\u8272\u6da9\u556c\u94e9\u94ef\u7a51",
275 | "sen": "\u68ee",
276 | "seng": "\u50e7",
277 | "sha": "\u838e\u7802\u6740\u5239\u6c99\u7eb1\u50bb\u5565\u715e\u810e\u6b43\u75e7\u88df\u970e\u9ca8",
278 | "shai": "\u7b5b\u6652\u917e",
279 | "shan": "\u73ca\u82eb\u6749\u5c71\u5220\u717d\u886b\u95ea\u9655\u64c5\u8d61\u81b3\u5584\u6c55\u6247\u7f2e\u5261\u8baa\u912f\u57cf\u829f\u6f78\u59d7\u9a9f\u81bb\u9490\u759d\u87ee\u8222\u8dda\u9cdd",
280 | "shang": "\u5892\u4f24\u5546\u8d4f\u664c\u4e0a\u5c1a\u88f3\u57a7\u7ef1\u6b87\u71b5\u89de",
281 | "shao": "\u68a2\u634e\u7a0d\u70e7\u828d\u52fa\u97f6\u5c11\u54e8\u90b5\u7ecd\u52ad\u82d5\u6f72\u86f8\u7b24\u7b72\u8244",
282 | "she": "\u5962\u8d4a\u86c7\u820c\u820d\u8d66\u6444\u5c04\u6151\u6d89\u793e\u8bbe\u538d\u4f58\u731e\u7572\u9e9d",
283 | "shen": "\u7837\u7533\u547b\u4f38\u8eab\u6df1\u5a20\u7ec5\u795e\u6c88\u5ba1\u5a76\u751a\u80be\u614e\u6e17\u8bdc\u8c02\u5432\u54c2\u6e16\u6939\u77e7\u8703",
284 | "sheng": "\u58f0\u751f\u7525\u7272\u5347\u7ef3\u7701\u76db\u5269\u80dc\u5723\u4e1e\u6e11\u5ab5\u771a\u7b19",
285 | "shi": "\u5e08\u5931\u72ee\u65bd\u6e7f\u8bd7\u5c38\u8671\u5341\u77f3\u62fe\u65f6\u4ec0\u98df\u8680\u5b9e\u8bc6\u53f2\u77e2\u4f7f\u5c4e\u9a76\u59cb\u5f0f\u793a\u58eb\u4e16\u67ff\u4e8b\u62ed\u8a93\u901d\u52bf\u662f\u55dc\u566c\u9002\u4ed5\u4f8d\u91ca\u9970\u6c0f\u5e02\u6043\u5ba4\u89c6\u8bd5\u8c25\u57d8\u83b3\u84cd\u5f11\u5511\u9963\u8f7c\u8006\u8d33\u70bb\u793b\u94c8\u94ca\u87ab\u8210\u7b6e\u8c55\u9ca5\u9cba",
286 | "shou": "\u6536\u624b\u9996\u5b88\u5bff\u6388\u552e\u53d7\u7626\u517d\u624c\u72e9\u7ef6\u824f",
287 | "shu": "\u852c\u67a2\u68b3\u6b8a\u6292\u8f93\u53d4\u8212\u6dd1\u758f\u4e66\u8d4e\u5b70\u719f\u85af\u6691\u66d9\u7f72\u8700\u9ecd\u9f20\u5c5e\u672f\u8ff0\u6811\u675f\u620d\u7ad6\u5885\u5eb6\u6570\u6f31\u6055\u500f\u587e\u83fd\u5fc4\u6cad\u6d91\u6f8d\u59dd\u7ebe\u6bf9\u8167\u6bb3\u956f\u79eb\u9e6c",
288 | "shua": "\u5237\u800d\u5530\u6dae",
289 | "shuai": "\u6454\u8870\u7529\u5e05\u87c0",
290 | "shuan": "\u6813\u62f4\u95e9",
291 | "shuang": "\u971c\u53cc\u723d\u5b40",
292 | "shui": "\u8c01\u6c34\u7761\u7a0e",
293 | "shun": "\u542e\u77ac\u987a\u821c\u6042",
294 | "shuo": "\u8bf4\u7855\u6714\u70c1\u84b4\u6420\u55cd\u6fef\u5981\u69ca\u94c4",
295 | "si": "\u65af\u6495\u5636\u601d\u79c1\u53f8\u4e1d\u6b7b\u8086\u5bfa\u55e3\u56db\u4f3a\u4f3c\u9972\u5df3\u53ae\u4fdf\u5155\u83e5\u549d\u6c5c\u6cd7\u6f8c\u59d2\u9a77\u7f0c\u7940\u7960\u9536\u9e36\u801c\u86f3\u7b25",
296 | "song": "\u677e\u8038\u6002\u9882\u9001\u5b8b\u8bbc\u8bf5\u51c7\u83d8\u5d27\u5d69\u5fea\u609a\u6dde\u7ae6",
297 | "sou": "\u641c\u8258\u64de\u55fd\u53df\u55d6\u55fe\u998a\u6eb2\u98d5\u778d\u953c\u878b",
298 | "su": "\u82cf\u9165\u4fd7\u7d20\u901f\u7c9f\u50f3\u5851\u6eaf\u5bbf\u8bc9\u8083\u5919\u8c21\u850c\u55c9\u612b\u7c0c\u89eb\u7a23",
299 | "suan": "\u9178\u849c\u7b97",
300 | "sui": "\u867d\u968b\u968f\u7ee5\u9ad3\u788e\u5c81\u7a57\u9042\u96a7\u795f\u84d1\u51ab\u8c07\u6fc9\u9083\u71e7\u772d\u7762",
301 | "sun": "\u5b59\u635f\u7b0b\u836a\u72f2\u98e7\u69ab\u8de3\u96bc",
302 | "suo": "\u68ad\u5506\u7f29\u7410\u7d22\u9501\u6240\u5522\u55e6\u5a11\u686b\u7743\u7fa7",
303 | "ta": "\u584c\u4ed6\u5b83\u5979\u5854\u736d\u631e\u8e4b\u8e0f\u95fc\u6ebb\u9062\u69bb\u6c93",
304 | "tai": "\u80ce\u82d4\u62ac\u53f0\u6cf0\u915e\u592a\u6001\u6c70\u90b0\u85b9\u80bd\u70b1\u949b\u8dc6\u9c90",
305 | "tan": "\u574d\u644a\u8d2a\u762b\u6ee9\u575b\u6a80\u75f0\u6f6d\u8c2d\u8c08\u5766\u6bef\u8892\u78b3\u63a2\u53f9\u70ad\u90ef\u8548\u6619\u94bd\u952c\u8983",
306 | "tang": "\u6c64\u5858\u642a\u5802\u68e0\u819b\u5510\u7cd6\u50a5\u9967\u6e8f\u746d\u94f4\u9557\u8025\u8797\u87b3\u7fb0\u91a3",
307 | "thang": "\u5018\u8eba\u6dcc",
308 | "theng": "\u8d9f\u70eb",
309 | "tao": "\u638f\u6d9b\u6ed4\u7ee6\u8404\u6843\u9003\u6dd8\u9676\u8ba8\u5957\u6311\u9f17\u5555\u97ec\u9955",
310 | "te": "\u7279",
311 | "teng": "\u85e4\u817e\u75bc\u8a8a\u6ed5",
312 | "ti": "\u68af\u5254\u8e22\u9511\u63d0\u9898\u8e44\u557c\u4f53\u66ff\u568f\u60d5\u6d95\u5243\u5c49\u8351\u608c\u9016\u7ee8\u7f07\u9e48\u88fc\u918d",
313 | "tian": "\u5929\u6dfb\u586b\u7530\u751c\u606c\u8214\u8146\u63ad\u5fdd\u9617\u6b84\u754b\u94bf\u86ba",
314 | "tiao": "\u6761\u8fe2\u773a\u8df3\u4f7b\u7967\u94eb\u7a95\u9f86\u9ca6",
315 | "tie": "\u8d34\u94c1\u5e16\u841c\u992e",
316 | "ting": "\u5385\u542c\u70c3\u6c40\u5ef7\u505c\u4ead\u5ead\u633a\u8247\u839b\u8476\u5a77\u6883\u8713\u9706",
317 | "tong": "\u901a\u6850\u916e\u77b3\u540c\u94dc\u5f64\u7ae5\u6876\u6345\u7b52\u7edf\u75db\u4f5f\u50ee\u4edd\u833c\u55f5\u6078\u6f7c\u783c",
318 | "tou": "\u5077\u6295\u5934\u900f\u4ea0",
319 | "tu": "\u51f8\u79c3\u7a81\u56fe\u5f92\u9014\u6d82\u5c60\u571f\u5410\u5154\u580d\u837c\u83df\u948d\u9174",
320 | "tuan": "\u6e4d\u56e2\u7583",
321 | "tui": "\u63a8\u9893\u817f\u8715\u892a\u9000\u5fd2\u717a",
322 | "tun": "\u541e\u5c6f\u81c0\u9968\u66be\u8c5a\u7a80",
323 | "tuo": "\u62d6\u6258\u8131\u9e35\u9640\u9a6e\u9a7c\u692d\u59a5\u62d3\u553e\u4e47\u4f57\u5768\u5eb9\u6cb1\u67dd\u7823\u7ba8\u8204\u8dce\u9f0d",
324 | "wa": "\u6316\u54c7\u86d9\u6d3c\u5a03\u74e6\u889c\u4f64\u5a32\u817d",
325 | "wai": "\u6b6a\u5916",
326 | "wan": "\u8c4c\u5f2f\u6e7e\u73a9\u987d\u4e38\u70f7\u5b8c\u7897\u633d\u665a\u7696\u60cb\u5b9b\u5a49\u4e07\u8155\u525c\u8284\u82cb\u83c0\u7ea8\u7efe\u742c\u8118\u7579\u873f\u7ba2",
327 | "wang": "\u6c6a\u738b\u4ea1\u6789\u7f51\u5f80\u65fa\u671b\u5fd8\u5984\u7f54\u5c22\u60d8\u8f8b\u9b4d",
328 | "wei": "\u5a01\u5dcd\u5fae\u5371\u97e6\u8fdd\u6845\u56f4\u552f\u60df\u4e3a\u6f4d\u7ef4\u82c7\u840e\u59d4\u4f1f\u4f2a\u5c3e\u7eac\u672a\u851a\u5473\u754f\u80c3\u5582\u9b4f\u4f4d\u6e2d\u8c13\u5c09\u6170\u536b\u502d\u504e\u8bff\u9688\u8473\u8587\u5e0f\u5e37\u5d34\u5d6c\u7325\u732c\u95f1\u6ca9\u6d27\u6da0\u9036\u5a13\u73ae\u97ea\u8ece\u709c\u7168\u71a8\u75ff\u8249\u9c94",
329 | "wen": "\u761f\u6e29\u868a\u6587\u95fb\u7eb9\u543b\u7a33\u7d0a\u95ee\u520e\u6120\u960c\u6c76\u74ba\u97eb\u6b81\u96ef",
330 | "weng": "\u55e1\u7fc1\u74ee\u84ca\u8579",
331 | "wo": "\u631d\u8717\u6da1\u7a9d\u6211\u65a1\u5367\u63e1\u6c83\u83b4\u5e44\u6e25\u674c\u809f\u9f8c",
332 | "wu": "\u5deb\u545c\u94a8\u4e4c\u6c61\u8bec\u5c4b\u65e0\u829c\u68a7\u543e\u5434\u6bcb\u6b66\u4e94\u6342\u5348\u821e\u4f0d\u4fae\u575e\u620a\u96fe\u6664\u7269\u52ff\u52a1\u609f\u8bef\u5140\u4ef5\u9622\u90ac\u572c\u82b4\u5e91\u6003\u5fe4\u6d6f\u5be4\u8fd5\u59a9\u9a9b\u727e\u7110\u9e49\u9e5c\u8708\u92c8\u9f2f",
333 | "xi": "\u6614\u7199\u6790\u897f\u7852\u77fd\u6670\u563b\u5438\u9521\u727a\u7a00\u606f\u5e0c\u6089\u819d\u5915\u60dc\u7184\u70ef\u6eaa\u6c50\u7280\u6a84\u88ad\u5e2d\u4e60\u5ab3\u559c\u94e3\u6d17\u7cfb\u9699\u620f\u7ec6\u50d6\u516e\u96b0\u90d7\u831c\u8478\u84f0\u595a\u550f\u5f99\u9969\u960b\u6d60\u6dc5\u5c63\u5b09\u73ba\u6a28\u66e6\u89cb\u6b37\u71b9\u798a\u79a7\u94b8\u7699\u7a78\u8725\u87cb\u823e\u7fb2\u7c9e\u7fd5\u91af\u9f37",
334 | "xia": "\u778e\u867e\u5323\u971e\u8f96\u6687\u5ce1\u4fa0\u72ed\u4e0b\u53a6\u590f\u5413\u6380\u846d\u55c4\u72ce\u9050\u7455\u7856\u7615\u7f45\u9ee0",
335 | "xian": "\u9528\u5148\u4ed9\u9c9c\u7ea4\u54b8\u8d24\u8854\u8237\u95f2\u6d8e\u5f26\u5acc\u663e\u9669\u73b0\u732e\u53bf\u817a\u9985\u7fa1\u5baa\u9677\u9650\u7ebf\u51bc\u85d3\u5c98\u7303\u66b9\u5a34\u6c19\u7946\u9e47\u75eb\u86ac\u7b45\u7c7c\u9170\u8df9",
336 | "xiang": "\u76f8\u53a2\u9576\u9999\u7bb1\u8944\u6e58\u4e61\u7fd4\u7965\u8be6\u60f3\u54cd\u4eab\u9879\u5df7\u6a61\u50cf\u5411\u8c61\u8297\u8459\u9977\u5ea0\u9aa7\u7f03\u87d3\u9c9e\u98e8",
337 | "xiao": "\u8427\u785d\u9704\u524a\u54ee\u56a3\u9500\u6d88\u5bb5\u6dc6\u6653\u5c0f\u5b5d\u6821\u8096\u5578\u7b11\u6548\u54d3\u54bb\u5d24\u6f47\u900d\u9a81\u7ee1\u67ad\u67b5\u7b71\u7bab\u9b48",
338 | "xie": "\u6954\u4e9b\u6b47\u874e\u978b\u534f\u631f\u643a\u90aa\u659c\u80c1\u8c10\u5199\u68b0\u5378\u87f9\u61c8\u6cc4\u6cfb\u8c22\u5c51\u5055\u4eb5\u52f0\u71ee\u85a4\u64b7\u5ee8\u7023\u9082\u7ec1\u7f2c\u69ad\u698d\u6b59\u8e9e",
339 | "xin": "\u85aa\u82af\u950c\u6b23\u8f9b\u65b0\u5ffb\u5fc3\u4fe1\u8845\u56df\u99a8\u8398\u6b46\u94fd\u946b",
340 | "xing": "\u661f\u8165\u7329\u60fa\u5174\u5211\u578b\u5f62\u90a2\u884c\u9192\u5e78\u674f\u6027\u59d3\u9649\u8347\u8365\u64e4\u60bb\u784e",
341 | "xiong": "\u5144\u51f6\u80f8\u5308\u6c79\u96c4\u718a\u828e",
342 | "xiu": "\u4f11\u4fee\u7f9e\u673d\u55c5\u9508\u79c0\u8896\u7ee3\u83a0\u5cab\u9990\u5ea5\u9e3a\u8c85\u9af9",
343 | "xu": "\u589f\u620c\u9700\u865a\u5618\u987b\u5f90\u8bb8\u84c4\u9157\u53d9\u65ed\u5e8f\u755c\u6064\u7d6e\u5a7f\u7eea\u7eed\u8bb4\u8be9\u5729\u84ff\u6035\u6d2b\u6e86\u987c\u6829\u7166\u7809\u76f1\u80e5\u7cc8\u9191",
344 | "xuan": "\u8f69\u55a7\u5ba3\u60ac\u65cb\u7384\u9009\u7663\u7729\u7eda\u5107\u8c16\u8431\u63ce\u9994\u6ceb\u6d35\u6e32\u6f29\u7487\u6966\u6684\u70ab\u714a\u78b9\u94c9\u955f\u75c3",
345 | "xue": "\u9774\u859b\u5b66\u7a74\u96ea\u8840\u5671\u6cf6\u9cd5",
346 | "xun": "\u52cb\u718f\u5faa\u65ec\u8be2\u5bfb\u9a6f\u5de1\u6b89\u6c5b\u8bad\u8baf\u900a\u8fc5\u5dfd\u57d9\u8340\u85b0\u5ccb\u5f87\u6d54\u66db\u7aa8\u91ba\u9c9f",
347 | "ya": "\u538b\u62bc\u9e26\u9e2d\u5440\u4e2b\u82bd\u7259\u869c\u5d16\u8859\u6daf\u96c5\u54d1\u4e9a\u8bb6\u4f22\u63e0\u5416\u5c88\u8fd3\u5a05\u740a\u6860\u6c29\u7811\u775a\u75d6",
348 | "yan": "\u7109\u54bd\u9609\u70df\u6df9\u76d0\u4e25\u7814\u8712\u5ca9\u5ef6\u8a00\u989c\u960e\u708e\u6cbf\u5944\u63a9\u773c\u884d\u6f14\u8273\u5830\u71d5\u538c\u781a\u96c1\u5501\u5f66\u7130\u5bb4\u8c1a\u9a8c\u53a3\u9765\u8d5d\u4fe8\u5043\u5156\u8ba0\u8c33\u90fe\u9122\u82ab\u83f8\u5d26\u6079\u95eb\u960f\u6d07\u6e6e\u6edf\u598d\u5ae3\u7430\u664f\u80ed\u814c\u7131\u7f68\u7b75\u917d\u9b47\u990d\u9f39",
349 | "yang": "\u6b83\u592e\u9e2f\u79e7\u6768\u626c\u4f6f\u75a1\u7f8a\u6d0b\u9633\u6c27\u4ef0\u75d2\u517b\u6837\u6f3e\u5f89\u600f\u6cf1\u7080\u70ca\u6059\u86d8\u9785",
350 | "yao": "\u9080\u8170\u5996\u7476\u6447\u5c27\u9065\u7a91\u8c23\u59da\u54ac\u8200\u836f\u8981\u8000\u592d\u723b\u5406\u5d3e\u5fad\u7039\u5e7a\u73e7\u6773\u66dc\u80b4\u9e5e\u7a88\u7e47\u9cd0",
351 | "ye": "\u6930\u564e\u8036\u7237\u91ce\u51b6\u4e5f\u9875\u6396\u4e1a\u53f6\u66f3\u814b\u591c\u6db2\u8c12\u90ba\u63f6\u9980\u6654\u70e8\u94d8",
352 | "yi": "\u4e00\u58f9\u533b\u63d6\u94f1\u4f9d\u4f0a\u8863\u9890\u5937\u9057\u79fb\u4eea\u80f0\u7591\u6c82\u5b9c\u59e8\u5f5d\u6905\u8681\u501a\u5df2\u4e59\u77e3\u4ee5\u827a\u6291\u6613\u9091\u5c79\u4ebf\u5f79\u81c6\u9038\u8084\u75ab\u4ea6\u88d4\u610f\u6bc5\u5fc6\u4e49\u76ca\u6ea2\u8be3\u8bae\u8c0a\u8bd1\u5f02\u7ffc\u7fcc\u7ece\u5208\u5293\u4f7e\u8bd2\u572a\u572f\u57f8\u61ff\u82e1\u858f\u5f08\u5955\u6339\u5f0b\u5453\u54a6\u54bf\u566b\u5cc4\u5db7\u7317\u9974\u603f\u6021\u6092\u6f2a\u8fe4\u9a7f\u7f22\u6baa\u8d3b\u65d6\u71a0\u9487\u9552\u9571\u75cd\u7617\u7654\u7fca\u8864\u8734\u8223\u7fbf\u7ff3\u914f\u9edf",
353 | "yin": "\u8335\u836b\u56e0\u6bb7\u97f3\u9634\u59fb\u541f\u94f6\u6deb\u5bc5\u996e\u5c39\u5f15\u9690\u5370\u80e4\u911e\u5819\u831a\u5591\u72fa\u5924\u6c24\u94df\u763e\u8693\u972a\u9f88",
354 | "ying": "\u82f1\u6a31\u5a74\u9e70\u5e94\u7f28\u83b9\u8424\u8425\u8367\u8747\u8fce\u8d62\u76c8\u5f71\u9896\u786c\u6620\u5b34\u90e2\u8314\u83ba\u8426\u6484\u5624\u81ba\u6ee2\u6f46\u701b\u745b\u748e\u6979\u9e66\u763f\u988d\u7f42",
355 | "yo": "\u54df\u5537",
356 | "yong": "\u62e5\u4f63\u81c3\u75c8\u5eb8\u96cd\u8e0a\u86f9\u548f\u6cf3\u6d8c\u6c38\u607f\u52c7\u7528\u4fd1\u58c5\u5889\u6175\u9095\u955b\u752c\u9cd9\u9954",
357 | "you": "\u5e7d\u4f18\u60a0\u5fe7\u5c24\u7531\u90ae\u94c0\u72b9\u6cb9\u6e38\u9149\u6709\u53cb\u53f3\u4f51\u91c9\u8bf1\u53c8\u5e7c\u5363\u6538\u4f91\u83b8\u5466\u56ff\u5ba5\u67da\u7337\u7256\u94d5\u75a3\u8763\u9c7f\u9edd\u9f2c",
358 | "yu": "\u8fc2\u6de4\u4e8e\u76c2\u6986\u865e\u611a\u8206\u4f59\u4fde\u903e\u9c7c\u6109\u6e1d\u6e14\u9685\u4e88\u5a31\u96e8\u4e0e\u5c7f\u79b9\u5b87\u8bed\u7fbd\u7389\u57df\u828b\u90c1\u5401\u9047\u55bb\u5cea\u5fa1\u6108\u6b32\u72f1\u80b2\u8a89\u6d74\u5bd3\u88d5\u9884\u8c6b\u9a6d\u79ba\u6bd3\u4f1b\u4fe3\u8c00\u8c15\u8438\u84e3\u63c4\u5581\u5704\u5709\u5d5b\u72f3\u996b\u5ebe\u9608\u59aa\u59a4\u7ea1\u745c\u6631\u89ce\u8174\u6b24\u65bc\u715c\u71e0\u807f\u94b0\u9e46\u7610\u7600\u7ab3\u8753\u7afd\u8201\u96e9\u9f89",
359 | "yuan": "\u9e33\u6e0a\u51a4\u5143\u57a3\u8881\u539f\u63f4\u8f95\u56ed\u5458\u5706\u733f\u6e90\u7f18\u8fdc\u82d1\u613f\u6028\u9662\u586c\u6c85\u5a9b\u7457\u6a7c\u7230\u7722\u9e22\u8788\u9f0b",
360 | "yue": "\u66f0\u7ea6\u8d8a\u8dc3\u94a5\u5cb3\u7ca4\u6708\u60a6\u9605\u9fa0\u6a3e\u5216\u94ba",
361 | "yun": "\u8018\u4e91\u90e7\u5300\u9668\u5141\u8fd0\u8574\u915d\u6655\u97f5\u5b55\u90d3\u82b8\u72c1\u607d\u7ead\u6b92\u6600\u6c32",
362 | "za": "\u531d\u7838\u6742\u62f6\u5482",
363 | "zai": "\u683d\u54c9\u707e\u5bb0\u8f7d\u518d\u5728\u54b1\u5d3d\u753e",
364 | "zan": "\u6512\u6682\u8d5e\u74d2\u661d\u7c2a\u7ccc\u8db1\u933e",
365 | "zang": "\u8d43\u810f\u846c\u5958\u6215\u81e7",
366 | "zao": "\u906d\u7cdf\u51ff\u85fb\u67a3\u65e9\u6fa1\u86a4\u8e81\u566a\u9020\u7682\u7076\u71e5\u5523\u7f2b",
367 | "ze": "\u8d23\u62e9\u5219\u6cfd\u4ec4\u8d5c\u5567\u8fee\u6603\u7b2e\u7ba6\u8234",
368 | "zei": "\u8d3c",
369 | "zen": "\u600e\u8c2e",
370 | "zeng": "\u589e\u618e\u66fe\u8d60\u7f2f\u7511\u7f7e\u9503",
371 | "zha": "\u624e\u55b3\u6e23\u672d\u8f67\u94e1\u95f8\u7728\u6805\u69a8\u548b\u4e4d\u70b8\u8bc8\u63f8\u5412\u54a4\u54f3\u600d\u781f\u75c4\u86b1\u9f44",
372 | "zhai": "\u6458\u658b\u5b85\u7a84\u503a\u5be8\u7826",
373 | "zhan": "\u77bb\u6be1\u8a79\u7c98\u6cbe\u76cf\u65a9\u8f97\u5d2d\u5c55\u8638\u6808\u5360\u6218\u7ad9\u6e5b\u7efd\u8c35\u640c\u65c3",
374 | "zhang": "\u6a1f\u7ae0\u5f70\u6f33\u5f20\u638c\u6da8\u6756\u4e08\u5e10\u8d26\u4ed7\u80c0\u7634\u969c\u4ec9\u9123\u5e5b\u5d82\u7350\u5adc\u748b\u87d1",
375 | "zhao": "\u62db\u662d\u627e\u6cbc\u8d75\u7167\u7f69\u5146\u8087\u53ec\u722a\u8bcf\u68f9\u948a\u7b0a",
376 | "zhe": "\u906e\u6298\u54f2\u86f0\u8f99\u8005\u9517\u8517\u8fd9\u6d59\u8c2a\u966c\u67d8\u8f84\u78d4\u9e67\u891a\u8707\u8d6d",
377 | "zhen": "\u73cd\u659f\u771f\u7504\u7827\u81fb\u8d1e\u9488\u4fa6\u6795\u75b9\u8bca\u9707\u632f\u9547\u9635\u7f1c\u6862\u699b\u8f78\u8d48\u80d7\u6715\u796f\u755b\u9e29",
378 | "zheng": "\u84b8\u6323\u7741\u5f81\u72f0\u4e89\u6014\u6574\u62ef\u6b63\u653f\u5e27\u75c7\u90d1\u8bc1\u8be4\u5ce5\u94b2\u94ee\u7b5d",
379 | "zhi": "\u829d\u679d\u652f\u5431\u8718\u77e5\u80a2\u8102\u6c41\u4e4b\u7ec7\u804c\u76f4\u690d\u6b96\u6267\u503c\u4f84\u5740\u6307\u6b62\u8dbe\u53ea\u65e8\u7eb8\u5fd7\u631a\u63b7\u81f3\u81f4\u7f6e\u5e1c\u5cd9\u5236\u667a\u79e9\u7a1a\u8d28\u7099\u75d4\u6ede\u6cbb\u7a92\u536e\u965f\u90c5\u57f4\u82b7\u646d\u5e19\u5fee\u5f58\u54ab\u9a98\u6809\u67b3\u6800\u684e\u8f75\u8f7e\u6534\u8d3d\u81a3\u7949\u7957\u9ef9\u96c9\u9e37\u75e3\u86ed\u7d77\u916f\u8dd6\u8e2c\u8e2f\u8c78\u89ef",
380 | "zhong": "\u4e2d\u76c5\u5fe0\u949f\u8877\u7ec8\u79cd\u80bf\u91cd\u4ef2\u4f17\u51a2\u953a\u87bd\u8202\u822f\u8e35",
381 | "zhou": "\u821f\u5468\u5dde\u6d32\u8bcc\u7ca5\u8f74\u8098\u5e1a\u5492\u76b1\u5b99\u663c\u9aa4\u5544\u7740\u501c\u8bf9\u836e\u9b3b\u7ea3\u80c4\u78a1\u7c40\u8233\u914e\u9cb7",
382 | "zhu": "\u73e0\u682a\u86db\u6731\u732a\u8bf8\u8bdb\u9010\u7af9\u70db\u716e\u62c4\u77a9\u5631\u4e3b\u8457\u67f1\u52a9\u86c0\u8d2e\u94f8\u7b51\u4f4f\u6ce8\u795d\u9a7b\u4f2b\u4f8f\u90be\u82ce\u8331\u6d19\u6e1a\u6f74\u9a7a\u677c\u69e0\u6a65\u70b7\u94e2\u75b0\u7603\u86b0\u7afa\u7bb8\u7fe5\u8e85\u9e88",
383 | "zhua": "\u6293",
384 | "zhuai": "\u62fd",
385 | "zhuan": "\u4e13\u7816\u8f6c\u64b0\u8d5a\u7bc6\u629f\u556d\u989b",
386 | "zhuang": "\u6869\u5e84\u88c5\u5986\u649e\u58ee\u72b6\u4e2c",
387 | "zhui": "\u690e\u9525\u8ffd\u8d58\u5760\u7f00\u8411\u9a93\u7f12",
388 | "zhun": "\u8c06\u51c6",
389 | "zhuo": "\u6349\u62d9\u5353\u684c\u7422\u8301\u914c\u707c\u6d4a\u502c\u8bfc\u5ef4\u855e\u64e2\u555c\u6d5e\u6dbf\u6753\u712f\u799a\u65ab",
390 | "zi": "\u5179\u54a8\u8d44\u59ff\u6ecb\u6dc4\u5b5c\u7d2b\u4ed4\u7c7d\u6ed3\u5b50\u81ea\u6e0d\u5b57\u8c18\u5d6b\u59ca\u5b73\u7f01\u6893\u8f8e\u8d40\u6063\u7726\u9531\u79ed\u8014\u7b2b\u7ca2\u89dc\u8a3e\u9cbb\u9aed",
391 | "zong": "\u9b03\u68d5\u8e2a\u5b97\u7efc\u603b\u7eb5\u8159\u7cbd",
392 | "zou": "\u90b9\u8d70\u594f\u63cd\u9139\u9cb0",
393 | "zu": "\u79df\u8db3\u5352\u65cf\u7956\u8bc5\u963b\u7ec4\u4fce\u83f9\u5550\u5f82\u9a75\u8e74",
394 | "zuan": "\u94bb\u7e82\u6525\u7f35",
395 | "zui": "\u5634\u9189\u6700\u7f6a",
396 | "zun": "\u5c0a\u9075\u6499\u6a3d\u9cdf",
397 | "zuo": "\u6628\u5de6\u4f50\u67de\u505a\u4f5c\u5750\u5ea7\u961d\u963c\u80d9\u795a\u9162",
398 | "cou": "\u85ae\u6971\u8f8f\u8160",
399 | "nang": "\u652e\u54dd\u56d4\u9995\u66e9",
400 | "o": "\u5594",
401 | "dia": "\u55f2",
402 | "chuai": "\u562c\u81aa\u8e39",
403 | "cen": "\u5c91\u6d94",
404 | "diu": "\u94e5",
405 | "nou": "\u8028",
406 | "fou": "\u7f36",
407 | "bia": "\u9adf"
408 | };
409 |
410 | /**
411 | * 判断中英文
412 | */
413 | function isChinese(str) {
414 | var entryVal = str;
415 | var cnChar = entryVal.match(/[^\x00-\x80]/g);
416 | if (cnChar != null && cnChar.length > 0)
417 | return true;
418 | return false;
419 | }
420 |
421 | /**
422 | * 搜索
423 | */
424 | function arraySearch(str) {
425 | for (var name in pinYin) {
426 | if (pinYin[name].indexOf(str) !== -1) {
427 | return name;
428 | }
429 | }
430 | return false;
431 | }
432 |
433 | /**
434 | * 获取拼音的字符串
435 | */
436 | function getPinYinFirst(str, uppercase) {
437 | let result = "";
438 | for (let i = 0; i < str.length; i++) {
439 | var val = str.substr(i, 1);
440 | if (isChinese(val)) {
441 | if (new RegExp('[a-zA-Z0-9\- ]').test(val)) {
442 | result += val;
443 | } else {
444 | var name = arraySearch(val);
445 | if (name) {
446 | result += name.slice(0, 1);
447 | }
448 | }
449 | } else {
450 | result += val;
451 | }
452 | }
453 | if (uppercase) {
454 | result = result.toUpperCase()
455 | }
456 | return result;
457 | }
458 |
459 | export default getPinYinFirst
460 |
--------------------------------------------------------------------------------