rsshub 1.0.0-master.ffe7305 → 1.0.0-master.ffff545
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rsshub might be problematic. Click here for more details.
- package/README.md +26 -40
 - package/lib/api/index.ts +31 -0
 - package/lib/api/namespace/all.ts +17 -0
 - package/lib/api/namespace/one.ts +33 -0
 - package/lib/api/radar/rules/all.ts +59 -0
 - package/lib/api/radar/rules/one.ts +75 -0
 - package/lib/app.test.ts +11 -0
 - package/lib/app.tsx +55 -0
 - package/lib/assets/logo.png +0 -0
 - package/lib/config.test.ts +99 -0
 - package/lib/config.ts +708 -0
 - package/lib/errors/index.test.ts +88 -0
 - package/lib/errors/index.tsx +74 -0
 - package/lib/errors/types/config-not-found.ts +5 -0
 - package/lib/errors/types/invalid-parameter.ts +5 -0
 - package/lib/errors/types/not-found.ts +5 -0
 - package/lib/errors/types/reject.ts +5 -0
 - package/lib/errors/types/request-in-progress.ts +5 -0
 - package/lib/index.ts +25 -0
 - package/lib/middleware/access-control.test.ts +47 -0
 - package/lib/middleware/access-control.ts +25 -0
 - package/lib/middleware/anti-hotlink.test.ts +255 -0
 - package/lib/middleware/anti-hotlink.ts +139 -0
 - package/lib/middleware/cache.test.ts +189 -0
 - package/lib/middleware/cache.ts +76 -0
 - package/lib/middleware/debug.test.ts +40 -0
 - package/lib/middleware/debug.ts +37 -0
 - package/lib/middleware/filter-engine.test.ts +39 -0
 - package/lib/middleware/header.test.ts +39 -0
 - package/lib/middleware/header.ts +48 -0
 - package/lib/middleware/logger.ts +40 -0
 - package/lib/middleware/parameter.test.ts +445 -0
 - package/lib/middleware/parameter.ts +393 -0
 - package/lib/middleware/sentry.ts +27 -0
 - package/lib/middleware/template.test.ts +111 -0
 - package/lib/middleware/template.tsx +112 -0
 - package/lib/pkg.test.ts +68 -0
 - package/lib/pkg.ts +21 -0
 - package/lib/registry.test.ts +32 -0
 - package/lib/registry.ts +110 -0
 - package/lib/router.js +125 -2382
 - package/lib/routes/005/index.ts +156 -0
 - package/lib/routes/005/namespace.ts +8 -0
 - package/lib/routes/005/templates/description.art +27 -0
 - package/lib/routes/0818tuan/index.ts +70 -0
 - package/lib/routes/0818tuan/namespace.ts +6 -0
 - package/lib/routes/0x80/index.ts +87 -0
 - package/lib/routes/0x80/namespace.ts +7 -0
 - package/lib/routes/12306/index.ts +132 -0
 - package/lib/routes/12306/namespace.ts +6 -0
 - package/lib/routes/12306/zxdt.ts +85 -0
 - package/lib/routes/12371/namespace.ts +7 -0
 - package/lib/routes/12371/zxfb.ts +64 -0
 - package/lib/routes/141jav/index.ts +117 -0
 - package/lib/routes/141jav/namespace.ts +9 -0
 - package/lib/routes/141jav/templates/description.art +47 -0
 - package/lib/routes/141ppv/index.ts +120 -0
 - package/lib/routes/141ppv/namespace.ts +9 -0
 - package/lib/routes/141ppv/templates/description.art +47 -0
 - package/lib/routes/163/ds.ts +60 -0
 - package/lib/routes/163/dy.ts +51 -0
 - package/lib/routes/163/dy2.ts +60 -0
 - package/lib/routes/163/exclusive.ts +194 -0
 - package/lib/routes/163/music/artist-songs.ts +61 -0
 - package/lib/routes/163/music/artist.ts +61 -0
 - package/lib/routes/163/music/djradio.ts +100 -0
 - package/lib/routes/163/music/playlist.ts +76 -0
 - package/lib/routes/163/music/userevents.ts +64 -0
 - package/lib/routes/163/music/userplaylist.ts +78 -0
 - package/lib/routes/163/music/userplayrecords.ts +83 -0
 - package/lib/routes/163/namespace.ts +9 -0
 - package/lib/routes/163/news/rank.ts +193 -0
 - package/lib/routes/163/news/special.ts +138 -0
 - package/lib/routes/163/open/vip.ts +92 -0
 - package/lib/routes/163/renjian.ts +105 -0
 - package/lib/routes/163/today.ts +85 -0
 - package/lib/routes/163/utils.ts +40 -0
 - package/lib/routes/18comic/album.ts +107 -0
 - package/lib/routes/18comic/blogs.ts +97 -0
 - package/lib/routes/18comic/index.ts +61 -0
 - package/lib/routes/18comic/namespace.ts +9 -0
 - package/lib/routes/18comic/search.ts +50 -0
 - package/lib/routes/18comic/templates/description.art +12 -0
 - package/lib/routes/18comic/utils.ts +88 -0
 - package/lib/routes/19lou/index.ts +114 -0
 - package/lib/routes/19lou/namespace.ts +6 -0
 - package/lib/routes/1lou/index.ts +147 -0
 - package/lib/routes/1lou/namespace.ts +8 -0
 - package/lib/routes/1point3acres/blog.ts +94 -0
 - package/lib/routes/1point3acres/category.ts +57 -0
 - package/lib/routes/1point3acres/namespace.ts +6 -0
 - package/lib/routes/1point3acres/offer.ts +106 -0
 - package/lib/routes/1point3acres/section.ts +77 -0
 - package/lib/routes/1point3acres/thread.ts +37 -0
 - package/lib/routes/1point3acres/user/post.ts +45 -0
 - package/lib/routes/1point3acres/user/thread.ts +45 -0
 - package/lib/routes/1point3acres/utils.ts +79 -0
 - package/lib/routes/1x/index.ts +121 -0
 - package/lib/routes/1x/namespace.ts +8 -0
 - package/lib/routes/1x/templates/description.art +17 -0
 - package/lib/routes/2023game/index.ts +69 -0
 - package/lib/routes/2023game/namespace.ts +6 -0
 - package/lib/routes/2048/index.ts +173 -0
 - package/lib/routes/2048/namespace.ts +6 -0
 - package/lib/routes/2cycd/index.ts +66 -0
 - package/lib/routes/2cycd/namespace.ts +6 -0
 - package/lib/routes/36kr/hot-list.ts +88 -0
 - package/lib/routes/36kr/index.ts +75 -0
 - package/lib/routes/36kr/namespace.ts +6 -0
 - package/lib/routes/36kr/utils.ts +35 -0
 - package/lib/routes/3dmgame/game.ts +49 -0
 - package/lib/routes/3dmgame/namespace.ts +6 -0
 - package/lib/routes/3dmgame/news-center.ts +70 -0
 - package/lib/routes/3dmgame/utils.ts +28 -0
 - package/lib/routes/3kns/index.ts +121 -0
 - package/lib/routes/3kns/namespace.ts +6 -0
 - package/lib/routes/3kns/templates/description.art +9 -0
 - package/lib/routes/423down/index.ts +280 -0
 - package/lib/routes/423down/namespace.ts +8 -0
 - package/lib/routes/423down/templates/description.art +21 -0
 - package/lib/routes/4gamers/category.ts +47 -0
 - package/lib/routes/4gamers/namespace.ts +6 -0
 - package/lib/routes/4gamers/tag.ts +49 -0
 - package/lib/routes/4gamers/templates/description.art +3 -0
 - package/lib/routes/4gamers/templates/image.art +3 -0
 - package/lib/routes/4gamers/topic.ts +48 -0
 - package/lib/routes/4gamers/utils.ts +71 -0
 - package/lib/routes/4ksj/forum.ts +196 -0
 - package/lib/routes/4ksj/namespace.ts +6 -0
 - package/lib/routes/4ksj/templates/description.art +59 -0
 - package/lib/routes/500px/namespace.ts +6 -0
 - package/lib/routes/500px/tribe-set.ts +43 -0
 - package/lib/routes/500px/utils.ts +116 -0
 - package/lib/routes/50forum/namespace.ts +6 -0
 - package/lib/routes/50forum/zhuanjia.ts +67 -0
 - package/lib/routes/51cto/namespace.ts +6 -0
 - package/lib/routes/51cto/recommend.ts +52 -0
 - package/lib/routes/51cto/utils.ts +21 -0
 - package/lib/routes/52hrtt/index.ts +79 -0
 - package/lib/routes/52hrtt/namespace.ts +6 -0
 - package/lib/routes/52hrtt/symposium.ts +89 -0
 - package/lib/routes/56kog/class.ts +37 -0
 - package/lib/routes/56kog/namespace.ts +6 -0
 - package/lib/routes/56kog/templates/description.art +32 -0
 - package/lib/routes/56kog/top.ts +33 -0
 - package/lib/routes/56kog/util.ts +111 -0
 - package/lib/routes/591/list.ts +170 -0
 - package/lib/routes/591/namespace.ts +6 -0
 - package/lib/routes/5eplay/index.ts +126 -0
 - package/lib/routes/5eplay/namespace.ts +6 -0
 - package/lib/routes/5eplay/utils.ts +32 -0
 - package/lib/routes/69shu/article.ts +96 -0
 - package/lib/routes/69shu/namespace.ts +6 -0
 - package/lib/routes/6park/index.ts +80 -0
 - package/lib/routes/6park/namespace.ts +6 -0
 - package/lib/routes/6park/news.ts +89 -0
 - package/lib/routes/6v123/latest-movies.ts +39 -0
 - package/lib/routes/6v123/latest-tvseries.ts +39 -0
 - package/lib/routes/6v123/namespace.ts +6 -0
 - package/lib/routes/6v123/utils.ts +86 -0
 - package/lib/routes/78dm/index.ts +87 -0
 - package/lib/routes/78dm/namespace.ts +6 -0
 - package/lib/routes/7mmtv/index.ts +122 -0
 - package/lib/routes/7mmtv/namespace.ts +6 -0
 - package/lib/routes/81/81rc/index.ts +108 -0
 - package/lib/routes/81/namespace.ts +8 -0
 - package/lib/routes/8264/list.ts +172 -0
 - package/lib/routes/8264/namespace.ts +6 -0
 - package/lib/routes/8264/templates/description.art +5 -0
 - package/lib/routes/8kcos/article.ts +24 -0
 - package/lib/routes/8kcos/cat.ts +38 -0
 - package/lib/routes/8kcos/const.ts +4 -0
 - package/lib/routes/8kcos/latest.ts +50 -0
 - package/lib/routes/8kcos/namespace.ts +6 -0
 - package/lib/routes/8kcos/tag.ts +49 -0
 - package/lib/routes/8world/index.ts +67 -0
 - package/lib/routes/8world/namespace.ts +6 -0
 - package/lib/routes/91porn/author.ts +90 -0
 - package/lib/routes/91porn/index.ts +93 -0
 - package/lib/routes/91porn/namespace.ts +9 -0
 - package/lib/routes/91porn/utils.ts +11 -0
 - package/lib/routes/95mm/category.ts +48 -0
 - package/lib/routes/95mm/namespace.ts +6 -0
 - package/lib/routes/95mm/tab.ts +36 -0
 - package/lib/routes/95mm/tag.ts +34 -0
 - package/lib/routes/95mm/utils.ts +63 -0
 - package/lib/routes/9to5/namespace.ts +6 -0
 - package/lib/routes/9to5/subsite.ts +79 -0
 - package/lib/routes/9to5/utils.ts +34 -0
 - package/lib/routes/a9vg/a9vg.ts +45 -0
 - package/lib/routes/a9vg/namespace.ts +6 -0
 - package/lib/routes/aamacau/index.ts +93 -0
 - package/lib/routes/aamacau/namespace.ts +6 -0
 - package/lib/routes/abc/index.ts +191 -0
 - package/lib/routes/abc/namespace.ts +6 -0
 - package/lib/routes/abc/templates/description.art +21 -0
 - package/lib/routes/abmedia/category.ts +58 -0
 - package/lib/routes/abmedia/index.ts +51 -0
 - package/lib/routes/abmedia/namespace.ts +6 -0
 - package/lib/routes/abskoop/index.ts +63 -0
 - package/lib/routes/abskoop/namespace.ts +6 -0
 - package/lib/routes/abskoop/nsfw.ts +46 -0
 - package/lib/routes/academia/namespace.ts +6 -0
 - package/lib/routes/academia/topics.ts +49 -0
 - package/lib/routes/accessbriefing/index.ts +217 -0
 - package/lib/routes/accessbriefing/namespace.ts +8 -0
 - package/lib/routes/accessbriefing/templates/description.art +27 -0
 - package/lib/routes/acfun/article.ts +132 -0
 - package/lib/routes/acfun/bangumi.ts +51 -0
 - package/lib/routes/acfun/namespace.ts +6 -0
 - package/lib/routes/acfun/video.ts +63 -0
 - package/lib/routes/acg17/namespace.ts +6 -0
 - package/lib/routes/acg17/post.ts +45 -0
 - package/lib/routes/acpaa/index.ts +77 -0
 - package/lib/routes/acpaa/namespace.ts +6 -0
 - package/lib/routes/acs/journal.ts +91 -0
 - package/lib/routes/acs/namespace.ts +6 -0
 - package/lib/routes/aeaweb/index.ts +115 -0
 - package/lib/routes/aeaweb/namespace.ts +6 -0
 - package/lib/routes/aeon/category.ts +51 -0
 - package/lib/routes/aeon/namespace.ts +6 -0
 - package/lib/routes/aeon/templates/essay.art +3 -0
 - package/lib/routes/aeon/templates/video.art +10 -0
 - package/lib/routes/aeon/type.ts +57 -0
 - package/lib/routes/aeon/utils.ts +55 -0
 - package/lib/routes/afdian/dynamic.ts +47 -0
 - package/lib/routes/afdian/explore.ts +78 -0
 - package/lib/routes/afdian/namespace.ts +6 -0
 - package/lib/routes/agefans/detail.ts +55 -0
 - package/lib/routes/agefans/namespace.ts +6 -0
 - package/lib/routes/agefans/update.ts +75 -0
 - package/lib/routes/agefans/utils.ts +3 -0
 - package/lib/routes/agirls/index.ts +60 -0
 - package/lib/routes/agirls/namespace.ts +6 -0
 - package/lib/routes/agirls/topic-list.ts +56 -0
 - package/lib/routes/agirls/topic.ts +56 -0
 - package/lib/routes/agirls/utils.ts +28 -0
 - package/lib/routes/agora0/index.ts +83 -0
 - package/lib/routes/agora0/namespace.ts +6 -0
 - package/lib/routes/agora0/pen0.ts +69 -0
 - package/lib/routes/ahjzu/namespace.ts +6 -0
 - package/lib/routes/ahjzu/news.ts +83 -0
 - package/lib/routes/aicaijing/index.ts +84 -0
 - package/lib/routes/aicaijing/namespace.ts +6 -0
 - package/lib/routes/aiea/index.ts +63 -0
 - package/lib/routes/aiea/namespace.ts +6 -0
 - package/lib/routes/aijishu/index.ts +50 -0
 - package/lib/routes/aijishu/namespace.ts +6 -0
 - package/lib/routes/aijishu/utils.ts +35 -0
 - package/lib/routes/ainvest/article.ts +67 -0
 - package/lib/routes/ainvest/namespace.ts +6 -0
 - package/lib/routes/ainvest/news.ts +64 -0
 - package/lib/routes/ainvest/utils.ts +68 -0
 - package/lib/routes/aip/journal-pupp.ts +62 -0
 - package/lib/routes/aip/journal.ts +84 -0
 - package/lib/routes/aip/namespace.ts +6 -0
 - package/lib/routes/aip/utils.ts +29 -0
 - package/lib/routes/airchina/index.ts +64 -0
 - package/lib/routes/airchina/namespace.ts +6 -0
 - package/lib/routes/aisixiang/column.ts +65 -0
 - package/lib/routes/aisixiang/namespace.ts +6 -0
 - package/lib/routes/aisixiang/thinktank.ts +72 -0
 - package/lib/routes/aisixiang/toplist.ts +55 -0
 - package/lib/routes/aisixiang/utils.ts +39 -0
 - package/lib/routes/aisixiang/zhuanti.ts +68 -0
 - package/lib/routes/ajmide/index.ts +48 -0
 - package/lib/routes/ajmide/namespace.ts +6 -0
 - package/lib/routes/alipan/files.ts +80 -0
 - package/lib/routes/alipan/namespace.ts +7 -0
 - package/lib/routes/alipan/types.ts +62 -0
 - package/lib/routes/aliresearch/information.ts +86 -0
 - package/lib/routes/aliresearch/namespace.ts +6 -0
 - package/lib/routes/alistapart/index.ts +34 -0
 - package/lib/routes/alistapart/namespace.ts +6 -0
 - package/lib/routes/alistapart/topic.ts +93 -0
 - package/lib/routes/alistapart/utils.ts +22 -0
 - package/lib/routes/aliyun/database-month.ts +66 -0
 - package/lib/routes/aliyun/developer/group.ts +73 -0
 - package/lib/routes/aliyun/namespace.ts +6 -0
 - package/lib/routes/aliyun/notice.ts +83 -0
 - package/lib/routes/aljazeera/index.ts +103 -0
 - package/lib/routes/aljazeera/namespace.ts +6 -0
 - package/lib/routes/ally/namespace.ts +6 -0
 - package/lib/routes/ally/rail.ts +137 -0
 - package/lib/routes/alternativeto/namespace.ts +6 -0
 - package/lib/routes/alternativeto/platform.ts +59 -0
 - package/lib/routes/alternativeto/software.ts +59 -0
 - package/lib/routes/alternativeto/utils.ts +21 -0
 - package/lib/routes/amazon/awsblogs.ts +35 -0
 - package/lib/routes/amazon/kindle-software-updates.ts +70 -0
 - package/lib/routes/amazon/namespace.ts +6 -0
 - package/lib/routes/android/namespace.ts +6 -0
 - package/lib/routes/android/platform-tools-releases.ts +72 -0
 - package/lib/routes/annualreviews/index.ts +99 -0
 - package/lib/routes/annualreviews/namespace.ts +6 -0
 - package/lib/routes/anquanke/category.ts +62 -0
 - package/lib/routes/anquanke/namespace.ts +9 -0
 - package/lib/routes/anquanke/vul.ts +36 -0
 - package/lib/routes/apache/apisix/blog.ts +51 -0
 - package/lib/routes/apache/namespace.ts +6 -0
 - package/lib/routes/apiseven/blog.ts +68 -0
 - package/lib/routes/apiseven/namespace.ts +6 -0
 - package/lib/routes/apkpure/namespace.ts +6 -0
 - package/lib/routes/apkpure/versions.ts +68 -0
 - package/lib/routes/apnews/namespace.ts +6 -0
 - package/lib/routes/apnews/rss.ts +41 -0
 - package/lib/routes/apnews/topics.ts +56 -0
 - package/lib/routes/apnews/utils.ts +42 -0
 - package/lib/routes/app-center/namespace.ts +6 -0
 - package/lib/routes/app-center/release.ts +151 -0
 - package/lib/routes/apple/apps.ts +137 -0
 - package/lib/routes/apple/exchange-repair.ts +73 -0
 - package/lib/routes/apple/namespace.ts +6 -0
 - package/lib/routes/apple/podcast.ts +64 -0
 - package/lib/routes/appleinsider/index.ts +88 -0
 - package/lib/routes/appleinsider/namespace.ts +6 -0
 - package/lib/routes/appstore/in-app-purchase.ts +80 -0
 - package/lib/routes/appstore/namespace.ts +6 -0
 - package/lib/routes/appstore/price.ts +82 -0
 - package/lib/routes/appstore/xianmian.ts +53 -0
 - package/lib/routes/appstorrent/namespace.ts +6 -0
 - package/lib/routes/appstorrent/programs.ts +91 -0
 - package/lib/routes/appstorrent/templates/description.art +22 -0
 - package/lib/routes/aqara/community.ts +51 -0
 - package/lib/routes/aqara/namespace.ts +6 -0
 - package/lib/routes/aqara/news.ts +62 -0
 - package/lib/routes/aqara/post.ts +104 -0
 - package/lib/routes/aqara/region.ts +18 -0
 - package/lib/routes/aqara/templates/figure.art +3 -0
 - package/lib/routes/aqicn/aqi.ts +82 -0
 - package/lib/routes/aqicn/namespace.ts +6 -0
 - package/lib/routes/arcteryx/namespace.ts +6 -0
 - package/lib/routes/arcteryx/new-arrivals.ts +77 -0
 - package/lib/routes/arcteryx/outlet.ts +79 -0
 - package/lib/routes/arcteryx/regear-new-arrivals.ts +77 -0
 - package/lib/routes/arcteryx/utils.ts +21 -0
 - package/lib/routes/artstation/namespace.ts +6 -0
 - package/lib/routes/artstation/templates/description.art +17 -0
 - package/lib/routes/artstation/user.ts +126 -0
 - package/lib/routes/asiantolick/index.ts +132 -0
 - package/lib/routes/asiantolick/namespace.ts +6 -0
 - package/lib/routes/asiantolick/templates/description.art +9 -0
 - package/lib/routes/asus/bios.ts +67 -0
 - package/lib/routes/asus/gpu-tweak.ts +56 -0
 - package/lib/routes/asus/namespace.ts +6 -0
 - package/lib/routes/atcoder/contest.ts +103 -0
 - package/lib/routes/atcoder/namespace.ts +6 -0
 - package/lib/routes/atcoder/post.ts +57 -0
 - package/lib/routes/atptour/namespace.ts +7 -0
 - package/lib/routes/atptour/news.ts +52 -0
 - package/lib/routes/auto-stats/index.ts +88 -0
 - package/lib/routes/auto-stats/namespace.ts +6 -0
 - package/lib/routes/baai/events.ts +47 -0
 - package/lib/routes/baai/hub.ts +98 -0
 - package/lib/routes/baai/namespace.ts +6 -0
 - package/lib/routes/baai/utils.ts +42 -0
 - package/lib/routes/backlinko/blog.ts +70 -0
 - package/lib/routes/backlinko/namespace.ts +6 -0
 - package/lib/routes/bad/index.ts +67 -0
 - package/lib/routes/bad/namespace.ts +6 -0
 - package/lib/routes/baidu/gushitong/index.ts +56 -0
 - package/lib/routes/baidu/namespace.ts +6 -0
 - package/lib/routes/baidu/search.ts +77 -0
 - package/lib/routes/baidu/templates/description.art +6 -0
 - package/lib/routes/baidu/templates/tieba_search.art +1 -0
 - package/lib/routes/baidu/tieba/forum.ts +86 -0
 - package/lib/routes/baidu/tieba/post.ts +107 -0
 - package/lib/routes/baidu/tieba/search.ts +93 -0
 - package/lib/routes/baidu/tieba/user.ts +53 -0
 - package/lib/routes/baidu/top.ts +59 -0
 - package/lib/routes/bandcamp/live.ts +66 -0
 - package/lib/routes/bandcamp/namespace.ts +6 -0
 - package/lib/routes/bandcamp/tag.ts +72 -0
 - package/lib/routes/bandcamp/weekly.ts +57 -0
 - package/lib/routes/bangumi/moe/index.ts +109 -0
 - package/lib/routes/bangumi/namespace.ts +6 -0
 - package/lib/routes/bangumi/online/online.ts +56 -0
 - package/lib/routes/bangumi/tv/calendar/_base.ts +38 -0
 - package/lib/routes/bangumi/tv/calendar/today.ts +92 -0
 - package/lib/routes/bangumi/tv/group/reply.ts +83 -0
 - package/lib/routes/bangumi/tv/group/topic.ts +64 -0
 - package/lib/routes/bangumi/tv/other/followrank.ts +80 -0
 - package/lib/routes/bangumi/tv/person/index.ts +62 -0
 - package/lib/routes/bangumi/tv/subject/comments.ts +48 -0
 - package/lib/routes/bangumi/tv/subject/ep.ts +36 -0
 - package/lib/routes/bangumi/tv/subject/index.ts +57 -0
 - package/lib/routes/bangumi/tv/subject/offcial-subject-api.ts +34 -0
 - package/lib/routes/bangumi/tv/subject/utils.ts +3 -0
 - package/lib/routes/bangumi/tv/user/blog.ts +68 -0
 - package/lib/routes/bangumi/tv/user/wish.ts +62 -0
 - package/lib/routes/baozimh/index.ts +80 -0
 - package/lib/routes/baozimh/namespace.ts +6 -0
 - package/lib/routes/barronschina/index.ts +100 -0
 - package/lib/routes/barronschina/namespace.ts +6 -0
 - package/lib/routes/bast/index.ts +84 -0
 - package/lib/routes/bast/namespace.ts +6 -0
 - package/lib/routes/bbc/index.ts +108 -0
 - package/lib/routes/bbc/namespace.ts +6 -0
 - package/lib/routes/bbc/utils.ts +35 -0
 - package/lib/routes/bbcnewslabs/namespace.ts +6 -0
 - package/lib/routes/bbcnewslabs/news.ts +56 -0
 - package/lib/routes/bdys/index.ts +187 -0
 - package/lib/routes/bdys/namespace.ts +9 -0
 - package/lib/routes/behance/namespace.ts +6 -0
 - package/lib/routes/behance/user.ts +88 -0
 - package/lib/routes/beijingprice/index.ts +193 -0
 - package/lib/routes/beijingprice/namespace.ts +8 -0
 - package/lib/routes/bellroy/namespace.ts +6 -0
 - package/lib/routes/bellroy/new-releases.ts +51 -0
 - package/lib/routes/bendibao/namespace.ts +6 -0
 - package/lib/routes/bendibao/news.ts +146 -0
 - package/lib/routes/bgmlist/namespace.ts +6 -0
 - package/lib/routes/bgmlist/onair.ts +54 -0
 - package/lib/routes/bigquant/collections.ts +61 -0
 - package/lib/routes/bigquant/namespace.ts +6 -0
 - package/lib/routes/bilibili/api-interface.d.ts +492 -0
 - package/lib/routes/bilibili/app.ts +55 -0
 - package/lib/routes/bilibili/article.ts +62 -0
 - package/lib/routes/bilibili/audio.ts +61 -0
 - package/lib/routes/bilibili/bangumi.ts +65 -0
 - package/lib/routes/bilibili/cache.ts +263 -0
 - package/lib/routes/bilibili/coin.ts +60 -0
 - package/lib/routes/bilibili/danmaku.ts +78 -0
 - package/lib/routes/bilibili/dynamic.ts +384 -0
 - package/lib/routes/bilibili/fav.ts +60 -0
 - package/lib/routes/bilibili/followers.ts +87 -0
 - package/lib/routes/bilibili/followings-article.ts +80 -0
 - package/lib/routes/bilibili/followings-dynamic.ts +186 -0
 - package/lib/routes/bilibili/followings-video.ts +78 -0
 - package/lib/routes/bilibili/followings.ts +91 -0
 - package/lib/routes/bilibili/hot-search.ts +54 -0
 - package/lib/routes/bilibili/like.ts +60 -0
 - package/lib/routes/bilibili/link-news.ts +61 -0
 - package/lib/routes/bilibili/live-area.ts +86 -0
 - package/lib/routes/bilibili/live-room.ts +65 -0
 - package/lib/routes/bilibili/live-search.ts +67 -0
 - package/lib/routes/bilibili/mall-ip.ts +53 -0
 - package/lib/routes/bilibili/mall-new.ts +53 -0
 - package/lib/routes/bilibili/manga-followings.ts +71 -0
 - package/lib/routes/bilibili/manga-update.ts +57 -0
 - package/lib/routes/bilibili/namespace.ts +6 -0
 - package/lib/routes/bilibili/page.ts +55 -0
 - package/lib/routes/bilibili/partion-ranking.ts +76 -0
 - package/lib/routes/bilibili/partion.ts +168 -0
 - package/lib/routes/bilibili/platform.ts +77 -0
 - package/lib/routes/bilibili/popular.ts +48 -0
 - package/lib/routes/bilibili/ranking.ts +62 -0
 - package/lib/routes/bilibili/readlist.ts +50 -0
 - package/lib/routes/bilibili/reply.ts +57 -0
 - package/lib/routes/bilibili/user-bangumi.ts +61 -0
 - package/lib/routes/bilibili/user-channel.ts +88 -0
 - package/lib/routes/bilibili/user-collection.ts +80 -0
 - package/lib/routes/bilibili/user-fav.ts +62 -0
 - package/lib/routes/bilibili/utils.ts +125 -0
 - package/lib/routes/bilibili/video-all.ts +84 -0
 - package/lib/routes/bilibili/video.ts +80 -0
 - package/lib/routes/bilibili/vsearch.ts +94 -0
 - package/lib/routes/bilibili/watchlater.ts +76 -0
 - package/lib/routes/bilibili/weekly-recommend.ts +60 -0
 - package/lib/routes/binance/launchpool.ts +46 -0
 - package/lib/routes/binance/namespace.ts +6 -0
 - package/lib/routes/bing/daily-wallpaper.ts +80 -0
 - package/lib/routes/bing/namespace.ts +6 -0
 - package/lib/routes/bing/search.ts +54 -0
 - package/lib/routes/biodiscover/index.ts +59 -0
 - package/lib/routes/biodiscover/namespace.ts +6 -0
 - package/lib/routes/bioone/featured.ts +78 -0
 - package/lib/routes/bioone/journal.ts +86 -0
 - package/lib/routes/bioone/namespace.ts +6 -0
 - package/lib/routes/biquge/index.ts +110 -0
 - package/lib/routes/biquge/namespace.ts +27 -0
 - package/lib/routes/bit/cs/cs.ts +50 -0
 - package/lib/routes/bit/cs/utils.ts +51 -0
 - package/lib/routes/bit/jwc/jwc.ts +50 -0
 - package/lib/routes/bit/jwc/utils.ts +47 -0
 - package/lib/routes/bit/namespace.ts +6 -0
 - package/lib/routes/bit/rszhaopin.ts +55 -0
 - package/lib/routes/bit/yjs.ts +52 -0
 - package/lib/routes/bitbucket/commits.ts +64 -0
 - package/lib/routes/bitbucket/namespace.ts +6 -0
 - package/lib/routes/bitbucket/tags.ts +59 -0
 - package/lib/routes/bitmovin/blog.ts +52 -0
 - package/lib/routes/bitmovin/namespace.ts +6 -0
 - package/lib/routes/bjfu/grs.ts +77 -0
 - package/lib/routes/bjfu/it/index.ts +79 -0
 - package/lib/routes/bjfu/it/utils.ts +71 -0
 - package/lib/routes/bjfu/jwc/index.ts +78 -0
 - package/lib/routes/bjfu/jwc/utils.ts +58 -0
 - package/lib/routes/bjfu/kjc.ts +78 -0
 - package/lib/routes/bjfu/namespace.ts +6 -0
 - package/lib/routes/bjfu/news/index.ts +86 -0
 - package/lib/routes/bjfu/news/utils.ts +59 -0
 - package/lib/routes/bjp/apod.ts +69 -0
 - package/lib/routes/bjp/namespace.ts +6 -0
 - package/lib/routes/bjsk/index.ts +77 -0
 - package/lib/routes/bjsk/keti.ts +84 -0
 - package/lib/routes/bjsk/namespace.ts +6 -0
 - package/lib/routes/bjtu/gs.ts +224 -0
 - package/lib/routes/bjtu/namespace.ts +8 -0
 - package/lib/routes/bjwxdxh/index.ts +75 -0
 - package/lib/routes/bjwxdxh/namespace.ts +6 -0
 - package/lib/routes/bjx/huanbao.ts +104 -0
 - package/lib/routes/bjx/namespace.ts +6 -0
 - package/lib/routes/bjx/types.ts +57 -0
 - package/lib/routes/blizzard/namespace.ts +6 -0
 - package/lib/routes/blizzard/news.ts +108 -0
 - package/lib/routes/blogread/index.ts +45 -0
 - package/lib/routes/blogread/namespace.ts +6 -0
 - package/lib/routes/bloomberg/authors.ts +77 -0
 - package/lib/routes/bloomberg/index.ts +65 -0
 - package/lib/routes/bloomberg/namespace.ts +6 -0
 - package/lib/routes/bloomberg/templates/chart_media.art +21 -0
 - package/lib/routes/bloomberg/templates/image_figure.art +9 -0
 - package/lib/routes/bloomberg/utils.ts +618 -0
 - package/lib/routes/bluestacks/namespace.ts +6 -0
 - package/lib/routes/bluestacks/release.ts +90 -0
 - package/lib/routes/bmkg/earthquake.ts +54 -0
 - package/lib/routes/bmkg/namespace.ts +6 -0
 - package/lib/routes/bmkg/news.ts +68 -0
 - package/lib/routes/bnu/bs.ts +81 -0
 - package/lib/routes/bnu/dwxgb.ts +78 -0
 - package/lib/routes/bnu/fdy.ts +50 -0
 - package/lib/routes/bnu/jwb.ts +56 -0
 - package/lib/routes/bnu/lib.ts +55 -0
 - package/lib/routes/bnu/mba.ts +202 -0
 - package/lib/routes/bnu/namespace.ts +6 -0
 - package/lib/routes/boc/namespace.ts +6 -0
 - package/lib/routes/boc/whpj.ts +129 -0
 - package/lib/routes/bookfere/category.ts +58 -0
 - package/lib/routes/bookfere/namespace.ts +6 -0
 - package/lib/routes/booru/mmda.ts +134 -0
 - package/lib/routes/booru/namespace.ts +6 -0
 - package/lib/routes/booru/templates/description.art +25 -0
 - package/lib/routes/bossdesign/index.ts +64 -0
 - package/lib/routes/bossdesign/namespace.ts +6 -0
 - package/lib/routes/brave/latest.ts +65 -0
 - package/lib/routes/brave/namespace.ts +6 -0
 - package/lib/routes/brooklynmuseum/exhibitions.ts +46 -0
 - package/lib/routes/brooklynmuseum/namespace.ts +6 -0
 - package/lib/routes/bse/index.ts +216 -0
 - package/lib/routes/bse/namespace.ts +6 -0
 - package/lib/routes/bsky/keyword.ts +41 -0
 - package/lib/routes/bsky/namespace.ts +6 -0
 - package/lib/routes/bsky/posts.ts +70 -0
 - package/lib/routes/bsky/templates/post.art +15 -0
 - package/lib/routes/bsky/utils.ts +48 -0
 - package/lib/routes/btzj/index.ts +164 -0
 - package/lib/routes/btzj/namespace.ts +6 -0
 - package/lib/routes/buaa/namespace.ts +6 -0
 - package/lib/routes/buaa/news/index.ts +69 -0
 - package/lib/routes/buaa/sme.ts +99 -0
 - package/lib/routes/bugzilla/bug.ts +59 -0
 - package/lib/routes/bugzilla/namespace.ts +11 -0
 - package/lib/routes/bulianglin/namespace.ts +6 -0
 - package/lib/routes/bulianglin/rss.ts +48 -0
 - package/lib/routes/bupt/namespace.ts +6 -0
 - package/lib/routes/bupt/rczp.ts +77 -0
 - package/lib/routes/byau/namespace.ts +6 -0
 - package/lib/routes/byau/xinwen/index.ts +72 -0
 - package/lib/routes/byteclicks/index.ts +37 -0
 - package/lib/routes/byteclicks/namespace.ts +6 -0
 - package/lib/routes/byteclicks/tag.ts +55 -0
 - package/lib/routes/byteclicks/utils.ts +11 -0
 - package/lib/routes/bytes/bytes.ts +40 -0
 - package/lib/routes/bytes/namespace.ts +6 -0
 - package/lib/routes/c114/namespace.ts +6 -0
 - package/lib/routes/c114/roll.ts +83 -0
 - package/lib/routes/caai/index.ts +42 -0
 - package/lib/routes/caai/namespace.ts +6 -0
 - package/lib/routes/caai/utils.ts +49 -0
 - package/lib/routes/caam/index.ts +73 -0
 - package/lib/routes/caam/namespace.ts +6 -0
 - package/lib/routes/caareviews/book.ts +39 -0
 - package/lib/routes/caareviews/essay.ts +39 -0
 - package/lib/routes/caareviews/exhibition.ts +39 -0
 - package/lib/routes/caareviews/namespace.ts +6 -0
 - package/lib/routes/caareviews/utils.ts +49 -0
 - package/lib/routes/cahkms/index.ts +105 -0
 - package/lib/routes/cahkms/namespace.ts +6 -0
 - package/lib/routes/caijing/namespace.ts +6 -0
 - package/lib/routes/caijing/roll.ts +72 -0
 - package/lib/routes/caixin/article.ts +53 -0
 - package/lib/routes/caixin/blog.ts +103 -0
 - package/lib/routes/caixin/category.ts +94 -0
 - package/lib/routes/caixin/database.ts +77 -0
 - package/lib/routes/caixin/k.ts +59 -0
 - package/lib/routes/caixin/latest.ts +75 -0
 - package/lib/routes/caixin/namespace.ts +7 -0
 - package/lib/routes/caixin/templates/article.art +38 -0
 - package/lib/routes/caixin/utils.ts +49 -0
 - package/lib/routes/caixin/weekly.ts +77 -0
 - package/lib/routes/caixinglobal/latest.ts +90 -0
 - package/lib/routes/caixinglobal/namespace.ts +6 -0
 - package/lib/routes/camchina/index.ts +80 -0
 - package/lib/routes/camchina/namespace.ts +6 -0
 - package/lib/routes/cankaoxiaoxi/index.ts +112 -0
 - package/lib/routes/cankaoxiaoxi/namespace.ts +6 -0
 - package/lib/routes/cartoonmad/comic.ts +98 -0
 - package/lib/routes/cartoonmad/namespace.ts +6 -0
 - package/lib/routes/cas/cg/index.ts +80 -0
 - package/lib/routes/cas/genetics/index.ts +71 -0
 - package/lib/routes/cas/ia/yjs.ts +50 -0
 - package/lib/routes/cas/iee/kydt.ts +74 -0
 - package/lib/routes/cas/is/index.ts +53 -0
 - package/lib/routes/cas/mesalab/kb.ts +67 -0
 - package/lib/routes/cas/namespace.ts +6 -0
 - package/lib/routes/cas/sim/kyjz.ts +73 -0
 - package/lib/routes/casssp/namespace.ts +6 -0
 - package/lib/routes/casssp/news.ts +82 -0
 - package/lib/routes/cast/index.ts +115 -0
 - package/lib/routes/cast/namespace.ts +6 -0
 - package/lib/routes/cau/ele.ts +68 -0
 - package/lib/routes/cau/namespace.ts +6 -0
 - package/lib/routes/cau/yjs.ts +67 -0
 - package/lib/routes/caus/index.ts +111 -0
 - package/lib/routes/caus/namespace.ts +6 -0
 - package/lib/routes/cbaigui/index.ts +112 -0
 - package/lib/routes/cbaigui/namespace.ts +6 -0
 - package/lib/routes/cbaigui/templates/figure.art +3 -0
 - package/lib/routes/cbaigui/utils.ts +14 -0
 - package/lib/routes/cbc/namespace.ts +6 -0
 - package/lib/routes/cbc/topics.ts +85 -0
 - package/lib/routes/cbirc/index.ts +133 -0
 - package/lib/routes/cbirc/namespace.ts +6 -0
 - package/lib/routes/cbnweek/index.ts +62 -0
 - package/lib/routes/cbnweek/namespace.ts +6 -0
 - package/lib/routes/ccac/namespace.ts +6 -0
 - package/lib/routes/ccac/news.ts +82 -0
 - package/lib/routes/ccac/utils.ts +26 -0
 - package/lib/routes/ccf/ccfcv/index.ts +94 -0
 - package/lib/routes/ccf/namespace.ts +6 -0
 - package/lib/routes/ccf/news.ts +74 -0
 - package/lib/routes/ccf/tfbd/index.ts +47 -0
 - package/lib/routes/ccf/tfbd/utils.ts +50 -0
 - package/lib/routes/ccnu/career.ts +56 -0
 - package/lib/routes/ccnu/cs.ts +53 -0
 - package/lib/routes/ccnu/namespace.ts +6 -0
 - package/lib/routes/ccnu/wu.ts +52 -0
 - package/lib/routes/ccnu/yjs.ts +52 -0
 - package/lib/routes/ccreports/index.ts +67 -0
 - package/lib/routes/ccreports/namespace.ts +6 -0
 - package/lib/routes/cctv/category.ts +48 -0
 - package/lib/routes/cctv/jx.ts +77 -0
 - package/lib/routes/cctv/lm.ts +114 -0
 - package/lib/routes/cctv/namespace.ts +6 -0
 - package/lib/routes/cctv/utils/mzzlbg.ts +42 -0
 - package/lib/routes/cctv/utils/news.ts +109 -0
 - package/lib/routes/cctv/utils/xinwen1j1.ts +83 -0
 - package/lib/routes/cctv/xwlb.ts +77 -0
 - package/lib/routes/cde/index.ts +167 -0
 - package/lib/routes/cde/namespace.ts +6 -0
 - package/lib/routes/cde/utils.ts +17 -0
 - package/lib/routes/cde/xxgk.ts +98 -0
 - package/lib/routes/cde/zdyz.ts +100 -0
 - package/lib/routes/cdi/index.ts +84 -0
 - package/lib/routes/cdi/namespace.ts +6 -0
 - package/lib/routes/cdzjryb/namespace.ts +6 -0
 - package/lib/routes/cdzjryb/project-list.ts +78 -0
 - package/lib/routes/cebbank/all.ts +78 -0
 - package/lib/routes/cebbank/history.ts +77 -0
 - package/lib/routes/cebbank/namespace.ts +6 -0
 - package/lib/routes/cebbank/utils.ts +68 -0
 - package/lib/routes/cfachina/analygarden.ts +87 -0
 - package/lib/routes/cfachina/namespace.ts +6 -0
 - package/lib/routes/cfmmc/index.ts +81 -0
 - package/lib/routes/cfmmc/namespace.ts +6 -0
 - package/lib/routes/cfr/index.ts +58 -0
 - package/lib/routes/cfr/namespace.ts +6 -0
 - package/lib/routes/cfr/types.ts +30 -0
 - package/lib/routes/cfr/utils.ts +284 -0
 - package/lib/routes/cgtn/namespace.ts +6 -0
 - package/lib/routes/cgtn/podcast.ts +61 -0
 - package/lib/routes/chaincatcher/home.ts +69 -0
 - package/lib/routes/chaincatcher/namespace.ts +6 -0
 - package/lib/routes/chaincatcher/news.ts +65 -0
 - package/lib/routes/changba/namespace.ts +6 -0
 - package/lib/routes/changba/user.ts +112 -0
 - package/lib/routes/chaoxing/namespace.ts +6 -0
 - package/lib/routes/chaoxing/qk.ts +95 -0
 - package/lib/routes/chaping/banner.ts +66 -0
 - package/lib/routes/chaping/namespace.ts +6 -0
 - package/lib/routes/chaping/news.ts +83 -0
 - package/lib/routes/chaping/newsflash.ts +48 -0
 - package/lib/routes/chiculture/namespace.ts +6 -0
 - package/lib/routes/chiculture/topic.ts +84 -0
 - package/lib/routes/china/finance/finance.ts +93 -0
 - package/lib/routes/china/namespace.ts +6 -0
 - package/lib/routes/china/news/highlights/news.ts +69 -0
 - package/lib/routes/china/news/military/news.ts +55 -0
 - package/lib/routes/chinadegrees/namespace.ts +6 -0
 - package/lib/routes/chinadegrees/province.ts +124 -0
 - package/lib/routes/chinafactcheck/index.ts +53 -0
 - package/lib/routes/chinafactcheck/namespace.ts +6 -0
 - package/lib/routes/chinafactcheck/utils.ts +60 -0
 - package/lib/routes/chinaisa/index.ts +251 -0
 - package/lib/routes/chinaisa/namespace.ts +6 -0
 - package/lib/routes/chinamoney/channels.ts +55 -0
 - package/lib/routes/chinamoney/namespace.ts +6 -0
 - package/lib/routes/chinamoney/notice.ts +112 -0
 - package/lib/routes/chinanews/index.ts +82 -0
 - package/lib/routes/chinanews/namespace.ts +6 -0
 - package/lib/routes/chinathinktanks/namespace.ts +6 -0
 - package/lib/routes/chinathinktanks/viewpoint.ts +119 -0
 - package/lib/routes/chinaventure/index.ts +93 -0
 - package/lib/routes/chinaventure/namespace.ts +6 -0
 - package/lib/routes/chinawriter/index.ts +97 -0
 - package/lib/routes/chinawriter/namespace.ts +6 -0
 - package/lib/routes/chsi/hotnews.ts +74 -0
 - package/lib/routes/chsi/kydt.ts +72 -0
 - package/lib/routes/chsi/kyzx.ts +79 -0
 - package/lib/routes/chsi/namespace.ts +6 -0
 - package/lib/routes/chuanliu/namespace.ts +6 -0
 - package/lib/routes/chuanliu/nice.ts +105 -0
 - package/lib/routes/chuanliu/templates/description.art +23 -0
 - package/lib/routes/chub/characters.ts +64 -0
 - package/lib/routes/chub/namespace.ts +6 -0
 - package/lib/routes/cib/namespace.ts +6 -0
 - package/lib/routes/cib/whpj.ts +115 -0
 - package/lib/routes/ciidbnu/index.ts +80 -0
 - package/lib/routes/ciidbnu/namespace.ts +6 -0
 - package/lib/routes/civitai/discussions.ts +74 -0
 - package/lib/routes/civitai/models.ts +51 -0
 - package/lib/routes/civitai/namespace.ts +6 -0
 - package/lib/routes/ciweimao/chapter.ts +86 -0
 - package/lib/routes/ciweimao/namespace.ts +6 -0
 - package/lib/routes/clickme/index.ts +76 -0
 - package/lib/routes/clickme/namespace.ts +6 -0
 - package/lib/routes/cloudnative/blog.ts +53 -0
 - package/lib/routes/cloudnative/namespace.ts +6 -0
 - package/lib/routes/cls/depth.ts +108 -0
 - package/lib/routes/cls/hot.ts +83 -0
 - package/lib/routes/cls/namespace.ts +6 -0
 - package/lib/routes/cls/telegraph.ts +86 -0
 - package/lib/routes/cls/templates/depth.art +10 -0
 - package/lib/routes/cls/templates/telegraph.art +10 -0
 - package/lib/routes/cls/utils.ts +18 -0
 - package/lib/routes/cma/channel.ts +135 -0
 - package/lib/routes/cma/namespace.ts +6 -0
 - package/lib/routes/cma/templates/description.art +13 -0
 - package/lib/routes/cmde/index.ts +82 -0
 - package/lib/routes/cmde/namespace.ts +6 -0
 - package/lib/routes/cmpxchg8b/articles.ts +69 -0
 - package/lib/routes/cmpxchg8b/namespace.ts +6 -0
 - package/lib/routes/cn-healthcare/index.ts +56 -0
 - package/lib/routes/cn-healthcare/namespace.ts +6 -0
 - package/lib/routes/cna/index.ts +87 -0
 - package/lib/routes/cna/namespace.ts +6 -0
 - package/lib/routes/cna/web/index.ts +76 -0
 - package/lib/routes/cnbc/namespace.ts +6 -0
 - package/lib/routes/cnbc/rss.ts +83 -0
 - package/lib/routes/cnbeta/category.ts +23 -0
 - package/lib/routes/cnbeta/common.ts +43 -0
 - package/lib/routes/cnbeta/index.ts +16 -0
 - package/lib/routes/cnbeta/namespace.ts +7 -0
 - package/lib/routes/cnbeta/topics.ts +23 -0
 - package/lib/routes/cnbeta/utils.ts +27 -0
 - package/lib/routes/cnblogs/common.ts +58 -0
 - package/lib/routes/cnblogs/namespace.ts +6 -0
 - package/lib/routes/cncf/index.ts +66 -0
 - package/lib/routes/cncf/namespace.ts +6 -0
 - package/lib/routes/cncf/reports.ts +53 -0
 - package/lib/routes/cneb/namespace.ts +6 -0
 - package/lib/routes/cneb/yjxw.ts +100 -0
 - package/lib/routes/cneb/yjxx.ts +66 -0
 - package/lib/routes/cngal/entry.ts +52 -0
 - package/lib/routes/cngal/namespace.ts +6 -0
 - package/lib/routes/cngal/weekly.ts +48 -0
 - package/lib/routes/cnjxol/index.ts +110 -0
 - package/lib/routes/cnjxol/namespace.ts +6 -0
 - package/lib/routes/cnki/author.ts +80 -0
 - package/lib/routes/cnki/debut.ts +90 -0
 - package/lib/routes/cnki/journals.ts +74 -0
 - package/lib/routes/cnki/namespace.ts +6 -0
 - package/lib/routes/cnki/utils.ts +27 -0
 - package/lib/routes/cnljxh/index.ts +80 -0
 - package/lib/routes/cnljxh/namespace.ts +6 -0
 - package/lib/routes/cntheory/namespace.ts +6 -0
 - package/lib/routes/cntheory/paper.ts +111 -0
 - package/lib/routes/cntheory/templates/description.art +2 -0
 - package/lib/routes/cntv/column.ts +67 -0
 - package/lib/routes/cntv/namespace.ts +6 -0
 - package/lib/routes/codeforces/contests.ts +77 -0
 - package/lib/routes/codeforces/namespace.ts +6 -0
 - package/lib/routes/codeforces/recent-actions.ts +73 -0
 - package/lib/routes/coindesk/index.ts +59 -0
 - package/lib/routes/coindesk/namespace.ts +6 -0
 - package/lib/routes/colamanga/manga.ts +88 -0
 - package/lib/routes/colamanga/namespace.ts +9 -0
 - package/lib/routes/comicat/namespace.ts +6 -0
 - package/lib/routes/comicat/search.ts +62 -0
 - package/lib/routes/comicskingdom/index.ts +89 -0
 - package/lib/routes/comicskingdom/namespace.ts +6 -0
 - package/lib/routes/consumer/index.ts +92 -0
 - package/lib/routes/consumer/namespace.ts +6 -0
 - package/lib/routes/consumer/shopping-guide.ts +89 -0
 - package/lib/routes/cool18/index.ts +76 -0
 - package/lib/routes/cool18/namespace.ts +6 -0
 - package/lib/routes/coolapk/dyh.ts +60 -0
 - package/lib/routes/coolapk/hot.ts +127 -0
 - package/lib/routes/coolapk/huati.ts +44 -0
 - package/lib/routes/coolapk/namespace.ts +6 -0
 - package/lib/routes/coolapk/toutiao.ts +51 -0
 - package/lib/routes/coolapk/tuwen.ts +59 -0
 - package/lib/routes/coolapk/user-dynamic.ts +55 -0
 - package/lib/routes/coolapk/utils.ts +144 -0
 - package/lib/routes/coomer/artist.ts +33 -0
 - package/lib/routes/coomer/namespace.ts +6 -0
 - package/lib/routes/coomer/posts.ts +32 -0
 - package/lib/routes/coomer/utils.ts +57 -0
 - package/lib/routes/copernicium/index.ts +67 -0
 - package/lib/routes/copernicium/namespace.ts +6 -0
 - package/lib/routes/copymanga/comic.ts +146 -0
 - package/lib/routes/copymanga/namespace.ts +6 -0
 - package/lib/routes/copymanga/templates/comic.art +4 -0
 - package/lib/routes/cpcaauto/index.ts +255 -0
 - package/lib/routes/cpcaauto/namespace.ts +8 -0
 - package/lib/routes/cpcey/index.ts +83 -0
 - package/lib/routes/cpcey/namespace.ts +6 -0
 - package/lib/routes/cpuid/namespace.ts +6 -0
 - package/lib/routes/cpuid/news.ts +55 -0
 - package/lib/routes/cqgas/namespace.ts +6 -0
 - package/lib/routes/cqgas/tqtz.ts +62 -0
 - package/lib/routes/cqwu/index.ts +72 -0
 - package/lib/routes/cqwu/namespace.ts +6 -0
 - package/lib/routes/crac/index.ts +69 -0
 - package/lib/routes/crac/namespace.ts +6 -0
 - package/lib/routes/creative-comic/book.ts +95 -0
 - package/lib/routes/creative-comic/namespace.ts +6 -0
 - package/lib/routes/creative-comic/utils.ts +85 -0
 - package/lib/routes/crossbell/feeds/following.ts +50 -0
 - package/lib/routes/crossbell/namespace.ts +6 -0
 - package/lib/routes/crossbell/notes/character.ts +48 -0
 - package/lib/routes/crossbell/notes/index.ts +41 -0
 - package/lib/routes/crossbell/notes/source.ts +45 -0
 - package/lib/routes/crossbell/notes/utils.ts +16 -0
 - package/lib/routes/cs/index.ts +140 -0
 - package/lib/routes/cs/namespace.ts +7 -0
 - package/lib/routes/cs/video.ts +91 -0
 - package/lib/routes/cs/zzkx.ts +14 -0
 - package/lib/routes/csdn/blog.ts +64 -0
 - package/lib/routes/csdn/namespace.ts +6 -0
 - package/lib/routes/cssn/iolaw.ts +57 -0
 - package/lib/routes/cssn/namespace.ts +6 -0
 - package/lib/routes/cste/index.ts +79 -0
 - package/lib/routes/cste/namespace.ts +6 -0
 - package/lib/routes/csu/career.ts +77 -0
 - package/lib/routes/csu/cse.ts +64 -0
 - package/lib/routes/csu/mail.ts +70 -0
 - package/lib/routes/csu/namespace.ts +6 -0
 - package/lib/routes/csu/utils.ts +15 -0
 - package/lib/routes/cts/namespace.ts +6 -0
 - package/lib/routes/cts/news.ts +68 -0
 - package/lib/routes/cuc/namespace.ts +6 -0
 - package/lib/routes/cuc/yz.ts +58 -0
 - package/lib/routes/cuilingmag/index.ts +211 -0
 - package/lib/routes/cuilingmag/namespace.ts +8 -0
 - package/lib/routes/cuilingmag/templates/description.art +17 -0
 - package/lib/routes/curiouscat/namespace.ts +6 -0
 - package/lib/routes/curiouscat/user.ts +53 -0
 - package/lib/routes/curius/links.ts +70 -0
 - package/lib/routes/curius/namespace.ts +6 -0
 - package/lib/routes/curius/templates/description.art +16 -0
 - package/lib/routes/cw/author.ts +43 -0
 - package/lib/routes/cw/master.ts +53 -0
 - package/lib/routes/cw/namespace.ts +6 -0
 - package/lib/routes/cw/sub.ts +38 -0
 - package/lib/routes/cw/today.ts +44 -0
 - package/lib/routes/cw/utils.ts +128 -0
 - package/lib/routes/cyzone/author.ts +43 -0
 - package/lib/routes/cyzone/index.ts +51 -0
 - package/lib/routes/cyzone/label.ts +43 -0
 - package/lib/routes/cyzone/namespace.ts +6 -0
 - package/lib/routes/cyzone/util.ts +119 -0
 - package/lib/routes/cztv/daily.ts +69 -0
 - package/lib/routes/cztv/namespace.ts +6 -0
 - package/lib/routes/cztv/zjxwlb.ts +66 -0
 - package/lib/routes/dahecube/index.ts +85 -0
 - package/lib/routes/dahecube/namespace.ts +6 -0
 - package/lib/routes/dahecube/utils.ts +44 -0
 - package/lib/routes/daily/discussed.ts +88 -0
 - package/lib/routes/daily/index.ts +98 -0
 - package/lib/routes/daily/namespace.ts +7 -0
 - package/lib/routes/daily/templates/posts.art +7 -0
 - package/lib/routes/daily/upvoted.ts +92 -0
 - package/lib/routes/daily/user.ts +227 -0
 - package/lib/routes/daily/utils.ts +56 -0
 - package/lib/routes/damai/activity.ts +67 -0
 - package/lib/routes/damai/namespace.ts +6 -0
 - package/lib/routes/damai/templates/activity.art +5 -0
 - package/lib/routes/dangdang/namespace.ts +6 -0
 - package/lib/routes/dangdang/notice.ts +69 -0
 - package/lib/routes/dapenti/namespace.ts +6 -0
 - package/lib/routes/dapenti/subject.ts +24 -0
 - package/lib/routes/dapenti/tugua.ts +24 -0
 - package/lib/routes/dapenti/utils.ts +76 -0
 - package/lib/routes/darwinawards/index.ts +72 -0
 - package/lib/routes/darwinawards/namespace.ts +7 -0
 - package/lib/routes/dataguidance/index.ts +66 -0
 - package/lib/routes/dataguidance/namespace.ts +7 -0
 - package/lib/routes/dayanzai/index.ts +85 -0
 - package/lib/routes/dayanzai/namespace.ts +6 -0
 - package/lib/routes/dbaplus/namespace.ts +6 -0
 - package/lib/routes/dbaplus/rss.ts +48 -0
 - package/lib/routes/dblp/namespace.ts +6 -0
 - package/lib/routes/dblp/publication.ts +87 -0
 - package/lib/routes/dcard/namespace.ts +9 -0
 - package/lib/routes/dcard/section.ts +87 -0
 - package/lib/routes/dcard/utils.ts +48 -0
 - package/lib/routes/dcfever/namespace.ts +6 -0
 - package/lib/routes/dcfever/news.ts +54 -0
 - package/lib/routes/dcfever/reviews.ts +50 -0
 - package/lib/routes/dcfever/trading-search.ts +48 -0
 - package/lib/routes/dcfever/trading.ts +53 -0
 - package/lib/routes/dcfever/utils.ts +85 -0
 - package/lib/routes/ddosi/category.ts +68 -0
 - package/lib/routes/ddosi/index.ts +56 -0
 - package/lib/routes/ddosi/namespace.ts +6 -0
 - package/lib/routes/deadline/namespace.ts +6 -0
 - package/lib/routes/deadline/posts.ts +71 -0
 - package/lib/routes/deadline/templates/desc.art +10 -0
 - package/lib/routes/dedao/index.ts +55 -0
 - package/lib/routes/dedao/knowledge.ts +91 -0
 - package/lib/routes/dedao/list.ts +92 -0
 - package/lib/routes/dedao/namespace.ts +6 -0
 - package/lib/routes/dedao/user.ts +104 -0
 - package/lib/routes/deepin/homepage.ts +43 -0
 - package/lib/routes/deepin/namespace.ts +9 -0
 - package/lib/routes/deeplearning/namespace.ts +6 -0
 - package/lib/routes/deeplearning/thebatch.ts +62 -0
 - package/lib/routes/deepmind/blog.ts +58 -0
 - package/lib/routes/deepmind/namespace.ts +6 -0
 - package/lib/routes/dehenglaw/index.ts +128 -0
 - package/lib/routes/dehenglaw/namespace.ts +8 -0
 - package/lib/routes/dehenglaw/templates/description.art +7 -0
 - package/lib/routes/deltaio/blog.ts +59 -0
 - package/lib/routes/deltaio/namespace.ts +6 -0
 - package/lib/routes/devolverdigital/blog.ts +76 -0
 - package/lib/routes/devolverdigital/namespace.ts +6 -0
 - package/lib/routes/dgjyw/index.ts +77 -0
 - package/lib/routes/dgjyw/namespace.ts +6 -0
 - package/lib/routes/dhu/jiaowu/news.ts +86 -0
 - package/lib/routes/dhu/namespace.ts +6 -0
 - package/lib/routes/dhu/news/xsxx.ts +68 -0
 - package/lib/routes/dhu/xxgk/news.ts +77 -0
 - package/lib/routes/dhu/yjs/news.ts +70 -0
 - package/lib/routes/dhu/yjs/zs.ts +69 -0
 - package/lib/routes/diandong/namespace.ts +6 -0
 - package/lib/routes/diandong/news.ts +82 -0
 - package/lib/routes/diershoubing/namespace.ts +6 -0
 - package/lib/routes/diershoubing/news.ts +78 -0
 - package/lib/routes/digitalcameraworld/namespace.ts +6 -0
 - package/lib/routes/digitalcameraworld/news.ts +61 -0
 - package/lib/routes/discord/channel.ts +72 -0
 - package/lib/routes/discord/discord-api.ts +55 -0
 - package/lib/routes/discord/namespace.ts +6 -0
 - package/lib/routes/discourse/namespace.ts +8 -0
 - package/lib/routes/discourse/notifications.ts +67 -0
 - package/lib/routes/discourse/posts.ts +49 -0
 - package/lib/routes/discourse/utils.ts +11 -0
 - package/lib/routes/discuz/discuz.ts +163 -0
 - package/lib/routes/discuz/namespace.ts +5 -0
 - package/lib/routes/disinfo/namespace.ts +6 -0
 - package/lib/routes/disinfo/publications.ts +82 -0
 - package/lib/routes/diskanalyzer/namespace.ts +6 -0
 - package/lib/routes/diskanalyzer/whats-new.ts +74 -0
 - package/lib/routes/distill/index.ts +80 -0
 - package/lib/routes/distill/namespace.ts +6 -0
 - package/lib/routes/dlnews/category.ts +109 -0
 - package/lib/routes/dlnews/namespace.ts +6 -0
 - package/lib/routes/dlnews/templates/description.art +24 -0
 - package/lib/routes/dlnews/utils.ts +22 -0
 - package/lib/routes/dlsite/campaign.ts +194 -0
 - package/lib/routes/dlsite/ci-en/article.ts +89 -0
 - package/lib/routes/dlsite/index.ts +13 -0
 - package/lib/routes/dlsite/namespace.ts +6 -0
 - package/lib/routes/dlsite/new.ts +131 -0
 - package/lib/routes/dlsite/utils.ts +178 -0
 - package/lib/routes/dmzj/namespace.ts +6 -0
 - package/lib/routes/dmzj/news.ts +55 -0
 - package/lib/routes/dn/namespace.ts +6 -0
 - package/lib/routes/dn/news.ts +127 -0
 - package/lib/routes/dn/templates/description.art +15 -0
 - package/lib/routes/dnaindia/category.ts +0 -0
 - package/lib/routes/dnaindia/common.ts +68 -0
 - package/lib/routes/dnaindia/namespace.ts +7 -0
 - package/lib/routes/dnaindia/news.ts +24 -0
 - package/lib/routes/dnaindia/topic.ts +28 -0
 - package/lib/routes/dockerhub/build.ts +53 -0
 - package/lib/routes/dockerhub/namespace.ts +6 -0
 - package/lib/routes/dockerhub/tag.ts +55 -0
 - package/lib/routes/dockerhub/utils.ts +10 -0
 - package/lib/routes/docschina/namespace.ts +6 -0
 - package/lib/routes/docschina/weekly.ts +66 -0
 - package/lib/routes/dol/announce.ts +109 -0
 - package/lib/routes/dol/namespace.ts +6 -0
 - package/lib/routes/domp4/detail.ts +128 -0
 - package/lib/routes/domp4/latest-movie-bt.ts +71 -0
 - package/lib/routes/domp4/latest.ts +60 -0
 - package/lib/routes/domp4/namespace.ts +15 -0
 - package/lib/routes/domp4/utils.ts +96 -0
 - package/lib/routes/dongqiudi/daily.ts +22 -0
 - package/lib/routes/dongqiudi/namespace.ts +9 -0
 - package/lib/routes/dongqiudi/player-news.ts +24 -0
 - package/lib/routes/dongqiudi/result.ts +47 -0
 - package/lib/routes/dongqiudi/special.ts +54 -0
 - package/lib/routes/dongqiudi/team-news.ts +24 -0
 - package/lib/routes/dongqiudi/top-news.ts +62 -0
 - package/lib/routes/dongqiudi/utils.ts +165 -0
 - package/lib/routes/dora-world/article.ts +87 -0
 - package/lib/routes/dora-world/namespace.ts +6 -0
 - package/lib/routes/dorohedoro/namespace.ts +6 -0
 - package/lib/routes/dorohedoro/news.ts +97 -0
 - package/lib/routes/douban/book/latest.ts +65 -0
 - package/lib/routes/douban/book/rank.ts +56 -0
 - package/lib/routes/douban/channel/subject.ts +82 -0
 - package/lib/routes/douban/channel/topic.ts +85 -0
 - package/lib/routes/douban/commercialpress/latest.ts +74 -0
 - package/lib/routes/douban/event/hot.ts +49 -0
 - package/lib/routes/douban/namespace.ts +6 -0
 - package/lib/routes/douban/other/bookstore.ts +49 -0
 - package/lib/routes/douban/other/celebrity.ts +60 -0
 - package/lib/routes/douban/other/classification.ts +61 -0
 - package/lib/routes/douban/other/discussion.ts +83 -0
 - package/lib/routes/douban/other/doulist.ts +84 -0
 - package/lib/routes/douban/other/explore-column.ts +64 -0
 - package/lib/routes/douban/other/explore.ts +72 -0
 - package/lib/routes/douban/other/group.ts +74 -0
 - package/lib/routes/douban/other/jobs.ts +55 -0
 - package/lib/routes/douban/other/later.ts +51 -0
 - package/lib/routes/douban/other/latest-music.ts +96 -0
 - package/lib/routes/douban/other/list.ts +125 -0
 - package/lib/routes/douban/other/playing.ts +52 -0
 - package/lib/routes/douban/other/recommended.ts +102 -0
 - package/lib/routes/douban/other/replied.ts +106 -0
 - package/lib/routes/douban/other/replies.ts +81 -0
 - package/lib/routes/douban/other/topic.ts +100 -0
 - package/lib/routes/douban/other/ustop.ts +41 -0
 - package/lib/routes/douban/other/weekly-best.ts +78 -0
 - package/lib/routes/douban/people/status.ts +488 -0
 - package/lib/routes/douban/people/wish.ts +96 -0
 - package/lib/routes/douyin/hashtag.ts +122 -0
 - package/lib/routes/douyin/live.ts +106 -0
 - package/lib/routes/douyin/namespace.ts +20 -0
 - package/lib/routes/douyin/templates/embed.art +13 -0
 - package/lib/routes/douyin/user.ts +104 -0
 - package/lib/routes/douyin/utils.ts +134 -0
 - package/lib/routes/douyu/group.ts +76 -0
 - package/lib/routes/douyu/namespace.ts +6 -0
 - package/lib/routes/douyu/post.ts +85 -0
 - package/lib/routes/douyu/room.ts +98 -0
 - package/lib/routes/dribbble/keyword.ts +29 -0
 - package/lib/routes/dribbble/namespace.ts +6 -0
 - package/lib/routes/dribbble/popular.ts +36 -0
 - package/lib/routes/dribbble/templates/description.art +15 -0
 - package/lib/routes/dribbble/user.ts +34 -0
 - package/lib/routes/dribbble/utils.ts +158 -0
 - package/lib/routes/dtcj/datahero.ts +73 -0
 - package/lib/routes/dtcj/datainsight.ts +82 -0
 - package/lib/routes/dtcj/namespace.ts +6 -0
 - package/lib/routes/duozhuayu/namespace.ts +6 -0
 - package/lib/routes/duozhuayu/search.ts +94 -0
 - package/lib/routes/duozhuayu/templates/book.art +10 -0
 - package/lib/routes/dushu/fuzhou/index.ts +69 -0
 - package/lib/routes/dushu/namespace.ts +6 -0
 - package/lib/routes/dut/defaults.ts +57 -0
 - package/lib/routes/dut/index.ts +104 -0
 - package/lib/routes/dut/namespace.ts +6 -0
 - package/lib/routes/dut/shortcuts.ts +82 -0
 - package/lib/routes/dx2025/index.ts +93 -0
 - package/lib/routes/dx2025/namespace.ts +6 -0
 - package/lib/routes/dxy/namespace.ts +6 -0
 - package/lib/routes/dxy/profile/thread.ts +107 -0
 - package/lib/routes/dxy/special.ts +99 -0
 - package/lib/routes/dxy/utils.ts +66 -0
 - package/lib/routes/e-hentai/index.ts +127 -0
 - package/lib/routes/e-hentai/namespace.ts +6 -0
 - package/lib/routes/eagle/blog.ts +79 -0
 - package/lib/routes/eagle/changelog.ts +101 -0
 - package/lib/routes/eagle/namespace.ts +6 -0
 - package/lib/routes/earthquake/ceic.ts +105 -0
 - package/lib/routes/earthquake/index.ts +67 -0
 - package/lib/routes/earthquake/namespace.ts +6 -0
 - package/lib/routes/eastday/24.ts +124 -0
 - package/lib/routes/eastday/namespace.ts +6 -0
 - package/lib/routes/eastday/portrait.ts +73 -0
 - package/lib/routes/eastday/sh.ts +75 -0
 - package/lib/routes/eastmoney/namespace.ts +6 -0
 - package/lib/routes/eastmoney/report/index.ts +87 -0
 - package/lib/routes/eastmoney/search/index.ts +74 -0
 - package/lib/routes/eastmoney/ttjj/user.ts +85 -0
 - package/lib/routes/ecnu/contest.ts +70 -0
 - package/lib/routes/ecnu/jwc.ts +67 -0
 - package/lib/routes/ecnu/namespace.ts +6 -0
 - package/lib/routes/ecnu/yjs.ts +63 -0
 - package/lib/routes/economist/espresso.ts +106 -0
 - package/lib/routes/economist/full.ts +71 -0
 - package/lib/routes/economist/global-business-review.ts +123 -0
 - package/lib/routes/economist/namespace.ts +6 -0
 - package/lib/routes/ecust/e/news.ts +70 -0
 - package/lib/routes/ecust/gschool/yjs.ts +52 -0
 - package/lib/routes/ecust/jwc/notice.ts +89 -0
 - package/lib/routes/ecust/namespace.ts +6 -0
 - package/lib/routes/egsea/flash.ts +55 -0
 - package/lib/routes/egsea/namespace.ts +6 -0
 - package/lib/routes/ehentai/ehapi.ts +211 -0
 - package/lib/routes/ehentai/favorites.ts +47 -0
 - package/lib/routes/ehentai/namespace.ts +11 -0
 - package/lib/routes/ehentai/search.ts +54 -0
 - package/lib/routes/ehentai/tag.ts +42 -0
 - package/lib/routes/ekantipur/issue.ts +95 -0
 - package/lib/routes/ekantipur/namespace.ts +6 -0
 - package/lib/routes/elasticsearch-cn/index.ts +86 -0
 - package/lib/routes/elasticsearch-cn/namespace.ts +6 -0
 - package/lib/routes/eleduck/jobs.ts +64 -0
 - package/lib/routes/eleduck/namespace.ts +6 -0
 - package/lib/routes/eleduck/posts.ts +79 -0
 - package/lib/routes/elsevier/issue.ts +80 -0
 - package/lib/routes/elsevier/journal.ts +90 -0
 - package/lib/routes/elsevier/namespace.ts +6 -0
 - package/lib/routes/embassy/index.ts +69 -0
 - package/lib/routes/embassy/namespace.ts +114 -0
 - package/lib/routes/embassy/supported-list.ts +257 -0
 - package/lib/routes/epicgames/index.ts +115 -0
 - package/lib/routes/epicgames/namespace.ts +6 -0
 - package/lib/routes/epicgames/templates/description.art +3 -0
 - package/lib/routes/eprice/namespace.ts +6 -0
 - package/lib/routes/eprice/rss.ts +122 -0
 - package/lib/routes/esquirehk/namespace.ts +6 -0
 - package/lib/routes/esquirehk/tag.ts +104 -0
 - package/lib/routes/esquirehk/templates/subpages.art +30 -0
 - package/lib/routes/europechinese/latest.ts +66 -0
 - package/lib/routes/europechinese/namespace.ts +6 -0
 - package/lib/routes/eventernote/actors.ts +125 -0
 - package/lib/routes/eventernote/namespace.ts +6 -0
 - package/lib/routes/f-droid/apprelease.ts +57 -0
 - package/lib/routes/f-droid/namespace.ts +6 -0
 - package/lib/routes/famitsu/category.ts +152 -0
 - package/lib/routes/famitsu/namespace.ts +6 -0
 - package/lib/routes/famitsu/templates/description.art +7 -0
 - package/lib/routes/famitsu/types.ts +117 -0
 - package/lib/routes/fanbox/index.ts +62 -0
 - package/lib/routes/fanbox/namespace.ts +6 -0
 - package/lib/routes/fanbox/templates/fanbox-post.art +7 -0
 - package/lib/routes/fanbox/types.ts +239 -0
 - package/lib/routes/fanbox/utils.ts +188 -0
 - package/lib/routes/fanqienovel/namespace.ts +7 -0
 - package/lib/routes/fanqienovel/page.ts +100 -0
 - package/lib/routes/fansly/namespace.ts +6 -0
 - package/lib/routes/fansly/post.ts +54 -0
 - package/lib/routes/fansly/tag.ts +55 -0
 - package/lib/routes/fansly/templates/media.art +8 -0
 - package/lib/routes/fansly/templates/poll.art +4 -0
 - package/lib/routes/fansly/templates/tip-goal.art +2 -0
 - package/lib/routes/fansly/utils.ts +166 -0
 - package/lib/routes/fantia/namespace.ts +6 -0
 - package/lib/routes/fantia/search.ts +145 -0
 - package/lib/routes/fantia/user.ts +85 -0
 - package/lib/routes/fanxinzhui/index.ts +127 -0
 - package/lib/routes/fanxinzhui/namespace.ts +6 -0
 - package/lib/routes/fanxinzhui/templates/description.art +13 -0
 - package/lib/routes/farmatters/index.ts +115 -0
 - package/lib/routes/farmatters/namespace.ts +7 -0
 - package/lib/routes/farmatters/templates/description.art +9 -0
 - package/lib/routes/fastbull/express-news.ts +58 -0
 - package/lib/routes/fastbull/namespace.ts +6 -0
 - package/lib/routes/fastbull/news.ts +86 -0
 - package/lib/routes/fda/cdrh.ts +78 -0
 - package/lib/routes/fda/namespace.ts +6 -0
 - package/lib/routes/feng/forum.ts +73 -0
 - package/lib/routes/feng/namespace.ts +6 -0
 - package/lib/routes/feng/utils.ts +76 -0
 - package/lib/routes/ff14/ff14-global.ts +77 -0
 - package/lib/routes/ff14/ff14-zh.ts +75 -0
 - package/lib/routes/ff14/namespace.ts +6 -0
 - package/lib/routes/fffdm/manhua/manhua.ts +79 -0
 - package/lib/routes/fffdm/namespace.ts +6 -0
 - package/lib/routes/finology/bullets.ts +51 -0
 - package/lib/routes/finology/category.ts +60 -0
 - package/lib/routes/finology/most-viewed.ts +50 -0
 - package/lib/routes/finology/namespace.ts +6 -0
 - package/lib/routes/finology/tag.ts +55 -0
 - package/lib/routes/finology/utils.ts +60 -0
 - package/lib/routes/finviz/namespace.ts +6 -0
 - package/lib/routes/finviz/news.ts +98 -0
 - package/lib/routes/finviz/quote.ts +59 -0
 - package/lib/routes/firecore/index.ts +56 -0
 - package/lib/routes/firecore/namespace.ts +6 -0
 - package/lib/routes/firefox/addons.ts +59 -0
 - package/lib/routes/firefox/breaches.ts +63 -0
 - package/lib/routes/firefox/namespace.ts +6 -0
 - package/lib/routes/firefox/release.ts +44 -0
 - package/lib/routes/fisher-spb/namespace.ts +6 -0
 - package/lib/routes/fisher-spb/news.ts +76 -0
 - package/lib/routes/fishshell/index.ts +43 -0
 - package/lib/routes/fishshell/namespace.ts +6 -0
 - package/lib/routes/fjksbm/index.ts +81 -0
 - package/lib/routes/fjksbm/namespace.ts +6 -0
 - package/lib/routes/flyert/creditcard.ts +136 -0
 - package/lib/routes/flyert/namespace.ts +6 -0
 - package/lib/routes/flyert/preferential.ts +74 -0
 - package/lib/routes/flyert/utils.ts +72 -0
 - package/lib/routes/focustaiwan/index.ts +102 -0
 - package/lib/routes/focustaiwan/namespace.ts +6 -0
 - package/lib/routes/followin/index.ts +66 -0
 - package/lib/routes/followin/kol.ts +50 -0
 - package/lib/routes/followin/namespace.ts +6 -0
 - package/lib/routes/followin/news.ts +46 -0
 - package/lib/routes/followin/tag.ts +69 -0
 - package/lib/routes/followin/templates/thread.art +15 -0
 - package/lib/routes/followin/topic.ts +50 -0
 - package/lib/routes/followin/utils.ts +76 -0
 - package/lib/routes/foresightnews/article.ts +47 -0
 - package/lib/routes/foresightnews/column.ts +53 -0
 - package/lib/routes/foresightnews/index.ts +37 -0
 - package/lib/routes/foresightnews/namespace.ts +6 -0
 - package/lib/routes/foresightnews/news.ts +48 -0
 - package/lib/routes/foresightnews/templates/description.art +13 -0
 - package/lib/routes/foresightnews/util.ts +90 -0
 - package/lib/routes/foreverblog/feeds.ts +61 -0
 - package/lib/routes/foreverblog/namespace.ts +6 -0
 - package/lib/routes/fortnite/namespace.ts +6 -0
 - package/lib/routes/fortnite/news.ts +87 -0
 - package/lib/routes/fortunechina/index.ts +98 -0
 - package/lib/routes/fortunechina/namespace.ts +6 -0
 - package/lib/routes/fosshub/index.ts +71 -0
 - package/lib/routes/fosshub/namespace.ts +6 -0
 - package/lib/routes/free/namespace.ts +6 -0
 - package/lib/routes/free/rss.ts +35 -0
 - package/lib/routes/freebuf/index.ts +68 -0
 - package/lib/routes/freebuf/namespace.ts +6 -0
 - package/lib/routes/freecomputerbooks/index.ts +127 -0
 - package/lib/routes/freecomputerbooks/namespace.ts +6 -0
 - package/lib/routes/freecomputerbooks/templates/desc.art +3 -0
 - package/lib/routes/freewechat/namespace.ts +6 -0
 - package/lib/routes/freewechat/profile.ts +88 -0
 - package/lib/routes/freexcomic/book.ts +84 -0
 - package/lib/routes/freexcomic/namespace.ts +7 -0
 - package/lib/routes/ft/myft.ts +76 -0
 - package/lib/routes/ft/namespace.ts +6 -0
 - package/lib/routes/ftchinese/channel.ts +38 -0
 - package/lib/routes/ftchinese/namespace.ts +6 -0
 - package/lib/routes/ftchinese/utils.ts +90 -0
 - package/lib/routes/fuliba/latest.ts +50 -0
 - package/lib/routes/fuliba/namespace.ts +6 -0
 - package/lib/routes/furstar/archive.ts +53 -0
 - package/lib/routes/furstar/artists.ts +58 -0
 - package/lib/routes/furstar/index.ts +59 -0
 - package/lib/routes/furstar/namespace.ts +6 -0
 - package/lib/routes/furstar/utils.ts +99 -0
 - package/lib/routes/futunn/main.ts +80 -0
 - package/lib/routes/futunn/namespace.ts +6 -0
 - package/lib/routes/futunn/templates/description.art +6 -0
 - package/lib/routes/fx-markets/channel.ts +79 -0
 - package/lib/routes/fx-markets/namespace.ts +6 -0
 - package/lib/routes/fx678/kx.ts +70 -0
 - package/lib/routes/fx678/namespace.ts +6 -0
 - package/lib/routes/fxiaoke/crm.ts +86 -0
 - package/lib/routes/fxiaoke/namespace.ts +6 -0
 - package/lib/routes/fzmtr/announcements.ts +57 -0
 - package/lib/routes/fzmtr/namespace.ts +6 -0
 - package/lib/routes/gameapps/index.ts +94 -0
 - package/lib/routes/gameapps/namespace.ts +6 -0
 - package/lib/routes/gamebase/namespace.ts +6 -0
 - package/lib/routes/gamebase/news.ts +98 -0
 - package/lib/routes/gamegene/namespace.ts +6 -0
 - package/lib/routes/gamegene/news.ts +76 -0
 - package/lib/routes/gamer/ani/anime.ts +52 -0
 - package/lib/routes/gamer/ani/new-anime.ts +47 -0
 - package/lib/routes/gamer/gnn-index.ts +154 -0
 - package/lib/routes/gamer/hot.ts +76 -0
 - package/lib/routes/gamer/namespace.ts +6 -0
 - package/lib/routes/gamer520/index.ts +85 -0
 - package/lib/routes/gamer520/namespace.ts +6 -0
 - package/lib/routes/gamersecret/index.ts +106 -0
 - package/lib/routes/gamersecret/namespace.ts +6 -0
 - package/lib/routes/gamme/category.ts +60 -0
 - package/lib/routes/gamme/namespace.ts +6 -0
 - package/lib/routes/gamme/tag.ts +71 -0
 - package/lib/routes/gcores/category.ts +171 -0
 - package/lib/routes/gcores/collection.ts +161 -0
 - package/lib/routes/gcores/namespace.ts +6 -0
 - package/lib/routes/gcores/radio.ts +108 -0
 - package/lib/routes/gcores/tag.ts +158 -0
 - package/lib/routes/gdsrx/index.ts +101 -0
 - package/lib/routes/gdsrx/namespace.ts +6 -0
 - package/lib/routes/gdut/namespace.ts +6 -0
 - package/lib/routes/gdut/news.ts +168 -0
 - package/lib/routes/gdut/oa-news.ts +226 -0
 - package/lib/routes/gelonghui/home.ts +54 -0
 - package/lib/routes/gelonghui/hot-article.ts +60 -0
 - package/lib/routes/gelonghui/keyword.ts +54 -0
 - package/lib/routes/gelonghui/live.ts +59 -0
 - package/lib/routes/gelonghui/namespace.ts +6 -0
 - package/lib/routes/gelonghui/subject.ts +61 -0
 - package/lib/routes/gelonghui/user.ts +58 -0
 - package/lib/routes/gelonghui/utils.ts +25 -0
 - package/lib/routes/geocaching/blogs.ts +55 -0
 - package/lib/routes/geocaching/namespace.ts +6 -0
 - package/lib/routes/getdr/index.ts +63 -0
 - package/lib/routes/getdr/namespace.ts +6 -0
 - package/lib/routes/getitfree/index.ts +59 -0
 - package/lib/routes/getitfree/namespace.ts +6 -0
 - package/lib/routes/getitfree/util.ts +315 -0
 - package/lib/routes/gettr/namespace.ts +6 -0
 - package/lib/routes/gettr/user.ts +83 -0
 - package/lib/routes/gf-cn/namespace.ts +6 -0
 - package/lib/routes/gf-cn/news.ts +78 -0
 - package/lib/routes/gihyo/group.ts +72 -0
 - package/lib/routes/gihyo/namespace.ts +6 -0
 - package/lib/routes/gitee/namespace.ts +6 -0
 - package/lib/routes/gitee/repos/commits.ts +66 -0
 - package/lib/routes/gitee/repos/events.ts +92 -0
 - package/lib/routes/gitee/repos/releases.ts +58 -0
 - package/lib/routes/gitee/users/events.ts +110 -0
 - package/lib/routes/github/branches.ts +55 -0
 - package/lib/routes/github/comments.ts +206 -0
 - package/lib/routes/github/contributors.ts +104 -0
 - package/lib/routes/github/file.ts +66 -0
 - package/lib/routes/github/follower.ts +75 -0
 - package/lib/routes/github/gist.ts +59 -0
 - package/lib/routes/github/issue.ts +70 -0
 - package/lib/routes/github/namespace.ts +15 -0
 - package/lib/routes/github/notifications.ts +78 -0
 - package/lib/routes/github/pulls.ts +72 -0
 - package/lib/routes/github/pulse.ts +118 -0
 - package/lib/routes/github/repos.ts +58 -0
 - package/lib/routes/github/search.ts +66 -0
 - package/lib/routes/github/star.ts +76 -0
 - package/lib/routes/github/starred-repos.ts +62 -0
 - package/lib/routes/github/templates/pulse-description.art +24 -0
 - package/lib/routes/github/topic.ts +73 -0
 - package/lib/routes/github/trending.ts +128 -0
 - package/lib/routes/github/wiki.ts +65 -0
 - package/lib/routes/gitpod/blog.ts +84 -0
 - package/lib/routes/gitpod/changelog.ts +60 -0
 - package/lib/routes/gitpod/namespace.ts +6 -0
 - package/lib/routes/gitpod/utils.ts +3 -0
 - package/lib/routes/globallawreview/index.ts +70 -0
 - package/lib/routes/globallawreview/namespace.ts +6 -0
 - package/lib/routes/gocn/jobs.ts +53 -0
 - package/lib/routes/gocn/namespace.ts +6 -0
 - package/lib/routes/gocn/news.ts +40 -0
 - package/lib/routes/gocn/topics.ts +56 -0
 - package/lib/routes/gocn/utils.ts +36 -0
 - package/lib/routes/gofans/index.ts +63 -0
 - package/lib/routes/gofans/namespace.ts +6 -0
 - package/lib/routes/gofans/templates/description.art +7 -0
 - package/lib/routes/gogoanimehd/namespace.ts +6 -0
 - package/lib/routes/gogoanimehd/recent-releases.ts +62 -0
 - package/lib/routes/google/album.ts +55 -0
 - package/lib/routes/google/alerts.ts +52 -0
 - package/lib/routes/google/citations.ts +66 -0
 - package/lib/routes/google/doodles.ts +54 -0
 - package/lib/routes/google/extension.ts +53 -0
 - package/lib/routes/google/fonts.ts +78 -0
 - package/lib/routes/google/namespace.ts +6 -0
 - package/lib/routes/google/news.ts +89 -0
 - package/lib/routes/google/scholar.ts +71 -0
 - package/lib/routes/google/search.ts +85 -0
 - package/lib/routes/google/templates/description.art +6 -0
 - package/lib/routes/gov/ah/kjt.ts +229 -0
 - package/lib/routes/gov/ah/namespace.ts +8 -0
 - package/lib/routes/gov/beijing/bjedu/gh.ts +79 -0
 - package/lib/routes/gov/beijing/bphc/index.ts +64 -0
 - package/lib/routes/gov/beijing/jw/tzgg.ts +84 -0
 - package/lib/routes/gov/beijing/kw/index.ts +53 -0
 - package/lib/routes/gov/caac/cjwt.ts +87 -0
 - package/lib/routes/gov/caac/templates/description.art +25 -0
 - package/lib/routes/gov/cac/index.ts +73 -0
 - package/lib/routes/gov/ccdi/index.ts +27 -0
 - package/lib/routes/gov/ccdi/utils.ts +91 -0
 - package/lib/routes/gov/chinamine-safety/util.ts +72 -0
 - package/lib/routes/gov/chinamine-safety/xw.ts +46 -0
 - package/lib/routes/gov/chinamine-safety/zfxxgk.ts +45 -0
 - package/lib/routes/gov/chinatax/latest.ts +74 -0
 - package/lib/routes/gov/chongqing/gzw.ts +87 -0
 - package/lib/routes/gov/chongqing/rsks.ts +55 -0
 - package/lib/routes/gov/chongqing/sydwgkzp.ts +75 -0
 - package/lib/routes/gov/cmse/fxrw.ts +68 -0
 - package/lib/routes/gov/cmse/index.ts +79 -0
 - package/lib/routes/gov/cnnic/index.ts +64 -0
 - package/lib/routes/gov/csrc/auditstatus.ts +73 -0
 - package/lib/routes/gov/csrc/news.ts +81 -0
 - package/lib/routes/gov/customs/list.ts +111 -0
 - package/lib/routes/gov/customs/utils.ts +18 -0
 - package/lib/routes/gov/dianbai/dianbai.ts +26 -0
 - package/lib/routes/gov/forestry/gjlckjdjt.ts +127 -0
 - package/lib/routes/gov/forestry/templates/description.art +15 -0
 - package/lib/routes/gov/gaozhou/gaozhou.ts +27 -0
 - package/lib/routes/gov/general/general.ts +240 -0
 - package/lib/routes/gov/guangdong/tqyb/sncsyjxh.ts +65 -0
 - package/lib/routes/gov/guangdong/tqyb/tfxtq.ts +58 -0
 - package/lib/routes/gov/gz/index.ts +46 -0
 - package/lib/routes/gov/hebei/czt.ts +76 -0
 - package/lib/routes/gov/huazhou/huazhou.ts +27 -0
 - package/lib/routes/gov/huizhou/zwgk/index.ts +79 -0
 - package/lib/routes/gov/hunan/changsha/major-email.ts +82 -0
 - package/lib/routes/gov/immiau/news.ts +62 -0
 - package/lib/routes/gov/jgjcndrc/index.ts +96 -0
 - package/lib/routes/gov/jiangsu/wlt/index.ts +99 -0
 - package/lib/routes/gov/jiangsu/wlt/templates/wlt.art +9 -0
 - package/lib/routes/gov/jinan/healthcommission/medical-exam-notice.ts +74 -0
 - package/lib/routes/gov/maoming/maoming.ts +382 -0
 - package/lib/routes/gov/maonan/maonan.ts +123 -0
 - package/lib/routes/gov/mee/ywdt.ts +109 -0
 - package/lib/routes/gov/mem/sgcc.ts +93 -0
 - package/lib/routes/gov/mfa/wjdt.ts +87 -0
 - package/lib/routes/gov/mgs/mgs.ts +27 -0
 - package/lib/routes/gov/miit/wjfb.ts +86 -0
 - package/lib/routes/gov/miit/wjgs.ts +82 -0
 - package/lib/routes/gov/miit/yjzj.ts +85 -0
 - package/lib/routes/gov/miit/zcjd.ts +82 -0
 - package/lib/routes/gov/miit/zcwj.ts +73 -0
 - package/lib/routes/gov/mmht/mmht.ts +27 -0
 - package/lib/routes/gov/moa/moa.ts +257 -0
 - package/lib/routes/gov/moa/zdscxx.ts +111 -0
 - package/lib/routes/gov/moe/moe.ts +108 -0
 - package/lib/routes/gov/moe/s78.ts +69 -0
 - package/lib/routes/gov/mof/bond.ts +76 -0
 - package/lib/routes/gov/mofcom/article.ts +77 -0
 - package/lib/routes/gov/moj/aac/news.ts +72 -0
 - package/lib/routes/gov/moj/lfyjzj.ts +79 -0
 - package/lib/routes/gov/mot/index.ts +75 -0
 - package/lib/routes/gov/ndrc/fggz.ts +71 -0
 - package/lib/routes/gov/ndrc/xwdt.ts +63 -0
 - package/lib/routes/gov/nea/ghs.ts +84 -0
 - package/lib/routes/gov/news/index.ts +128 -0
 - package/lib/routes/gov/nifdc/index.ts +87 -0
 - package/lib/routes/gov/nmpa/generic.ts +70 -0
 - package/lib/routes/gov/nopss/index.ts +67 -0
 - package/lib/routes/gov/npc/index.ts +75 -0
 - package/lib/routes/gov/nrta/dsj.ts +82 -0
 - package/lib/routes/gov/nrta/news.ts +85 -0
 - package/lib/routes/gov/nsfc/index.ts +95 -0
 - package/lib/routes/gov/nsfc/shortcuts.ts +52 -0
 - package/lib/routes/gov/pbc/goutongjiaoliu.ts +85 -0
 - package/lib/routes/gov/pbc/gzlw.ts +52 -0
 - package/lib/routes/gov/pbc/namespace.ts +45 -0
 - package/lib/routes/gov/pbc/trade-announcement.ts +78 -0
 - package/lib/routes/gov/pbc/utils.ts +19 -0
 - package/lib/routes/gov/pbc/zcyj.ts +43 -0
 - package/lib/routes/gov/safe/business.ts +27 -0
 - package/lib/routes/gov/safe/complaint.ts +27 -0
 - package/lib/routes/gov/safe/templates/message.art +25 -0
 - package/lib/routes/gov/safe/util.ts +88 -0
 - package/lib/routes/gov/samr/templates/description.art +26 -0
 - package/lib/routes/gov/samr/xgzlyhd.ts +221 -0
 - package/lib/routes/gov/sasac/generic.ts +51 -0
 - package/lib/routes/gov/sdb/sdb.ts +27 -0
 - package/lib/routes/gov/sh/fgw/index.ts +155 -0
 - package/lib/routes/gov/sh/fgw/templates/description.art +17 -0
 - package/lib/routes/gov/sh/namespace.ts +8 -0
 - package/lib/routes/gov/sh/rsj/ksxm.ts +67 -0
 - package/lib/routes/gov/sh/wgj/templates/wgj.art +15 -0
 - package/lib/routes/gov/sh/wgj/wgj.ts +102 -0
 - package/lib/routes/gov/sh/wsjkw/yqtb/index.ts +58 -0
 - package/lib/routes/gov/sh/yjj/index.ts +72 -0
 - package/lib/routes/gov/shaanxi/kjt.ts +78 -0
 - package/lib/routes/gov/shenzhen/hrss/szksy/index.ts +69 -0
 - package/lib/routes/gov/shenzhen/xxgk/zfxxgj.ts +96 -0
 - package/lib/routes/gov/shenzhen/zjj/index.ts +73 -0
 - package/lib/routes/gov/shenzhen/zzb/index.ts +68 -0
 - package/lib/routes/gov/sichuan/deyang/govpublicinfo.ts +118 -0
 - package/lib/routes/gov/sichuan/deyang/mztoday.ts +167 -0
 - package/lib/routes/gov/stats/index.ts +144 -0
 - package/lib/routes/gov/suzhou/doc.ts +72 -0
 - package/lib/routes/gov/suzhou/fg.ts +71 -0
 - package/lib/routes/gov/suzhou/news.ts +167 -0
 - package/lib/routes/gov/taiyuan/rsj.ts +69 -0
 - package/lib/routes/gov/wuhan/whyw.ts +70 -0
 - package/lib/routes/gov/xinyi/xinyi.ts +27 -0
 - package/lib/routes/gov/xuzhou/hrss.ts +77 -0
 - package/lib/routes/gov/zhejiang/gwy.ts +134 -0
 - package/lib/routes/gov/zhengce/govall.ts +92 -0
 - package/lib/routes/gov/zhengce/index.ts +125 -0
 - package/lib/routes/gov/zhengce/wenjian.ts +74 -0
 - package/lib/routes/gov/zhengce/zhengceku.ts +41 -0
 - package/lib/routes/gov/zj/search.ts +80 -0
 - package/lib/routes/gq/namespace.ts +6 -0
 - package/lib/routes/gq/news.ts +59 -0
 - package/lib/routes/greasyfork/feedback.ts +55 -0
 - package/lib/routes/greasyfork/namespace.ts +6 -0
 - package/lib/routes/greasyfork/scripts.ts +76 -0
 - package/lib/routes/greasyfork/versions.ts +53 -0
 - package/lib/routes/grist/featured.ts +57 -0
 - package/lib/routes/grist/index.ts +33 -0
 - package/lib/routes/grist/namespace.ts +6 -0
 - package/lib/routes/grist/series.ts +46 -0
 - package/lib/routes/grist/topic.ts +91 -0
 - package/lib/routes/grist/utils.ts +24 -0
 - package/lib/routes/grubstreet/index.ts +24 -0
 - package/lib/routes/grubstreet/namespace.ts +6 -0
 - package/lib/routes/grubstreet/utils.ts +83 -0
 - package/lib/routes/guancha/headline.ts +77 -0
 - package/lib/routes/guancha/index.ts +189 -0
 - package/lib/routes/guancha/member.ts +115 -0
 - package/lib/routes/guancha/namespace.ts +6 -0
 - package/lib/routes/guancha/personalpage.ts +91 -0
 - package/lib/routes/guancha/topic.ts +72 -0
 - package/lib/routes/guangdiu/cheaps.ts +47 -0
 - package/lib/routes/guangdiu/index.ts +62 -0
 - package/lib/routes/guangdiu/namespace.ts +6 -0
 - package/lib/routes/guangdiu/rank.ts +64 -0
 - package/lib/routes/guangdiu/search.ts +60 -0
 - package/lib/routes/guangzhoumetro/namespace.ts +6 -0
 - package/lib/routes/guangzhoumetro/news.ts +56 -0
 - package/lib/routes/guanhai/index.ts +70 -0
 - package/lib/routes/guanhai/namespace.ts +6 -0
 - package/lib/routes/guduodata/daily.ts +92 -0
 - package/lib/routes/guduodata/namespace.ts +6 -0
 - package/lib/routes/gumroad/index.ts +63 -0
 - package/lib/routes/gumroad/namespace.ts +6 -0
 - package/lib/routes/guokr/channel.ts +59 -0
 - package/lib/routes/guokr/namespace.ts +6 -0
 - package/lib/routes/guokr/scientific.ts +38 -0
 - package/lib/routes/guokr/utils.ts +37 -0
 - package/lib/routes/gxmzu/ai.ts +43 -0
 - package/lib/routes/gxmzu/lib.ts +79 -0
 - package/lib/routes/gxmzu/namespace.ts +6 -0
 - package/lib/routes/gxmzu/utils/index.ts +68 -0
 - package/lib/routes/gxmzu/yjs.ts +43 -0
 - package/lib/routes/gzdaily/app.ts +89 -0
 - package/lib/routes/gzdaily/namespace.ts +6 -0
 - package/lib/routes/gzhu/namespace.ts +6 -0
 - package/lib/routes/gzhu/yjs.ts +56 -0
 - package/lib/routes/hackernews/index.ts +138 -0
 - package/lib/routes/hackernews/namespace.ts +6 -0
 - package/lib/routes/hackertalk/index.ts +39 -0
 - package/lib/routes/hackertalk/namespace.ts +6 -0
 - package/lib/routes/hacking8/index.ts +72 -0
 - package/lib/routes/hacking8/namespace.ts +6 -0
 - package/lib/routes/hacking8/search.ts +73 -0
 - package/lib/routes/hackmd/namespace.ts +6 -0
 - package/lib/routes/hackmd/profile.ts +43 -0
 - package/lib/routes/hackyournews/index.ts +65 -0
 - package/lib/routes/hackyournews/namespace.ts +6 -0
 - package/lib/routes/hafu/namespace.ts +6 -0
 - package/lib/routes/hafu/news.ts +37 -0
 - package/lib/routes/hafu/utils.ts +210 -0
 - package/lib/routes/hakkatv/namespace.ts +6 -0
 - package/lib/routes/hakkatv/type.ts +94 -0
 - package/lib/routes/hameln/chapter.ts +85 -0
 - package/lib/routes/hameln/namespace.ts +6 -0
 - package/lib/routes/harvard/health/blog.ts +78 -0
 - package/lib/routes/harvard/namespace.ts +6 -0
 - package/lib/routes/hashnode/blog.ts +93 -0
 - package/lib/routes/hashnode/namespace.ts +6 -0
 - package/lib/routes/hbooker/chapter.ts +71 -0
 - package/lib/routes/hbooker/namespace.ts +6 -0
 - package/lib/routes/hbr/namespace.ts +6 -0
 - package/lib/routes/hbr/topic.ts +88 -0
 - package/lib/routes/hdu/cs/notice.ts +80 -0
 - package/lib/routes/hdu/cs/pg.ts +80 -0
 - package/lib/routes/hdu/namespace.ts +6 -0
 - package/lib/routes/hebtv/namespace.ts +6 -0
 - package/lib/routes/hebtv/nong-bo-shi-zai-xing-dong.ts +138 -0
 - package/lib/routes/hebtv/templates/description.art +24 -0
 - package/lib/routes/hellobtc/information.ts +71 -0
 - package/lib/routes/hellobtc/kepu.ts +87 -0
 - package/lib/routes/hellobtc/namespace.ts +6 -0
 - package/lib/routes/hellobtc/news.ts +54 -0
 - package/lib/routes/hellogithub/index.ts +128 -0
 - package/lib/routes/hellogithub/namespace.ts +6 -0
 - package/lib/routes/hellogithub/report.ts +71 -0
 - package/lib/routes/hellogithub/volume.ts +77 -0
 - package/lib/routes/hex-rays/index.ts +73 -0
 - package/lib/routes/hex-rays/namespace.ts +6 -0
 - package/lib/routes/hicairo/namespace.ts +6 -0
 - package/lib/routes/hicairo/rss.ts +48 -0
 - package/lib/routes/hinatazaka46/blog.ts +96 -0
 - package/lib/routes/hinatazaka46/namespace.ts +6 -0
 - package/lib/routes/hinatazaka46/news.ts +77 -0
 - package/lib/routes/hit/hitgs.ts +72 -0
 - package/lib/routes/hit/jwc.ts +86 -0
 - package/lib/routes/hit/namespace.ts +9 -0
 - package/lib/routes/hit/today.ts +92 -0
 - package/lib/routes/hitcon/namespace.ts +6 -0
 - package/lib/routes/hitcon/templates/zeroday.art +8 -0
 - package/lib/routes/hitcon/zeroday.ts +109 -0
 - package/lib/routes/hitsz/article.ts +64 -0
 - package/lib/routes/hitsz/namespace.ts +6 -0
 - package/lib/routes/hitwh/namespace.ts +6 -0
 - package/lib/routes/hitwh/today.ts +80 -0
 - package/lib/routes/hizu/index.ts +128 -0
 - package/lib/routes/hizu/namespace.ts +6 -0
 - package/lib/routes/hk01/channel.ts +37 -0
 - package/lib/routes/hk01/hot.ts +46 -0
 - package/lib/routes/hk01/issue.ts +36 -0
 - package/lib/routes/hk01/latest.ts +46 -0
 - package/lib/routes/hk01/namespace.ts +6 -0
 - package/lib/routes/hk01/tag.ts +36 -0
 - package/lib/routes/hk01/utils.ts +44 -0
 - package/lib/routes/hk01/zone.ts +37 -0
 - package/lib/routes/hkej/index.ts +183 -0
 - package/lib/routes/hkej/namespace.ts +6 -0
 - package/lib/routes/hkepc/data.ts +60 -0
 - package/lib/routes/hkepc/index.ts +127 -0
 - package/lib/routes/hkepc/namespace.ts +6 -0
 - package/lib/routes/hket/index.ts +221 -0
 - package/lib/routes/hket/namespace.ts +6 -0
 - package/lib/routes/hket/templates/image.art +4 -0
 - package/lib/routes/hkjunkcall/index.ts +69 -0
 - package/lib/routes/hkjunkcall/namespace.ts +6 -0
 - package/lib/routes/hljucm/namespace.ts +6 -0
 - package/lib/routes/hljucm/yjsy.ts +79 -0
 - package/lib/routes/hnrb/index.ts +124 -0
 - package/lib/routes/hnrb/namespace.ts +6 -0
 - package/lib/routes/hnu/careers.ts +58 -0
 - package/lib/routes/hnu/namespace.ts +6 -0
 - package/lib/routes/hongkong/chp.ts +118 -0
 - package/lib/routes/hongkong/dh.ts +84 -0
 - package/lib/routes/hongkong/namespace.ts +6 -0
 - package/lib/routes/hostmonit/cloudflareyes.ts +116 -0
 - package/lib/routes/hostmonit/cloudflareyesv6.ts +11 -0
 - package/lib/routes/hostmonit/namespace.ts +6 -0
 - package/lib/routes/hostmonit/templates/description.art +28 -0
 - package/lib/routes/hostmonit/templates/title.art +1 -0
 - package/lib/routes/hotukdeals/hottest.ts +50 -0
 - package/lib/routes/hotukdeals/index.ts +53 -0
 - package/lib/routes/hotukdeals/namespace.ts +6 -0
 - package/lib/routes/houxu/events.ts +56 -0
 - package/lib/routes/houxu/index.ts +55 -0
 - package/lib/routes/houxu/lives.ts +60 -0
 - package/lib/routes/houxu/memory.ts +56 -0
 - package/lib/routes/houxu/namespace.ts +6 -0
 - package/lib/routes/howtoforge/namespace.ts +6 -0
 - package/lib/routes/howtoforge/rss.ts +48 -0
 - package/lib/routes/hoyolab/constant.ts +28 -0
 - package/lib/routes/hoyolab/namespace.ts +6 -0
 - package/lib/routes/hoyolab/news.ts +143 -0
 - package/lib/routes/hoyolab/templates/post.art +7 -0
 - package/lib/routes/hoyolab/utils.ts +29 -0
 - package/lib/routes/hpoi/all.ts +34 -0
 - package/lib/routes/hpoi/banner-item.ts +51 -0
 - package/lib/routes/hpoi/character.ts +27 -0
 - package/lib/routes/hpoi/info.ts +75 -0
 - package/lib/routes/hpoi/namespace.ts +6 -0
 - package/lib/routes/hpoi/user.ts +65 -0
 - package/lib/routes/hpoi/utils.ts +47 -0
 - package/lib/routes/hpoi/work.ts +27 -0
 - package/lib/routes/hrbeu/gx/card.ts +45 -0
 - package/lib/routes/hrbeu/gx/list.ts +69 -0
 - package/lib/routes/hrbeu/job/bigemploy.ts +50 -0
 - package/lib/routes/hrbeu/job/calendar.ts +81 -0
 - package/lib/routes/hrbeu/job/list.ts +88 -0
 - package/lib/routes/hrbeu/namespace.ts +6 -0
 - package/lib/routes/hrbeu/uae/news.ts +94 -0
 - package/lib/routes/hrbeu/ugs/news.ts +173 -0
 - package/lib/routes/hrbeu/yjsy/list.ts +85 -0
 - package/lib/routes/hrbust/jwzx.ts +59 -0
 - package/lib/routes/hrbust/namespace.ts +6 -0
 - package/lib/routes/hrbust/utils.ts +65 -0
 - package/lib/routes/huanqiu/index.ts +103 -0
 - package/lib/routes/huanqiu/namespace.ts +6 -0
 - package/lib/routes/hubu/index.ts +124 -0
 - package/lib/routes/hubu/namespace.ts +8 -0
 - package/lib/routes/hubu/zhxy.ts +228 -0
 - package/lib/routes/huggingface/blog-zh.ts +59 -0
 - package/lib/routes/huggingface/daily-papers.ts +51 -0
 - package/lib/routes/huggingface/namespace.ts +6 -0
 - package/lib/routes/hunanpea/namespace.ts +6 -0
 - package/lib/routes/hunanpea/rsks.ts +67 -0
 - package/lib/routes/hunau/gfxy/index.ts +40 -0
 - package/lib/routes/hunau/ied.ts +42 -0
 - package/lib/routes/hunau/jwc.ts +39 -0
 - package/lib/routes/hunau/namespace.ts +6 -0
 - package/lib/routes/hunau/utils/category-title.ts +31 -0
 - package/lib/routes/hunau/utils/common.ts +62 -0
 - package/lib/routes/hunau/utils/index-page.ts +10 -0
 - package/lib/routes/hunau/utils/news-content.ts +47 -0
 - package/lib/routes/hunau/xky/index.ts +41 -0
 - package/lib/routes/huoxian/namespace.ts +6 -0
 - package/lib/routes/huoxian/zone.ts +38 -0
 - package/lib/routes/hupu/all.ts +105 -0
 - package/lib/routes/hupu/bbs.ts +117 -0
 - package/lib/routes/hupu/index.ts +102 -0
 - package/lib/routes/hupu/namespace.ts +6 -0
 - package/lib/routes/hust/aia/news.ts +51 -0
 - package/lib/routes/hust/aia/notice.ts +51 -0
 - package/lib/routes/hust/namespace.ts +6 -0
 - package/lib/routes/hust/yjs.ts +52 -0
 - package/lib/routes/huxiu/brief-column.ts +49 -0
 - package/lib/routes/huxiu/channel.ts +65 -0
 - package/lib/routes/huxiu/club.ts +39 -0
 - package/lib/routes/huxiu/collection.ts +48 -0
 - package/lib/routes/huxiu/member.ts +39 -0
 - package/lib/routes/huxiu/moment.ts +51 -0
 - package/lib/routes/huxiu/namespace.ts +6 -0
 - package/lib/routes/huxiu/search.ts +61 -0
 - package/lib/routes/huxiu/tag.ts +47 -0
 - package/lib/routes/huxiu/templates/description.art +46 -0
 - package/lib/routes/huxiu/util.ts +446 -0
 - package/lib/routes/hypergryph/announce.ts +89 -0
 - package/lib/routes/hypergryph/japan.ts +78 -0
 - package/lib/routes/hypergryph/namespace.ts +7 -0
 - package/lib/routes/hypergryph/news.ts +118 -0
 - package/lib/routes/ianspriggs/index.ts +116 -0
 - package/lib/routes/ianspriggs/namespace.ts +6 -0
 - package/lib/routes/ianspriggs/templates/description.art +13 -0
 - package/lib/routes/icac/namespace.ts +6 -0
 - package/lib/routes/icac/news.ts +72 -0
 - package/lib/routes/icac/utils.ts +13 -0
 - package/lib/routes/icbc/namespace.ts +6 -0
 - package/lib/routes/icbc/whpj.ts +86 -0
 - package/lib/routes/idaily/index.ts +85 -0
 - package/lib/routes/idaily/namespace.ts +6 -0
 - package/lib/routes/idaily/templates/description.art +17 -0
 - package/lib/routes/idolypride/namespace.ts +6 -0
 - package/lib/routes/idolypride/news.ts +54 -0
 - package/lib/routes/ieee/journal.ts +73 -0
 - package/lib/routes/ieee/namespace.ts +6 -0
 - package/lib/routes/ieee/templates/description.art +11 -0
 - package/lib/routes/ieee-security/namespace.ts +6 -0
 - package/lib/routes/ieee-security/sp.ts +53 -0
 - package/lib/routes/iehou/index.ts +125 -0
 - package/lib/routes/iehou/namespace.ts +8 -0
 - package/lib/routes/ielts/index.ts +81 -0
 - package/lib/routes/ielts/namespace.ts +6 -0
 - package/lib/routes/ifeng/feng.ts +92 -0
 - package/lib/routes/ifeng/namespace.ts +6 -0
 - package/lib/routes/ifeng/news.ts +67 -0
 - package/lib/routes/ifeng/templates/video.art +5 -0
 - package/lib/routes/ifeng/utils.ts +26 -0
 - package/lib/routes/ifi-audio/download.ts +58 -0
 - package/lib/routes/ifi-audio/namespace.ts +6 -0
 - package/lib/routes/iguoguo/index.ts +95 -0
 - package/lib/routes/iguoguo/namespace.ts +6 -0
 - package/lib/routes/iiilab/index.ts +39 -0
 - package/lib/routes/iiilab/namespace.ts +6 -0
 - package/lib/routes/ikea/cn/family-offers.ts +95 -0
 - package/lib/routes/ikea/cn/low-price.ts +47 -0
 - package/lib/routes/ikea/cn/new.ts +64 -0
 - package/lib/routes/ikea/cn/utils.ts +42 -0
 - package/lib/routes/ikea/gb/new.ts +82 -0
 - package/lib/routes/ikea/gb/offer.ts +97 -0
 - package/lib/routes/ikea/namespace.ts +6 -0
 - package/lib/routes/imagemagick/changelog.ts +72 -0
 - package/lib/routes/imagemagick/namespace.ts +6 -0
 - package/lib/routes/imdb/chart.ts +61 -0
 - package/lib/routes/imdb/namespace.ts +6 -0
 - package/lib/routes/imdb/templates/chart.art +15 -0
 - package/lib/routes/imdb/types.ts +103 -0
 - package/lib/routes/imiker/jinghua.ts +116 -0
 - package/lib/routes/imiker/namespace.ts +6 -0
 - package/lib/routes/imiker/templates/description.art +32 -0
 - package/lib/routes/index.tsx +10 -0
 - package/lib/routes/indiansinkuwait/latest.ts +69 -0
 - package/lib/routes/indiansinkuwait/namespace.ts +6 -0
 - package/lib/routes/indienova/article.ts +44 -0
 - package/lib/routes/indienova/column.ts +84 -0
 - package/lib/routes/indienova/gamedb.ts +64 -0
 - package/lib/routes/indienova/namespace.ts +6 -0
 - package/lib/routes/indienova/usergames.ts +68 -0
 - package/lib/routes/indienova/utils.ts +39 -0
 - package/lib/routes/inewsweek/index.ts +83 -0
 - package/lib/routes/inewsweek/namespace.ts +6 -0
 - package/lib/routes/infoq/namespace.ts +6 -0
 - package/lib/routes/infoq/recommend.ts +51 -0
 - package/lib/routes/infoq/topic.ts +67 -0
 - package/lib/routes/infoq/utils.ts +109 -0
 - package/lib/routes/informs/index.ts +97 -0
 - package/lib/routes/informs/namespace.ts +6 -0
 - package/lib/routes/infzm/index.ts +75 -0
 - package/lib/routes/infzm/types.ts +17 -0
 - package/lib/routes/inoreader/index.ts +53 -0
 - package/lib/routes/inoreader/namespace.ts +6 -0
 - package/lib/routes/inoreader/rss.ts +66 -0
 - package/lib/routes/instagram/common-utils.ts +63 -0
 - package/lib/routes/instagram/namespace.ts +9 -0
 - package/lib/routes/instagram/private-api/index.ts +124 -0
 - package/lib/routes/instagram/private-api/utils.ts +38 -0
 - package/lib/routes/instagram/templates/images.art +12 -0
 - package/lib/routes/instagram/templates/video.art +8 -0
 - package/lib/routes/instagram/web-api/index.ts +118 -0
 - package/lib/routes/instagram/web-api/utils.ts +218 -0
 - package/lib/routes/instructables/namespace.ts +6 -0
 - package/lib/routes/instructables/projects.ts +85 -0
 - package/lib/routes/ippa/namespace.ts +6 -0
 - package/lib/routes/ippa/rss.ts +35 -0
 - package/lib/routes/ipsw/index.ts +109 -0
 - package/lib/routes/ipsw/namespace.ts +6 -0
 - package/lib/routes/iqilu/namespace.ts +6 -0
 - package/lib/routes/iqilu/program.ts +110 -0
 - package/lib/routes/iqilu/templates/description.art +24 -0
 - package/lib/routes/iqiyi/album.ts +88 -0
 - package/lib/routes/iqiyi/namespace.ts +6 -0
 - package/lib/routes/iqiyi/video.ts +79 -0
 - package/lib/routes/iqnew/latest.ts +83 -0
 - package/lib/routes/iqnew/namespace.ts +6 -0
 - package/lib/routes/iresearch/namespace.ts +6 -0
 - package/lib/routes/iresearch/report.ts +89 -0
 - package/lib/routes/iresearch/weekly.ts +63 -0
 - package/lib/routes/issuehunt/funded.ts +47 -0
 - package/lib/routes/issuehunt/namespace.ts +6 -0
 - package/lib/routes/itc/collection.ts +66 -0
 - package/lib/routes/itc/namespace.ts +6 -0
 - package/lib/routes/itch/devlog.ts +95 -0
 - package/lib/routes/itch/index.ts +69 -0
 - package/lib/routes/itch/namespace.ts +6 -0
 - package/lib/routes/itch/posts.ts +65 -0
 - package/lib/routes/ithome/index.ts +109 -0
 - package/lib/routes/ithome/namespace.ts +6 -0
 - package/lib/routes/ithome/ranking.ts +93 -0
 - package/lib/routes/ithome/tag.ts +84 -0
 - package/lib/routes/ithome/templates/description.art +13 -0
 - package/lib/routes/ithome/tw/feeds.ts +66 -0
 - package/lib/routes/ithome/zt.ts +150 -0
 - package/lib/routes/iwara/index.ts +64 -0
 - package/lib/routes/iwara/namespace.ts +6 -0
 - package/lib/routes/iwara/subscriptions.ts +186 -0
 - package/lib/routes/iwara/templates/subscriptions.art +1 -0
 - package/lib/routes/ixigua/namespace.ts +6 -0
 - package/lib/routes/ixigua/user-video.ts +65 -0
 - package/lib/routes/jandan/index.ts +46 -0
 - package/lib/routes/jandan/namespace.ts +6 -0
 - package/lib/routes/jandan/section.ts +59 -0
 - package/lib/routes/japanpost/namespace.ts +6 -0
 - package/lib/routes/japanpost/templates/track_item_desc.art +14 -0
 - package/lib/routes/japanpost/track.ts +137 -0
 - package/lib/routes/japanpost/utils.ts +89 -0
 - package/lib/routes/javbus/index.ts +202 -0
 - package/lib/routes/javbus/namespace.ts +23 -0
 - package/lib/routes/javdb/actors.ts +56 -0
 - package/lib/routes/javdb/index.ts +65 -0
 - package/lib/routes/javdb/lists.ts +43 -0
 - package/lib/routes/javdb/makers.ts +58 -0
 - package/lib/routes/javdb/namespace.ts +19 -0
 - package/lib/routes/javdb/rankings.ts +55 -0
 - package/lib/routes/javdb/search.ts +76 -0
 - package/lib/routes/javdb/series.ts +58 -0
 - package/lib/routes/javdb/tags.ts +55 -0
 - package/lib/routes/javdb/utils.ts +104 -0
 - package/lib/routes/javdb/videocodes.ts +56 -0
 - package/lib/routes/javlibrary/bestrated.ts +21 -0
 - package/lib/routes/javlibrary/bestreviews.ts +32 -0
 - package/lib/routes/javlibrary/genre.ts +26 -0
 - package/lib/routes/javlibrary/maker.ts +33 -0
 - package/lib/routes/javlibrary/mostwanted.ts +21 -0
 - package/lib/routes/javlibrary/namespace.ts +6 -0
 - package/lib/routes/javlibrary/newentries.ts +17 -0
 - package/lib/routes/javlibrary/newrelease.ts +21 -0
 - package/lib/routes/javlibrary/star.ts +39 -0
 - package/lib/routes/javlibrary/update.ts +17 -0
 - package/lib/routes/javlibrary/user.ts +22 -0
 - package/lib/routes/javlibrary/utils.ts +97 -0
 - package/lib/routes/jd/namespace.ts +6 -0
 - package/lib/routes/jd/price.ts +67 -0
 - package/lib/routes/jewishmuseum/exhibitions.ts +35 -0
 - package/lib/routes/jewishmuseum/namespace.ts +6 -0
 - package/lib/routes/jianshu/collection.ts +54 -0
 - package/lib/routes/jianshu/home.ts +53 -0
 - package/lib/routes/jianshu/namespace.ts +6 -0
 - package/lib/routes/jianshu/user.ts +54 -0
 - package/lib/routes/jianshu/utils.ts +56 -0
 - package/lib/routes/jiaoliudao/index.ts +41 -0
 - package/lib/routes/jiaoliudao/namespace.ts +6 -0
 - package/lib/routes/jiemian/list.ts +14 -0
 - package/lib/routes/jiemian/lists.ts +112 -0
 - package/lib/routes/jiemian/namespace.ts +6 -0
 - package/lib/routes/jiemian/templates/description.art +39 -0
 - package/lib/routes/jike/namespace.ts +6 -0
 - package/lib/routes/jike/topic-text.ts +47 -0
 - package/lib/routes/jike/topic.ts +72 -0
 - package/lib/routes/jike/user.ts +183 -0
 - package/lib/routes/jike/utils.ts +197 -0
 - package/lib/routes/jin10/index.ts +88 -0
 - package/lib/routes/jin10/namespace.ts +6 -0
 - package/lib/routes/jin10/topic.ts +76 -0
 - package/lib/routes/jingzhengu/namespace.ts +6 -0
 - package/lib/routes/jingzhengu/news.ts +77 -0
 - package/lib/routes/jingzhengu/types.ts +39 -0
 - package/lib/routes/jingzhengu/utils.ts +35 -0
 - package/lib/routes/jinse/catalogue.ts +131 -0
 - package/lib/routes/jinse/lives.ts +112 -0
 - package/lib/routes/jinse/namespace.ts +6 -0
 - package/lib/routes/jinse/templates/description.art +34 -0
 - package/lib/routes/jinse/timeline.ts +123 -0
 - package/lib/routes/jisilu/index.ts +133 -0
 - package/lib/routes/jisilu/namespace.ts +6 -0
 - package/lib/routes/jiuyangongshe/community.ts +147 -0
 - package/lib/routes/jiuyangongshe/namespace.ts +7 -0
 - package/lib/routes/jiuyangongshe/templates/community-description.art +4 -0
 - package/lib/routes/jjwxc/author.ts +90 -0
 - package/lib/routes/jjwxc/book.ts +129 -0
 - package/lib/routes/jjwxc/namespace.ts +6 -0
 - package/lib/routes/jjwxc/templates/author.art +28 -0
 - package/lib/routes/jjwxc/templates/book.art +44 -0
 - package/lib/routes/jlu/ccst/xwzx/index.ts +63 -0
 - package/lib/routes/jlu/jwc.ts +55 -0
 - package/lib/routes/jlu/namespace.ts +6 -0
 - package/lib/routes/jornada/index.ts +93 -0
 - package/lib/routes/jornada/namespace.ts +6 -0
 - package/lib/routes/jou/home.ts +43 -0
 - package/lib/routes/jou/namespace.ts +6 -0
 - package/lib/routes/jou/utils/index.ts +69 -0
 - package/lib/routes/jou/yz.ts +43 -0
 - package/lib/routes/jpxgmn/namespace.ts +6 -0
 - package/lib/routes/jpxgmn/search.ts +45 -0
 - package/lib/routes/jpxgmn/tab.ts +57 -0
 - package/lib/routes/jpxgmn/templates/description.art +3 -0
 - package/lib/routes/jpxgmn/utils.ts +36 -0
 - package/lib/routes/jpxgmn/weekly.ts +54 -0
 - package/lib/routes/jseea/namespace.ts +6 -0
 - package/lib/routes/jseea/news.ts +79 -0
 - package/lib/routes/jsu/cxzx.ts +84 -0
 - package/lib/routes/jsu/jwc.ts +82 -0
 - package/lib/routes/jsu/math.ts +61 -0
 - package/lib/routes/jsu/namespace.ts +6 -0
 - package/lib/routes/jsu/rjxy.ts +63 -0
 - package/lib/routes/jsu/universityindex.ts +68 -0
 - package/lib/routes/jsu/utils/index.ts +50 -0
 - package/lib/routes/juejin/books.ts +56 -0
 - package/lib/routes/juejin/category.ts +62 -0
 - package/lib/routes/juejin/collection.ts +51 -0
 - package/lib/routes/juejin/column.ts +56 -0
 - package/lib/routes/juejin/favorites.ts +65 -0
 - package/lib/routes/juejin/namespace.ts +6 -0
 - package/lib/routes/juejin/pins.ts +89 -0
 - package/lib/routes/juejin/posts.ts +50 -0
 - package/lib/routes/juejin/tag.ts +65 -0
 - package/lib/routes/juejin/trending.ts +118 -0
 - package/lib/routes/juejin/utils.ts +55 -0
 - package/lib/routes/jump/discount.ts +157 -0
 - package/lib/routes/jump/namespace.ts +6 -0
 - package/lib/routes/junhe/legal-updates.ts +98 -0
 - package/lib/routes/junhe/namespace.ts +8 -0
 - package/lib/routes/kadokawa/blog.ts +134 -0
 - package/lib/routes/kadokawa/namespace.ts +8 -0
 - package/lib/routes/kadokawa/templates/description.art +21 -0
 - package/lib/routes/kamen-rider-official/namespace.ts +6 -0
 - package/lib/routes/kamen-rider-official/news.ts +165 -0
 - package/lib/routes/kamen-rider-official/templates/description.art +10 -0
 - package/lib/routes/kantarworldpanel/index.ts +108 -0
 - package/lib/routes/kantarworldpanel/namespace.ts +6 -0
 - package/lib/routes/kantarworldpanel/templates/description.art +9 -0
 - package/lib/routes/kanxue/namespace.ts +6 -0
 - package/lib/routes/kanxue/topic.ts +153 -0
 - package/lib/routes/kaopu/namespace.ts +6 -0
 - package/lib/routes/kaopu/news.ts +51 -0
 - package/lib/routes/kbs/namespace.ts +6 -0
 - package/lib/routes/kbs/news.ts +97 -0
 - package/lib/routes/kbs/today.ts +86 -0
 - package/lib/routes/kcna/namespace.ts +6 -0
 - package/lib/routes/kcna/news.ts +124 -0
 - package/lib/routes/kcna/utils.ts +60 -0
 - package/lib/routes/ke/namespace.ts +6 -0
 - package/lib/routes/ke/results.ts +61 -0
 - package/lib/routes/keep/namespace.ts +6 -0
 - package/lib/routes/keep/user.ts +84 -0
 - package/lib/routes/keepass/namespace.ts +6 -0
 - package/lib/routes/keepass/news.ts +55 -0
 - package/lib/routes/kemono/index.ts +169 -0
 - package/lib/routes/kemono/namespace.ts +6 -0
 - package/lib/routes/kemono/templates/source.art +24 -0
 - package/lib/routes/kepu/live.ts +118 -0
 - package/lib/routes/kepu/namespace.ts +6 -0
 - package/lib/routes/kepu/templates/description.art +33 -0
 - package/lib/routes/keylol/index.ts +168 -0
 - package/lib/routes/keylol/namespace.ts +6 -0
 - package/lib/routes/kimlaw/namespace.ts +6 -0
 - package/lib/routes/kimlaw/thesis.ts +70 -0
 - package/lib/routes/konghq/blog-posts.ts +78 -0
 - package/lib/routes/konghq/namespace.ts +7 -0
 - package/lib/routes/kpmg/insights.ts +143 -0
 - package/lib/routes/kpmg/namespace.ts +10 -0
 - package/lib/routes/kpmg/templates/description.art +11 -0
 - package/lib/routes/kuaidi100/index.ts +72 -0
 - package/lib/routes/kuaidi100/namespace.ts +6 -0
 - package/lib/routes/kuaidi100/supported-company.ts +41 -0
 - package/lib/routes/kuaidi100/utils.ts +260 -0
 - package/lib/routes/kunchengblog/essay.ts +91 -0
 - package/lib/routes/kunchengblog/namespace.ts +6 -0
 - package/lib/routes/kuwaitlocal/index.ts +75 -0
 - package/lib/routes/kuwaitlocal/namespace.ts +6 -0
 - package/lib/routes/kyodonews/index.ts +149 -0
 - package/lib/routes/kyodonews/namespace.ts +6 -0
 - package/lib/routes/laimanhua/index.ts +65 -0
 - package/lib/routes/laimanhua/namespace.ts +6 -0
 - package/lib/routes/lala/namespace.ts +6 -0
 - package/lib/routes/lala/rss.ts +48 -0
 - package/lib/routes/lang/namespace.ts +6 -0
 - package/lib/routes/lang/room.ts +67 -0
 - package/lib/routes/lanqiao/author.ts +86 -0
 - package/lib/routes/lanqiao/courses.ts +82 -0
 - package/lib/routes/lanqiao/namespace.ts +6 -0
 - package/lib/routes/lanqiao/questions.ts +80 -0
 - package/lib/routes/lanqiao/utils.ts +13 -0
 - package/lib/routes/laohu8/namespace.ts +6 -0
 - package/lib/routes/laohu8/personal.ts +57 -0
 - package/lib/routes/latepost/index.ts +132 -0
 - package/lib/routes/latepost/namespace.ts +6 -0
 - package/lib/routes/layoffs/index.ts +150 -0
 - package/lib/routes/layoffs/namespace.ts +6 -0
 - package/lib/routes/learnblockchain/namespace.ts +6 -0
 - package/lib/routes/learnblockchain/posts.ts +81 -0
 - package/lib/routes/learnku/namespace.ts +6 -0
 - package/lib/routes/learnku/topic.ts +104 -0
 - package/lib/routes/leetcode/articles.ts +109 -0
 - package/lib/routes/leetcode/dailyquestion-cn.ts +132 -0
 - package/lib/routes/leetcode/dailyquestion-en.ts +133 -0
 - package/lib/routes/leetcode/dailyquestion-solution-cn.ts +201 -0
 - package/lib/routes/leetcode/dailyquestion-solution-en.ts +231 -0
 - package/lib/routes/leetcode/namespace.ts +6 -0
 - package/lib/routes/leiphone/index.ts +41 -0
 - package/lib/routes/leiphone/namespace.ts +6 -0
 - package/lib/routes/leiphone/newsflash.ts +45 -0
 - package/lib/routes/leiphone/utils.ts +39 -0
 - package/lib/routes/lemmy/index.ts +89 -0
 - package/lib/routes/lemmy/namespace.ts +5 -0
 - package/lib/routes/lfsyd/home.ts +68 -0
 - package/lib/routes/lfsyd/namespace.ts +6 -0
 - package/lib/routes/lfsyd/old-home.ts +55 -0
 - package/lib/routes/lfsyd/tag.ts +79 -0
 - package/lib/routes/lfsyd/user.ts +63 -0
 - package/lib/routes/lfsyd/utils.ts +103 -0
 - package/lib/routes/lianxh/index.ts +116 -0
 - package/lib/routes/lianxh/namespace.ts +7 -0
 - package/lib/routes/lifeweek/channel.ts +40 -0
 - package/lib/routes/lifeweek/namespace.ts +6 -0
 - package/lib/routes/lifeweek/tag.ts +39 -0
 - package/lib/routes/lifeweek/utils.ts +18 -0
 - package/lib/routes/lightnovel/light-novel.ts +78 -0
 - package/lib/routes/lightnovel/namespace.ts +6 -0
 - package/lib/routes/line/namespace.ts +6 -0
 - package/lib/routes/line/publisher.ts +68 -0
 - package/lib/routes/line/today.ts +66 -0
 - package/lib/routes/line/utils.ts +56 -0
 - package/lib/routes/linkedin/cn/index.ts +46 -0
 - package/lib/routes/linkedin/cn/renderer.ts +177 -0
 - package/lib/routes/linkedin/cn/utils.ts +123 -0
 - package/lib/routes/linkedin/jobs.ts +139 -0
 - package/lib/routes/linkedin/models.ts +13 -0
 - package/lib/routes/linkedin/namespace.ts +6 -0
 - package/lib/routes/linkedin/utils.ts +126 -0
 - package/lib/routes/linkresearcher/index.ts +76 -0
 - package/lib/routes/linkresearcher/namespace.ts +6 -0
 - package/lib/routes/linovelib/namespace.ts +6 -0
 - package/lib/routes/linovelib/novel.ts +52 -0
 - package/lib/routes/linovelib/volume.ts +36 -0
 - package/lib/routes/liquipedia/cs-matches.ts +60 -0
 - package/lib/routes/liquipedia/dota2-matches.ts +71 -0
 - package/lib/routes/liquipedia/namespace.ts +6 -0
 - package/lib/routes/literotica/category.ts +69 -0
 - package/lib/routes/literotica/namespace.ts +6 -0
 - package/lib/routes/literotica/new.ts +85 -0
 - package/lib/routes/liulinblog/index.ts +107 -0
 - package/lib/routes/liulinblog/itnews.ts +13 -0
 - package/lib/routes/liulinblog/namespace.ts +6 -0
 - package/lib/routes/liveuamap/index.ts +63 -0
 - package/lib/routes/liveuamap/namespace.ts +6 -0
 - package/lib/routes/lkong/forum.ts +72 -0
 - package/lib/routes/lkong/namespace.ts +6 -0
 - package/lib/routes/lkong/query.ts +83 -0
 - package/lib/routes/lkong/thread.ts +73 -0
 - package/lib/routes/lofter/namespace.ts +6 -0
 - package/lib/routes/lofter/tag.ts +116 -0
 - package/lib/routes/lofter/user.ts +81 -0
 - package/lib/routes/logclub/index.ts +145 -0
 - package/lib/routes/logclub/namespace.ts +6 -0
 - package/lib/routes/logclub/report.ts +124 -0
 - package/lib/routes/logclub/templates/description.art +33 -0
 - package/lib/routes/logonews/index.ts +96 -0
 - package/lib/routes/logonews/namespace.ts +6 -0
 - package/lib/routes/loltw/namespace.ts +6 -0
 - package/lib/routes/loltw/news.ts +62 -0
 - package/lib/routes/loongarch/namespace.ts +6 -0
 - package/lib/routes/loongarch/post.ts +59 -0
 - package/lib/routes/lovelive-anime/namespace.ts +6 -0
 - package/lib/routes/lovelive-anime/news.ts +86 -0
 - package/lib/routes/lovelive-anime/schedules.ts +67 -0
 - package/lib/routes/lovelive-anime/topics.ts +113 -0
 - package/lib/routes/lrepacks/index.ts +201 -0
 - package/lib/routes/lrepacks/namespace.ts +8 -0
 - package/lib/routes/lrepacks/templates/description.art +21 -0
 - package/lib/routes/lsnu/jiaowc/tzgg.ts +82 -0
 - package/lib/routes/lsnu/namespace.ts +6 -0
 - package/lib/routes/luogu/contest.ts +99 -0
 - package/lib/routes/luogu/daily.ts +64 -0
 - package/lib/routes/luogu/namespace.ts +6 -0
 - package/lib/routes/luogu/user-blog.ts +73 -0
 - package/lib/routes/luogu/user-feed.ts +57 -0
 - package/lib/routes/luolei/index.ts +150 -0
 - package/lib/routes/luolei/namespace.ts +8 -0
 - package/lib/routes/luolei/templates/description.art +19 -0
 - package/lib/routes/luxiangdong/archive.ts +53 -0
 - package/lib/routes/luxiangdong/namespace.ts +6 -0
 - package/lib/routes/lvv2/namespace.ts +6 -0
 - package/lib/routes/lvv2/news.ts +104 -0
 - package/lib/routes/lvv2/top.ts +106 -0
 - package/lib/routes/lxixsxa/discography.ts +82 -0
 - package/lib/routes/lxixsxa/information.ts +76 -0
 - package/lib/routes/lxixsxa/jsonp-helper.ts +17 -0
 - package/lib/routes/lxixsxa/namespace.ts +6 -0
 - package/lib/routes/m4/index.ts +99 -0
 - package/lib/routes/m4/namespace.ts +6 -0
 - package/lib/routes/m4/templates/description.art +21 -0
 - package/lib/routes/macfilos/blog.ts +87 -0
 - package/lib/routes/macfilos/namespace.ts +6 -0
 - package/lib/routes/macmenubar/namespace.ts +6 -0
 - package/lib/routes/macmenubar/recently.ts +66 -0
 - package/lib/routes/macupdate/app.ts +67 -0
 - package/lib/routes/macupdate/namespace.ts +6 -0
 - package/lib/routes/magazinelib/latest-magazine.ts +78 -0
 - package/lib/routes/magazinelib/namespace.ts +6 -0
 - package/lib/routes/magnumphotos/magazine.ts +63 -0
 - package/lib/routes/magnumphotos/namespace.ts +6 -0
 - package/lib/routes/mail/imap.ts +109 -0
 - package/lib/routes/mail/namespace.ts +5 -0
 - package/lib/routes/mangadex/index.ts +84 -0
 - package/lib/routes/mangadex/namespace.ts +6 -0
 - package/lib/routes/manhuagui/comic.ts +139 -0
 - package/lib/routes/manhuagui/namespace.ts +6 -0
 - package/lib/routes/manhuagui/subscribe.ts +92 -0
 - package/lib/routes/manyvids/namespace.ts +7 -0
 - package/lib/routes/manyvids/templates/video.art +3 -0
 - package/lib/routes/manyvids/types.ts +89 -0
 - package/lib/routes/manyvids/video.ts +51 -0
 - package/lib/routes/mastodon/account-id.ts +30 -0
 - package/lib/routes/mastodon/acct.ts +40 -0
 - package/lib/routes/mastodon/namespace.ts +14 -0
 - package/lib/routes/mastodon/timeline-local.ts +43 -0
 - package/lib/routes/mastodon/timeline-remote.ts +43 -0
 - package/lib/routes/mastodon/utils.ts +135 -0
 - package/lib/routes/matters/author.ts +63 -0
 - package/lib/routes/matters/latest.ts +74 -0
 - package/lib/routes/matters/namespace.ts +7 -0
 - package/lib/routes/matters/tags.ts +85 -0
 - package/lib/routes/matters/utils.ts +30 -0
 - package/lib/routes/mckinsey/cn/category-map.ts +77 -0
 - package/lib/routes/mckinsey/cn/index.ts +73 -0
 - package/lib/routes/mckinsey/namespace.ts +6 -0
 - package/lib/routes/mdpi/journal.ts +92 -0
 - package/lib/routes/mdpi/namespace.ts +6 -0
 - package/lib/{v2 → routes}/mdpi/templates/description.art +0 -0
 - package/lib/routes/medieval-china/namespace.ts +6 -0
 - package/lib/routes/medieval-china/post.ts +60 -0
 - package/lib/routes/medium/following.ts +59 -0
 - package/lib/routes/medium/for-you.ts +59 -0
 - package/lib/routes/medium/graphql.ts +185 -0
 - package/lib/routes/medium/list.ts +58 -0
 - package/lib/routes/medium/namespace.ts +6 -0
 - package/lib/routes/medium/parse-article.ts +61 -0
 - package/lib/routes/medium/tag.ts +62 -0
 - package/lib/routes/medsci/index.ts +128 -0
 - package/lib/routes/medsci/namespace.ts +6 -0
 - package/lib/routes/metacritic/index.ts +132 -0
 - package/lib/routes/metacritic/namespace.ts +6 -0
 - package/lib/routes/metacritic/release.ts +54 -0
 - package/lib/routes/metacritic/templates/description.art +19 -0
 - package/lib/routes/metacritic/util.ts +39 -0
 - package/lib/routes/meteor/boards.ts +37 -0
 - package/lib/routes/meteor/index.ts +65 -0
 - package/lib/routes/meteor/namespace.ts +6 -0
 - package/lib/routes/meteor/utils.ts +89 -0
 - package/lib/routes/metmuseum/exhibitions.ts +39 -0
 - package/lib/routes/metmuseum/namespace.ts +6 -0
 - package/lib/routes/mi/crowdfunding.ts +37 -0
 - package/lib/routes/mi/golden.ts +32 -0
 - package/lib/routes/mi/namespace.ts +6 -0
 - package/lib/routes/microsoft/addon.ts +56 -0
 - package/lib/routes/microsoft/namespace.ts +6 -0
 - package/lib/routes/mihoyo/bbs/cache.ts +42 -0
 - package/lib/routes/mihoyo/bbs/follow-list.ts +72 -0
 - package/lib/routes/mihoyo/bbs/img-ranking.ts +144 -0
 - package/lib/routes/mihoyo/bbs/official.ts +166 -0
 - package/lib/routes/mihoyo/bbs/static-data.ts +134 -0
 - package/lib/routes/mihoyo/bbs/timeline.ts +74 -0
 - package/lib/routes/mihoyo/bbs/user-post.ts +51 -0
 - package/lib/routes/mihoyo/bbs/utils.ts +37 -0
 - package/lib/routes/mihoyo/namespace.ts +6 -0
 - package/lib/routes/mihoyo/sr/news.ts +100 -0
 - package/lib/routes/mihoyo/templates/official.art +7 -0
 - package/lib/routes/mihoyo/ys/news.ts +195 -0
 - package/lib/routes/mindmeister/example.ts +95 -0
 - package/lib/routes/mindmeister/namespace.ts +6 -0
 - package/lib/routes/minecraft/blockedservers.ts +52 -0
 - package/lib/routes/minecraft/java-runtime.ts +127 -0
 - package/lib/routes/minecraft/namespace.ts +6 -0
 - package/lib/routes/minecraft/version.ts +137 -0
 - package/lib/routes/mingpao/index.ts +111 -0
 - package/lib/routes/mingpao/namespace.ts +6 -0
 - package/lib/routes/mingpao/templates/fancybox.art +7 -0
 - package/lib/routes/miniflux/entry.ts +315 -0
 - package/lib/routes/miniflux/namespace.ts +6 -0
 - package/lib/routes/miniflux/subscription.ts +129 -0
 - package/lib/routes/mirror/index.ts +62 -0
 - package/lib/routes/mirror/namespace.ts +6 -0
 - package/lib/routes/missav/namespace.ts +6 -0
 - package/lib/routes/missav/new.ts +64 -0
 - package/lib/routes/missav/templates/preview.art +3 -0
 - package/lib/routes/misskey/featured-notes.ts +49 -0
 - package/lib/routes/misskey/namespace.ts +6 -0
 - package/lib/routes/misskey/utils.ts +31 -0
 - package/lib/routes/mittrchina/index.ts +125 -0
 - package/lib/routes/mittrchina/namespace.ts +6 -0
 - package/lib/routes/mittrchina/templates/movie.art +5 -0
 - package/lib/routes/miui/community/user.ts +69 -0
 - package/lib/routes/miui/firmware/index.ts +55 -0
 - package/lib/routes/miui/namespace.ts +6 -0
 - package/lib/routes/mixcloud/index.ts +156 -0
 - package/lib/routes/mixcloud/namespace.ts +6 -0
 - package/lib/routes/mixcloud/queries.ts +2274 -0
 - package/lib/routes/modb/namespace.ts +6 -0
 - package/lib/routes/modb/topic.ts +78 -0
 - package/lib/routes/modelscope/community.ts +84 -0
 - package/lib/routes/modelscope/datasets.ts +85 -0
 - package/lib/routes/modelscope/models.ts +72 -0
 - package/lib/routes/modelscope/namespace.ts +6 -0
 - package/lib/routes/modelscope/studios.ts +87 -0
 - package/lib/routes/modian/namespace.ts +6 -0
 - package/lib/routes/modian/zhongchou.ts +101 -0
 - package/lib/routes/modrinth/api.d.ts +101 -0
 - package/lib/routes/modrinth/namespace.ts +6 -0
 - package/lib/routes/modrinth/templates/version.art +8 -0
 - package/lib/routes/modrinth/versions.ts +127 -0
 - package/lib/routes/mohw/clarification.ts +76 -0
 - package/lib/routes/mohw/namespace.ts +6 -0
 - package/lib/routes/mox/index.ts +117 -0
 - package/lib/routes/mox/namespace.ts +6 -0
 - package/lib/routes/mpaypass/main.ts +79 -0
 - package/lib/routes/mpaypass/namespace.ts +6 -0
 - package/lib/routes/mpaypass/news.ts +65 -0
 - package/lib/routes/mrdx/daily.ts +105 -0
 - package/lib/routes/mrdx/namespace.ts +6 -0
 - package/lib/routes/mrdx/utils.ts +15 -0
 - package/lib/routes/mrm/index.ts +65 -0
 - package/lib/routes/mrm/namespace.ts +6 -0
 - package/lib/routes/mvm/index.ts +86 -0
 - package/lib/routes/mvm/namespace.ts +6 -0
 - package/lib/routes/my-formosa/index.ts +78 -0
 - package/lib/routes/my-formosa/namespace.ts +6 -0
 - package/lib/routes/mydrivers/cid.ts +47 -0
 - package/lib/routes/mydrivers/index.ts +73 -0
 - package/lib/routes/mydrivers/namespace.ts +6 -0
 - package/lib/routes/mydrivers/rank.ts +70 -0
 - package/lib/routes/mydrivers/templates/description.art +5 -0
 - package/lib/routes/mydrivers/util.ts +116 -0
 - package/lib/routes/myfigurecollection/activity.ts +124 -0
 - package/lib/routes/myfigurecollection/index.ts +115 -0
 - package/lib/routes/myfigurecollection/namespace.ts +6 -0
 - package/lib/routes/mygopen/index.ts +55 -0
 - package/lib/routes/mygopen/namespace.ts +6 -0
 - package/lib/routes/mymusicsheet/namespace.ts +6 -0
 - package/lib/routes/mymusicsheet/templates/description.art +41 -0
 - package/lib/routes/mymusicsheet/usersheets.ts +149 -0
 - package/lib/routes/mysql/namespace.ts +6 -0
 - package/lib/routes/mysql/release.ts +84 -0
 - package/lib/routes/nasa/apod-cn.ts +52 -0
 - package/lib/routes/nasa/apod-ncku.ts +77 -0
 - package/lib/routes/nasa/apod.ts +77 -0
 - package/lib/routes/nasa/namespace.ts +6 -0
 - package/lib/routes/natgeo/dailyphoto.ts +61 -0
 - package/lib/routes/natgeo/dailyselection.ts +49 -0
 - package/lib/routes/natgeo/namespace.ts +6 -0
 - package/lib/routes/natgeo/natgeo.ts +82 -0
 - package/lib/routes/nationalgeographic/latest-stories.ts +85 -0
 - package/lib/routes/nationalgeographic/namespace.ts +6 -0
 - package/lib/routes/nationalgeographic/templates/stories.art +44 -0
 - package/lib/routes/nature/cover.ts +94 -0
 - package/lib/routes/nature/highlight.ts +50 -0
 - package/lib/routes/nature/namespace.ts +9 -0
 - package/lib/routes/nature/news-and-comment.ts +52 -0
 - package/lib/routes/nature/news.ts +56 -0
 - package/lib/routes/nature/research.ts +80 -0
 - package/lib/routes/nature/siteindex.ts +68 -0
 - package/lib/routes/nature/utils.ts +1093 -0
 - package/lib/routes/nautil/namespace.ts +6 -0
 - package/lib/routes/nautil/topics.ts +86 -0
 - package/lib/routes/nbd/daily.ts +28 -0
 - package/lib/routes/nbd/index.ts +84 -0
 - package/lib/routes/nbd/namespace.ts +6 -0
 - package/lib/routes/nber/all.ts +19 -0
 - package/lib/routes/nber/common.ts +52 -0
 - package/lib/routes/nber/namespace.ts +7 -0
 - package/lib/routes/nber/new.ts +20 -0
 - package/lib/routes/ncc-cma/cmdp.ts +349 -0
 - package/lib/routes/ncc-cma/namespace.ts +8 -0
 - package/lib/routes/ncc-cma/templates/description.art +9 -0
 - package/lib/routes/ncepu/master/masterinfo.ts +96 -0
 - package/lib/routes/ncepu/namespace.ts +6 -0
 - package/lib/routes/ncpssd/namespace.ts +6 -0
 - package/lib/routes/ncpssd/newlist.ts +98 -0
 - package/lib/routes/ncu/jwc.ts +69 -0
 - package/lib/routes/ncu/namespace.ts +6 -0
 - package/lib/routes/ncwu/namespace.ts +6 -0
 - package/lib/routes/ncwu/notice.ts +52 -0
 - package/lib/routes/ndss-symposium/namespace.ts +6 -0
 - package/lib/routes/ndss-symposium/ndss.ts +107 -0
 - package/lib/routes/neatdownloadmanager/download.ts +71 -0
 - package/lib/routes/neatdownloadmanager/namespace.ts +6 -0
 - package/lib/routes/neea/index.ts +119 -0
 - package/lib/routes/neea/jlpt.ts +78 -0
 - package/lib/routes/neea/namespace.ts +6 -0
 - package/lib/routes/nenu/namespace.ts +6 -0
 - package/lib/routes/nenu/sohac.ts +70 -0
 - package/lib/routes/nenu/yjsy.ts +74 -0
 - package/lib/routes/netflav/index.ts +57 -0
 - package/lib/routes/netflav/namespace.ts +6 -0
 - package/lib/routes/netflav/templates/description.art +8 -0
 - package/lib/routes/neu/bmie.ts +131 -0
 - package/lib/routes/neu/namespace.ts +6 -0
 - package/lib/routes/neu/news.ts +86 -0
 - package/lib/routes/newmuseum/exhibitions.ts +46 -0
 - package/lib/routes/newmuseum/namespace.ts +6 -0
 - package/lib/routes/newrank/douyin.ts +91 -0
 - package/lib/routes/newrank/namespace.ts +10 -0
 - package/lib/routes/newrank/utils.ts +106 -0
 - package/lib/routes/newrank/wechat.ts +90 -0
 - package/lib/routes/news/namespace.ts +6 -0
 - package/lib/routes/news/templates/description.art +21 -0
 - package/lib/routes/news/xhsxw.ts +110 -0
 - package/lib/routes/newsmarket/index.ts +95 -0
 - package/lib/routes/newsmarket/namespace.ts +6 -0
 - package/lib/routes/newyorker/namespace.ts +6 -0
 - package/lib/routes/newyorker/news.ts +62 -0
 - package/lib/routes/newzmz/index.ts +96 -0
 - package/lib/routes/newzmz/namespace.ts +6 -0
 - package/lib/routes/newzmz/templates/description.art +59 -0
 - package/lib/routes/newzmz/util.ts +163 -0
 - package/lib/routes/nextapple/namespace.ts +6 -0
 - package/lib/routes/nextapple/realtime.ts +77 -0
 - package/lib/routes/nga/forum.ts +91 -0
 - package/lib/routes/nga/namespace.ts +6 -0
 - package/lib/routes/nga/post.ts +141 -0
 - package/lib/routes/ngocn2/index.ts +85 -0
 - package/lib/routes/ngocn2/namespace.ts +6 -0
 - package/lib/routes/nhentai/index.ts +56 -0
 - package/lib/routes/nhentai/namespace.ts +7 -0
 - package/lib/routes/nhentai/search.ts +47 -0
 - package/lib/routes/nhentai/util.ts +146 -0
 - package/lib/routes/nhk/namespace.ts +6 -0
 - package/lib/routes/nhk/news-web-easy.ts +78 -0
 - package/lib/routes/nhk/news.ts +81 -0
 - package/lib/routes/nhk/templates/news_web_easy.art +7 -0
 - package/lib/routes/niaogebiji/cat.ts +79 -0
 - package/lib/routes/niaogebiji/index.ts +57 -0
 - package/lib/routes/niaogebiji/namespace.ts +6 -0
 - package/lib/routes/niaogebiji/today.ts +60 -0
 - package/lib/routes/nifd/namespace.ts +6 -0
 - package/lib/routes/nifd/research.ts +75 -0
 - package/lib/routes/nikkei/asia/index.ts +70 -0
 - package/lib/routes/nikkei/cn/index.ts +137 -0
 - package/lib/routes/nikkei/index.ts +46 -0
 - package/lib/routes/nikkei/namespace.ts +6 -0
 - package/lib/routes/nikkei/news.ts +111 -0
 - package/lib/routes/nintendo/direct.ts +59 -0
 - package/lib/routes/nintendo/eshop-cn.ts +60 -0
 - package/lib/routes/nintendo/eshop-hk.ts +97 -0
 - package/lib/routes/nintendo/eshop-jp.ts +51 -0
 - package/lib/routes/nintendo/eshop-us.ts +49 -0
 - package/lib/routes/nintendo/namespace.ts +6 -0
 - package/lib/routes/nintendo/news-china.ts +62 -0
 - package/lib/routes/nintendo/news.ts +49 -0
 - package/lib/routes/nintendo/system-update.ts +63 -0
 - package/lib/routes/nintendo/utils.ts +166 -0
 - package/lib/routes/nippon/index.ts +59 -0
 - package/lib/routes/nippon/namespace.ts +6 -0
 - package/lib/routes/njglyy/namespace.ts +6 -0
 - package/lib/routes/njglyy/utils/index.ts +49 -0
 - package/lib/routes/njglyy/ygbjypx.ts +43 -0
 - package/lib/routes/njit/jwc.ts +129 -0
 - package/lib/routes/njit/namespace.ts +6 -0
 - package/lib/routes/njit/tzgg.ts +100 -0
 - package/lib/routes/njnu/ceai/ceai.ts +67 -0
 - package/lib/routes/njnu/ceai/utils.ts +53 -0
 - package/lib/routes/njnu/jwc/jwc.ts +66 -0
 - package/lib/routes/njnu/jwc/utils.ts +57 -0
 - package/lib/routes/njnu/namespace.ts +6 -0
 - package/lib/routes/nju/admission.ts +64 -0
 - package/lib/routes/nju/dafls.ts +62 -0
 - package/lib/routes/nju/exchangesys.ts +68 -0
 - package/lib/routes/nju/gra.ts +64 -0
 - package/lib/routes/nju/hosptial.ts +64 -0
 - package/lib/routes/nju/hqjt.ts +62 -0
 - package/lib/routes/nju/itsc.ts +69 -0
 - package/lib/routes/nju/jjc.ts +65 -0
 - package/lib/routes/nju/jw.ts +88 -0
 - package/lib/routes/nju/namespace.ts +6 -0
 - package/lib/routes/nju/rczp.ts +76 -0
 - package/lib/routes/nju/scit.ts +58 -0
 - package/lib/routes/nju/zbb.ts +101 -0
 - package/lib/routes/nju/zcc.ts +63 -0
 - package/lib/routes/njucm/grabs.ts +43 -0
 - package/lib/routes/njucm/namespace.ts +6 -0
 - package/lib/routes/njucm/utils/index.ts +46 -0
 - package/lib/routes/njuferret/blog.ts +41 -0
 - package/lib/routes/njuferret/namespace.ts +10 -0
 - package/lib/routes/njupt/jwc.ts +113 -0
 - package/lib/routes/njupt/namespace.ts +6 -0
 - package/lib/routes/njust/cwc.ts +62 -0
 - package/lib/routes/njust/dgxg.ts +63 -0
 - package/lib/routes/njust/eo.ts +83 -0
 - package/lib/routes/njust/eoe.ts +62 -0
 - package/lib/routes/njust/gs.ts +69 -0
 - package/lib/routes/njust/jwc.ts +64 -0
 - package/lib/routes/njust/namespace.ts +6 -0
 - package/lib/routes/njust/utils.ts +35 -0
 - package/lib/routes/njxzc/home.ts +51 -0
 - package/lib/routes/njxzc/lib.ts +51 -0
 - package/lib/routes/njxzc/namespace.ts +6 -0
 - package/lib/routes/njxzc/utils/index.ts +65 -0
 - package/lib/routes/nlc/namespace.ts +6 -0
 - package/lib/routes/nlc/read.ts +95 -0
 - package/lib/routes/nlc/templates/description.art +17 -0
 - package/lib/routes/nltimes/namespace.ts +6 -0
 - package/lib/routes/nltimes/news.ts +118 -0
 - package/lib/routes/nmc/namespace.ts +6 -0
 - package/lib/routes/nmc/weatheralarm.ts +74 -0
 - package/lib/routes/nmtv/column.ts +78 -0
 - package/lib/routes/nmtv/namespace.ts +6 -0
 - package/lib/routes/nodejs/blog.ts +100 -0
 - package/lib/routes/nodejs/namespace.ts +6 -0
 - package/lib/routes/nogizaka46/blog.ts +103 -0
 - package/lib/routes/nogizaka46/namespace.ts +6 -0
 - package/lib/routes/nogizaka46/news.ts +58 -0
 - package/lib/routes/nosec/index.ts +100 -0
 - package/lib/routes/nosec/namespace.ts +6 -0
 - package/lib/routes/notateslaapp/namespace.ts +6 -0
 - package/lib/routes/notateslaapp/update.ts +61 -0
 - package/lib/routes/notefolio/namespace.ts +6 -0
 - package/lib/routes/notefolio/search.ts +192 -0
 - package/lib/routes/notefolio/templates/search.art +9 -0
 - package/lib/routes/notion/database.ts +206 -0
 - package/lib/routes/notion/namespace.ts +13 -0
 - package/lib/routes/now/namespace.ts +6 -0
 - package/lib/routes/now/news.ts +104 -0
 - package/lib/routes/nowcoder/discuss.ts +80 -0
 - package/lib/routes/nowcoder/experience.ts +80 -0
 - package/lib/routes/nowcoder/jobcenter.ts +103 -0
 - package/lib/routes/nowcoder/namespace.ts +6 -0
 - package/lib/routes/nowcoder/recommend.ts +45 -0
 - package/lib/routes/nowcoder/schedule.ts +58 -0
 - package/lib/routes/npm/namespace.ts +6 -0
 - package/lib/routes/npm/package.ts +61 -0
 - package/lib/routes/npr/full.ts +108 -0
 - package/lib/routes/npr/namespace.ts +6 -0
 - package/lib/routes/ntdm/namespace.ts +6 -0
 - package/lib/routes/ntdm/utils.ts +3 -0
 - package/lib/routes/ntdm/video.ts +57 -0
 - package/lib/routes/ntdtv/channel.ts +72 -0
 - package/lib/routes/ntdtv/namespace.ts +6 -0
 - package/lib/routes/nua/dc.ts +96 -0
 - package/lib/routes/nua/gra.ts +50 -0
 - package/lib/routes/nua/index.ts +50 -0
 - package/lib/routes/nua/lib.ts +70 -0
 - package/lib/routes/nua/namespace.ts +6 -0
 - package/lib/routes/nua/sxw.ts +53 -0
 - package/lib/routes/nua/utils.ts +73 -0
 - package/lib/routes/nuaa/college/cae.ts +88 -0
 - package/lib/routes/nuaa/college/cs.ts +101 -0
 - package/lib/routes/nuaa/jwc/jwc.ts +99 -0
 - package/lib/routes/nuaa/namespace.ts +6 -0
 - package/lib/routes/nuaa/utils/pypasswaf.ts +23 -0
 - package/lib/routes/nuaa/yjsy/yjsy.ts +97 -0
 - package/lib/routes/nudt/namespace.ts +6 -0
 - package/lib/routes/nudt/yjszs.ts +68 -0
 - package/lib/routes/nuist/bulletin.ts +97 -0
 - package/lib/routes/nuist/cas.ts +94 -0
 - package/lib/routes/nuist/jwc.ts +66 -0
 - package/lib/routes/nuist/library/lib.ts +58 -0
 - package/lib/routes/nuist/namespace.ts +19 -0
 - package/lib/routes/nuist/scs.ts +78 -0
 - package/lib/routes/nuist/sese.ts +68 -0
 - package/lib/routes/nuist/xgc.ts +75 -0
 - package/lib/routes/nuist/yjs.ts +70 -0
 - package/lib/routes/nwafu/all.ts +68 -0
 - package/lib/routes/nwafu/namespace.ts +6 -0
 - package/lib/routes/nwafu/utils.ts +33 -0
 - package/lib/routes/nyaa/main.ts +64 -0
 - package/lib/routes/nyaa/namespace.ts +6 -0
 - package/lib/routes/nymity/censorbib.ts +51 -0
 - package/lib/routes/nymity/namespace.ts +6 -0
 - package/lib/routes/nytimes/book.ts +110 -0
 - package/lib/routes/nytimes/daily-briefing-chinese.ts +98 -0
 - package/lib/routes/nytimes/index.ts +155 -0
 - package/lib/routes/nytimes/namespace.ts +6 -0
 - package/lib/routes/nytimes/utils.ts +111 -0
 - package/lib/routes/oceanengine/arithmetic-index.ts +159 -0
 - package/lib/routes/oceanengine/namespace.ts +6 -0
 - package/lib/routes/odaily/activity.ts +78 -0
 - package/lib/routes/odaily/namespace.ts +6 -0
 - package/lib/routes/odaily/newsflash.ts +51 -0
 - package/lib/routes/odaily/post.ts +92 -0
 - package/lib/routes/odaily/search-news.ts +50 -0
 - package/lib/routes/odaily/user.ts +83 -0
 - package/lib/routes/odaily/utils.ts +3 -0
 - package/lib/routes/oeeee/app/channel.ts +48 -0
 - package/lib/routes/oeeee/app/reporter.ts +54 -0
 - package/lib/routes/oeeee/namespace.ts +6 -0
 - package/lib/routes/oeeee/utils.ts +39 -0
 - package/lib/routes/oeeee/web.ts +61 -0
 - package/lib/routes/oilchem/index.ts +93 -0
 - package/lib/routes/oilchem/namespace.ts +6 -0
 - package/lib/routes/oilchem/routes.ts +671 -0
 - package/lib/routes/olevod/namespace.ts +6 -0
 - package/lib/routes/olevod/vod.ts +49 -0
 - package/lib/routes/olevod/vodlist.ts +48 -0
 - package/lib/routes/ollama/models.ts +39 -0
 - package/lib/routes/ollama/namespace.ts +6 -0
 - package/lib/routes/oncc/index.ts +111 -0
 - package/lib/routes/oncc/money18.ts +141 -0
 - package/lib/routes/oncc/namespace.ts +6 -0
 - package/lib/routes/onehu/common.ts +36 -0
 - package/lib/routes/onehu/namespace.ts +6 -0
 - package/lib/routes/onet/namespace.ts +6 -0
 - package/lib/routes/onet/news.ts +86 -0
 - package/lib/routes/onet/templates/article.art +5 -0
 - package/lib/routes/onet/templates/image.art +9 -0
 - package/lib/routes/onet/utils.ts +51 -0
 - package/lib/routes/oo-software/changelog.ts +65 -0
 - package/lib/routes/oo-software/namespace.ts +6 -0
 - package/lib/routes/openai/blog.ts +66 -0
 - package/lib/routes/openai/chatgpt.ts +119 -0
 - package/lib/routes/openai/common.ts +73 -0
 - package/lib/routes/openai/namespace.ts +6 -0
 - package/lib/routes/openai/research.ts +51 -0
 - package/lib/routes/openwrt/namespace.ts +6 -0
 - package/lib/routes/openwrt/releases.ts +39 -0
 - package/lib/routes/orcid/index.ts +74 -0
 - package/lib/routes/orcid/namespace.ts +6 -0
 - package/lib/routes/oreno3d/get-sec-page-data.ts +75 -0
 - package/lib/routes/oreno3d/main.ts +183 -0
 - package/lib/routes/oreno3d/namespace.ts +9 -0
 - package/lib/routes/oschina/namespace.ts +6 -0
 - package/lib/routes/oschina/news.ts +137 -0
 - package/lib/routes/oschina/topic.ts +78 -0
 - package/lib/routes/oschina/user.ts +75 -0
 - package/lib/routes/oshwhub/explore.ts +145 -0
 - package/lib/routes/oshwhub/namespace.ts +6 -0
 - package/lib/routes/osu/beatmaps/packs.ts +54 -0
 - package/lib/routes/osu/namespace.ts +6 -0
 - package/lib/routes/otobanana/cast.ts +54 -0
 - package/lib/routes/otobanana/livestream.ts +54 -0
 - package/lib/routes/otobanana/namespace.ts +6 -0
 - package/lib/routes/otobanana/templates/description.art +11 -0
 - package/lib/routes/otobanana/timeline.ts +54 -0
 - package/lib/routes/otobanana/utils.ts +63 -0
 - package/lib/routes/ouc/hqsz.ts +90 -0
 - package/lib/routes/ouc/it-postgraduate.ts +52 -0
 - package/lib/routes/ouc/it-tx.ts +74 -0
 - package/lib/routes/ouc/it.ts +73 -0
 - package/lib/routes/ouc/jwc.ts +65 -0
 - package/lib/routes/ouc/jwgl.ts +71 -0
 - package/lib/routes/ouc/namespace.ts +6 -0
 - package/lib/routes/ouc/yjs.ts +52 -0
 - package/lib/routes/oup/index.ts +84 -0
 - package/lib/routes/oup/namespace.ts +6 -0
 - package/lib/routes/outagereport/index.ts +71 -0
 - package/lib/routes/outagereport/namespace.ts +6 -0
 - package/lib/routes/p-articles/contributors.ts +53 -0
 - package/lib/routes/p-articles/namespace.ts +13 -0
 - package/lib/routes/p-articles/section.ts +60 -0
 - package/lib/routes/p-articles/utils.ts +21 -0
 - package/lib/routes/panewslab/author.ts +74 -0
 - package/lib/routes/panewslab/namespace.ts +6 -0
 - package/lib/routes/panewslab/news.ts +44 -0
 - package/lib/routes/panewslab/profundity.ts +83 -0
 - package/lib/routes/panewslab/topic.ts +74 -0
 - package/lib/routes/papers/index.ts +128 -0
 - package/lib/routes/papers/namespace.ts +8 -0
 - package/lib/routes/papers/templates/description.art +15 -0
 - package/lib/routes/paradigm/namespace.ts +6 -0
 - package/lib/routes/paradigm/writing.ts +70 -0
 - package/lib/routes/parliament/namespace.ts +6 -0
 - package/lib/routes/parliament/section77.ts +190 -0
 - package/lib/routes/patagonia/namespace.ts +6 -0
 - package/lib/routes/patagonia/new-arrivals.ts +86 -0
 - package/lib/routes/paulgraham/article.ts +88 -0
 - package/lib/routes/paulgraham/namespace.ts +6 -0
 - package/lib/routes/penguin-random-house/articles.ts +52 -0
 - package/lib/routes/penguin-random-house/namespace.ts +6 -0
 - package/lib/routes/penguin-random-house/thereaddown.ts +52 -0
 - package/lib/routes/penguin-random-house/utils.ts +119 -0
 - package/lib/routes/people/index.ts +88 -0
 - package/lib/routes/people/liuyan.ts +83 -0
 - package/lib/routes/people/namespace.ts +6 -0
 - package/lib/routes/people/xjpjh.ts +95 -0
 - package/lib/routes/peopo/namespace.ts +6 -0
 - package/lib/routes/peopo/topic.ts +91 -0
 - package/lib/routes/phoronix/index.ts +264 -0
 - package/lib/routes/phoronix/namespace.ts +6 -0
 - package/lib/routes/pianyivps/namespace.ts +6 -0
 - package/lib/routes/pianyivps/rss.ts +35 -0
 - package/lib/routes/pianyuan/app.ts +69 -0
 - package/lib/routes/pianyuan/namespace.ts +6 -0
 - package/lib/routes/pianyuan/search.ts +61 -0
 - package/lib/routes/pianyuan/utils.ts +86 -0
 - package/lib/routes/picnob/namespace.ts +9 -0
 - package/lib/routes/picnob/templates/desc.art +13 -0
 - package/lib/routes/picnob/user.ts +129 -0
 - package/lib/routes/picnob/utils.ts +18 -0
 - package/lib/routes/picuki/namespace.ts +9 -0
 - package/lib/routes/picuki/profile.ts +211 -0
 - package/lib/routes/picuki/templates/video.art +5 -0
 - package/lib/routes/picuki/utils.ts +24 -0
 - package/lib/routes/pikabu/community.ts +45 -0
 - package/lib/routes/pikabu/namespace.ts +6 -0
 - package/lib/routes/pikabu/templates/video.art +8 -0
 - package/lib/routes/pikabu/user.ts +70 -0
 - package/lib/routes/pikabu/utils.ts +42 -0
 - package/lib/routes/pincong/hot.ts +48 -0
 - package/lib/routes/pincong/index.ts +57 -0
 - package/lib/routes/pincong/namespace.ts +6 -0
 - package/lib/routes/pincong/topic.ts +39 -0
 - package/lib/routes/pincong/utils.ts +21 -0
 - package/lib/routes/pingwest/namespace.ts +6 -0
 - package/lib/routes/pingwest/status.ts +72 -0
 - package/lib/routes/pingwest/tag.ts +76 -0
 - package/lib/routes/pingwest/user.ts +94 -0
 - package/lib/routes/pingwest/utils.ts +89 -0
 - package/lib/routes/pixabay/namespace.ts +6 -0
 - package/lib/routes/pixabay/search.ts +85 -0
 - package/lib/routes/pixiv/api/get-bookmarks.ts +23 -0
 - package/lib/routes/pixiv/api/get-illust-follows.ts +20 -0
 - package/lib/routes/pixiv/api/get-illusts.ts +22 -0
 - package/lib/routes/pixiv/api/get-ranking.ts +30 -0
 - package/lib/routes/pixiv/api/get-user-detail.ts +27 -0
 - package/lib/routes/pixiv/api/search-illust.ts +24 -0
 - package/lib/routes/pixiv/api/search-popular-illust.ts +23 -0
 - package/lib/routes/pixiv/bookmarks.ts +66 -0
 - package/lib/routes/pixiv/constants.ts +8 -0
 - package/lib/routes/pixiv/illustfollow.ts +70 -0
 - package/lib/routes/pixiv/namespace.ts +6 -0
 - package/lib/routes/pixiv/novels.ts +71 -0
 - package/lib/routes/pixiv/pixiv-got.ts +65 -0
 - package/lib/routes/pixiv/ranking.ts +127 -0
 - package/lib/routes/pixiv/search.ts +70 -0
 - package/lib/routes/pixiv/token.ts +77 -0
 - package/lib/routes/pixiv/user.ts +66 -0
 - package/lib/routes/pixiv/utils.ts +17 -0
 - package/lib/routes/piyao/jrpy.ts +65 -0
 - package/lib/routes/piyao/namespace.ts +6 -0
 - package/lib/routes/pkmer/namespace.ts +6 -0
 - package/lib/routes/pkmer/recent.ts +61 -0
 - package/lib/routes/pku/bbs/hot.ts +85 -0
 - package/lib/routes/pku/cls/announcement.ts +68 -0
 - package/lib/routes/pku/cls/lecture.ts +50 -0
 - package/lib/routes/pku/eecs.ts +73 -0
 - package/lib/routes/pku/hr.ts +85 -0
 - package/lib/routes/pku/namespace.ts +6 -0
 - package/lib/routes/pku/nsd.ts +95 -0
 - package/lib/routes/pku/pkuyjs.ts +54 -0
 - package/lib/routes/pku/rccp/mzyt.ts +48 -0
 - package/lib/routes/pku/scc/recruit.ts +80 -0
 - package/lib/routes/pku/ss/admission.ts +41 -0
 - package/lib/routes/pku/ss/common.ts +33 -0
 - package/lib/routes/pku/ss/notice.ts +30 -0
 - package/lib/routes/pku/ss/pg-admin.ts +41 -0
 - package/lib/routes/pku/utils.ts +13 -0
 - package/lib/routes/playno1/av.ts +68 -0
 - package/lib/routes/playno1/namespace.ts +6 -0
 - package/lib/routes/playno1/st.ts +65 -0
 - package/lib/routes/playno1/utils.ts +29 -0
 - package/lib/routes/playpcesor/namespace.ts +6 -0
 - package/lib/routes/playpcesor/rss.ts +48 -0
 - package/lib/routes/plurk/anonymous.ts +49 -0
 - package/lib/routes/plurk/hotlinks.ts +46 -0
 - package/lib/routes/plurk/namespace.ts +6 -0
 - package/lib/routes/plurk/news.ts +50 -0
 - package/lib/routes/plurk/search.ts +47 -0
 - package/lib/routes/plurk/top.ts +57 -0
 - package/lib/routes/plurk/topic.ts +58 -0
 - package/lib/routes/plurk/user.ts +51 -0
 - package/lib/routes/plurk/utils.ts +52 -0
 - package/lib/routes/pnas/index.ts +121 -0
 - package/lib/routes/pnas/namespace.ts +6 -0
 - package/lib/routes/podwise/collections.ts +46 -0
 - package/lib/routes/podwise/episodes.ts +119 -0
 - package/lib/routes/podwise/namespace.ts +9 -0
 - package/lib/routes/pornhub/category-url.ts +52 -0
 - package/lib/routes/pornhub/category.ts +64 -0
 - package/lib/routes/pornhub/model.ts +55 -0
 - package/lib/routes/pornhub/namespace.ts +6 -0
 - package/lib/routes/pornhub/pornstar.ts +60 -0
 - package/lib/routes/pornhub/search.ts +42 -0
 - package/lib/routes/pornhub/templates/description.art +11 -0
 - package/lib/routes/pornhub/users.ts +56 -0
 - package/lib/routes/pornhub/utils.ts +33 -0
 - package/lib/routes/postman/namespace.ts +6 -0
 - package/lib/routes/postman/release-notes.ts +53 -0
 - package/lib/routes/priconne-redive/namespace.ts +6 -0
 - package/lib/routes/priconne-redive/news.ts +181 -0
 - package/lib/routes/producthunt/namespace.ts +7 -0
 - package/lib/routes/producthunt/today.ts +73 -0
 - package/lib/routes/ps/monthly-games.ts +59 -0
 - package/lib/routes/ps/namespace.ts +6 -0
 - package/lib/routes/ps/templates/monthly-games.art +1 -0
 - package/lib/routes/ps/trophy.ts +105 -0
 - package/lib/routes/psyche/namespace.ts +6 -0
 - package/lib/routes/psyche/templates/essay.art +3 -0
 - package/lib/routes/psyche/templates/video.art +10 -0
 - package/lib/routes/psyche/topic.ts +46 -0
 - package/lib/routes/psyche/type.ts +53 -0
 - package/lib/routes/psyche/utils.ts +107 -0
 - package/lib/routes/pts/curations.ts +72 -0
 - package/lib/routes/pts/index.ts +81 -0
 - package/lib/routes/pts/live.ts +77 -0
 - package/lib/routes/pts/namespace.ts +6 -0
 - package/lib/routes/pts/projects.ts +72 -0
 - package/lib/routes/pubmed/namespace.ts +6 -0
 - package/lib/routes/pubmed/trending.ts +70 -0
 - package/lib/routes/pubscholar/explore.ts +62 -0
 - package/lib/routes/pubscholar/namespace.ts +7 -0
 - package/lib/routes/pubscholar/types.ts +41 -0
 - package/lib/routes/pubscholar/utils.ts +44 -0
 - package/lib/routes/pumc/mdadmission.ts +88 -0
 - package/lib/routes/pumc/namespace.ts +6 -0
 - package/lib/routes/putty/changes.ts +61 -0
 - package/lib/routes/putty/namespace.ts +6 -0
 - package/lib/routes/pwc/namespace.ts +6 -0
 - package/lib/routes/pwc/sustainability.ts +88 -0
 - package/lib/routes/qbitai/category.ts +54 -0
 - package/lib/routes/qbitai/namespace.ts +6 -0
 - package/lib/routes/qbitai/tag.ts +51 -0
 - package/lib/routes/qbittorrent/namespace.ts +6 -0
 - package/lib/routes/qbittorrent/news.ts +82 -0
 - package/lib/routes/qdu/houqin.ts +89 -0
 - package/lib/routes/qdu/jwc.ts +78 -0
 - package/lib/routes/qdu/namespace.ts +6 -0
 - package/lib/routes/qianp/namespace.ts +6 -0
 - package/lib/routes/qianp/news.ts +66 -0
 - package/lib/routes/qianp/utils.ts +17 -0
 - package/lib/routes/qianzhan/column.ts +73 -0
 - package/lib/routes/qianzhan/namespace.ts +6 -0
 - package/lib/routes/qianzhan/rank.ts +70 -0
 - package/lib/routes/qidian/author.ts +68 -0
 - package/lib/routes/qidian/chapter.ts +57 -0
 - package/lib/routes/qidian/forum.ts +62 -0
 - package/lib/routes/qidian/free-next.ts +68 -0
 - package/lib/routes/qidian/free.ts +71 -0
 - package/lib/routes/qidian/namespace.ts +6 -0
 - package/lib/routes/qingting/channel.ts +52 -0
 - package/lib/routes/qingting/namespace.ts +6 -0
 - package/lib/routes/qingting/podcast.ts +125 -0
 - package/lib/routes/qipamaijia/index.ts +58 -0
 - package/lib/routes/qipamaijia/namespace.ts +6 -0
 - package/lib/routes/qiyoujiage/namespace.ts +6 -0
 - package/lib/routes/qiyoujiage/price.ts +36 -0
 - package/lib/routes/qlu/namespace.ts +6 -0
 - package/lib/routes/qlu/notice.ts +75 -0
 - package/lib/routes/qm120/namespace.ts +6 -0
 - package/lib/routes/qm120/news.ts +87 -0
 - package/lib/routes/qoo-app/apps/card.ts +57 -0
 - package/lib/routes/qoo-app/apps/comment.ts +68 -0
 - package/lib/routes/qoo-app/apps/note.ts +67 -0
 - package/lib/routes/qoo-app/apps/post.ts +71 -0
 - package/lib/routes/qoo-app/namespace.ts +6 -0
 - package/lib/routes/qoo-app/news.ts +63 -0
 - package/lib/routes/qoo-app/notes/note.ts +65 -0
 - package/lib/routes/qoo-app/notes/topic.ts +28 -0
 - package/lib/routes/qoo-app/notes/user.ts +39 -0
 - package/lib/routes/qoo-app/user/app-comment.ts +63 -0
 - package/lib/routes/qoo-app/utils.ts +48 -0
 - package/lib/routes/qq/ac/comic.ts +57 -0
 - package/lib/routes/qq/ac/rank.ts +51 -0
 - package/lib/routes/qq/ac/utils.ts +72 -0
 - package/lib/routes/qq/cfhd/index.ts +140 -0
 - package/lib/routes/qq/fact/index.ts +90 -0
 - package/lib/routes/qq/kg/cache.ts +29 -0
 - package/lib/routes/qq/kg/reply.ts +40 -0
 - package/lib/routes/qq/kg/user.ts +69 -0
 - package/lib/routes/qq/namespace.ts +8 -0
 - package/lib/routes/qq88/index.ts +83 -0
 - package/lib/routes/qq88/namespace.ts +6 -0
 - package/lib/routes/qqorw/index.ts +105 -0
 - package/lib/routes/qqorw/namespace.ts +6 -0
 - package/lib/routes/questmobile/namespace.ts +6 -0
 - package/lib/routes/questmobile/report.ts +260 -0
 - package/lib/routes/questmobile/templates/description.art +17 -0
 - package/lib/routes/quicker/namespace.ts +6 -0
 - package/lib/routes/quicker/qa.ts +104 -0
 - package/lib/routes/quicker/share.ts +93 -0
 - package/lib/routes/quicker/user.ts +85 -0
 - package/lib/routes/quicker/versions.ts +45 -0
 - package/lib/routes/qust/jw.ts +55 -0
 - package/lib/routes/qust/namespace.ts +6 -0
 - package/lib/routes/qweather/3days.ts +103 -0
 - package/lib/routes/qweather/namespace.ts +6 -0
 - package/lib/routes/qweather/now.ts +74 -0
 - package/lib/routes/qweather/templates/3days.art +22 -0
 - package/lib/routes/radio/album.ts +119 -0
 - package/lib/routes/radio/index.ts +86 -0
 - package/lib/routes/radio/namespace.ts +6 -0
 - package/lib/routes/radio/zhibo.ts +109 -0
 - package/lib/routes/radio-canada/latest.ts +78 -0
 - package/lib/routes/radio-canada/namespace.ts +6 -0
 - package/lib/routes/rarehistoricalphotos/index.ts +43 -0
 - package/lib/routes/rarehistoricalphotos/namespace.ts +6 -0
 - package/lib/routes/rattibha/namespace.ts +6 -0
 - package/lib/routes/rattibha/user.ts +70 -0
 - package/lib/routes/rawkuma/manga.ts +109 -0
 - package/lib/routes/rawkuma/namespace.ts +6 -0
 - package/lib/routes/rawkuma/templates/description.art +3 -0
 - package/lib/routes/reactiflux/namespace.ts +7 -0
 - package/lib/routes/reactiflux/transcripts.ts +103 -0
 - package/lib/routes/reactnewsletter/namespace.ts +6 -0
 - package/lib/routes/reactnewsletter/reactnewsletter.ts +40 -0
 - package/lib/routes/readhub/daily.ts +72 -0
 - package/lib/routes/readhub/index.ts +88 -0
 - package/lib/routes/readhub/namespace.ts +6 -0
 - package/lib/routes/readhub/templates/description.art +40 -0
 - package/lib/routes/readhub/util.ts +67 -0
 - package/lib/routes/remnote/changelog.ts +57 -0
 - package/lib/routes/remnote/namespace.ts +6 -0
 - package/lib/routes/researchgate/namespace.ts +6 -0
 - package/lib/routes/researchgate/publications.ts +86 -0
 - package/lib/routes/reuters/common.ts +200 -0
 - package/lib/routes/reuters/investigates.ts +59 -0
 - package/lib/routes/reuters/namespace.ts +9 -0
 - package/lib/routes/reuters/templates/description.art +44 -0
 - package/lib/routes/rfa/index.ts +78 -0
 - package/lib/routes/rfa/namespace.ts +6 -0
 - package/lib/routes/rfi/namespace.ts +6 -0
 - package/lib/routes/rfi/news.ts +85 -0
 - package/lib/routes/right/forum.ts +85 -0
 - package/lib/routes/right/namespace.ts +6 -0
 - package/lib/routes/robots.txt.ts +13 -0
 - package/lib/routes/rodong/namespace.ts +6 -0
 - package/lib/routes/rodong/news.ts +75 -0
 - package/lib/routes/routledge/book-series.ts +95 -0
 - package/lib/routes/routledge/namespace.ts +6 -0
 - package/lib/routes/routledge/templates/description.art +7 -0
 - package/lib/routes/rsc/journal.ts +136 -0
 - package/lib/routes/rsc/namespace.ts +6 -0
 - package/lib/routes/rsc/templates/image.art +5 -0
 - package/lib/routes/rsshub/namespace.ts +6 -0
 - package/lib/routes/rsshub/referer-map.ts +14 -0
 - package/lib/routes/rsshub/routes.ts +83 -0
 - package/lib/routes/rsshub/transform/html.ts +119 -0
 - package/lib/routes/rsshub/transform/json.ts +113 -0
 - package/lib/routes/rsshub/transform/sitemap.ts +59 -0
 - package/lib/routes/ruancan/category.ts +34 -0
 - package/lib/routes/ruancan/index.ts +22 -0
 - package/lib/routes/ruancan/namespace.ts +6 -0
 - package/lib/routes/ruancan/search.ts +34 -0
 - package/lib/routes/ruancan/user.ts +22 -0
 - package/lib/routes/ruancan/utils.ts +68 -0
 - package/lib/routes/ruc/ai.ts +87 -0
 - package/lib/routes/ruc/hr.ts +89 -0
 - package/lib/routes/ruc/namespace.ts +9 -0
 - package/lib/routes/runtrail/namespace.ts +6 -0
 - package/lib/routes/runtrail/posts.ts +49 -0
 - package/lib/routes/rustcc/jobs.ts +64 -0
 - package/lib/routes/rustcc/namespace.ts +6 -0
 - package/lib/routes/rustcc/news.ts +55 -0
 - package/lib/routes/sakurazaka46/blog.ts +114 -0
 - package/lib/routes/sakurazaka46/namespace.ts +6 -0
 - package/lib/routes/sakurazaka46/news.ts +77 -0
 - package/lib/routes/samsung/namespace.ts +6 -0
 - package/lib/routes/samsung/research/blog.ts +75 -0
 - package/lib/routes/sara/index.ts +66 -0
 - package/lib/routes/sara/namespace.ts +6 -0
 - package/lib/routes/saraba1st/digest.ts +115 -0
 - package/lib/routes/saraba1st/namespace.ts +6 -0
 - package/lib/routes/saraba1st/thread.ts +83 -0
 - package/lib/routes/sass/gs/index.ts +74 -0
 - package/lib/routes/sass/namespace.ts +6 -0
 - package/lib/routes/scau/namespace.ts +6 -0
 - package/lib/routes/scau/yjs.ts +52 -0
 - package/lib/routes/scau/yjsy.ts +52 -0
 - package/lib/routes/science/blogs.ts +96 -0
 - package/lib/routes/science/cover.ts +100 -0
 - package/lib/routes/science/current.ts +80 -0
 - package/lib/routes/science/early.ts +61 -0
 - package/lib/routes/science/namespace.ts +6 -0
 - package/lib/routes/science/utils.ts +63 -0
 - package/lib/routes/sciencedirect/cf-email.ts +40 -0
 - package/lib/routes/sciencedirect/journal.ts +94 -0
 - package/lib/routes/sciencedirect/namespace.ts +6 -0
 - package/lib/routes/sciencenet/blog.ts +98 -0
 - package/lib/routes/sciencenet/namespace.ts +6 -0
 - package/lib/routes/sciencenet/user.ts +90 -0
 - package/lib/routes/scmp/coronavirus.ts +22 -0
 - package/lib/routes/scmp/index.ts +87 -0
 - package/lib/routes/scmp/namespace.ts +6 -0
 - package/lib/routes/scmp/topic.ts +91 -0
 - package/lib/routes/scmp/utils.ts +87 -0
 - package/lib/routes/scnu/announcements-router.ts +1 -0
 - package/lib/routes/scnu/cs/match.ts +61 -0
 - package/lib/routes/scnu/jw.ts +58 -0
 - package/lib/routes/scnu/library.ts +58 -0
 - package/lib/routes/scnu/namespace.ts +6 -0
 - package/lib/routes/scnu/news-router.ts +1 -0
 - package/lib/routes/scnu/physics-school-announcements-and-news.ts +95 -0
 - package/lib/routes/scnu/research-news-router.ts +1 -0
 - package/lib/routes/scnu/ss.ts +53 -0
 - package/lib/routes/scnu/yjs.ts +49 -0
 - package/lib/routes/sctv/namespace.ts +6 -0
 - package/lib/routes/sctv/programme.ts +156 -0
 - package/lib/routes/scut/jwc/news.ts +131 -0
 - package/lib/routes/scut/jwc/notice.ts +146 -0
 - package/lib/routes/scut/jwc/school.ts +144 -0
 - package/lib/routes/scut/namespace.ts +6 -0
 - package/lib/routes/scut/scet/notice.ts +50 -0
 - package/lib/routes/scut/seie/news-ccenter.ts +81 -0
 - package/lib/routes/scut/smae/notice.ts +77 -0
 - package/lib/routes/scut/yjs.ts +55 -0
 - package/lib/routes/scvtc/namespace.ts +6 -0
 - package/lib/routes/scvtc/xygg.ts +66 -0
 - package/lib/routes/sdu/cmse.ts +82 -0
 - package/lib/routes/sdu/cs.ts +80 -0
 - package/lib/routes/sdu/data.ts +110 -0
 - package/lib/routes/sdu/epe.ts +78 -0
 - package/lib/routes/sdu/extractor/index.ts +21 -0
 - package/lib/routes/sdu/extractor/sdrj.ts +23 -0
 - package/lib/routes/sdu/extractor/view.ts +23 -0
 - package/lib/routes/sdu/extractor/wh/jwc.ts +26 -0
 - package/lib/routes/sdu/extractor/wh/news.ts +23 -0
 - package/lib/routes/sdu/mech.ts +83 -0
 - package/lib/routes/sdu/namespace.ts +6 -0
 - package/lib/routes/sdu/sc.ts +84 -0
 - package/lib/routes/sdu/wh/jwc.ts +65 -0
 - package/lib/routes/sdu/wh/news.ts +61 -0
 - package/lib/routes/sdust/namespace.ts +6 -0
 - package/lib/routes/sdust/yjsy/zhaosheng.ts +81 -0
 - package/lib/routes/sdzk/index.ts +80 -0
 - package/lib/routes/sdzk/namespace.ts +6 -0
 - package/lib/routes/sec-in/index.ts +27 -0
 - package/lib/routes/sec-in/namespace.ts +6 -0
 - package/lib/routes/sec-wiki/namespace.ts +6 -0
 - package/lib/routes/sec-wiki/weekly.ts +35 -0
 - package/lib/routes/secrss/author.ts +55 -0
 - package/lib/routes/secrss/category.ts +57 -0
 - package/lib/routes/secrss/namespace.ts +6 -0
 - package/lib/routes/seekingalpha/index.ts +120 -0
 - package/lib/routes/seekingalpha/namespace.ts +6 -0
 - package/lib/routes/seekingalpha/templates/summary.art +4 -0
 - package/lib/routes/sega/maimaidx.ts +64 -0
 - package/lib/routes/sega/namespace.ts +6 -0
 - package/lib/routes/sega/pjsekai.ts +75 -0
 - package/lib/routes/segmentfault/blogs.ts +46 -0
 - package/lib/routes/segmentfault/channel.ts +59 -0
 - package/lib/routes/segmentfault/namespace.ts +6 -0
 - package/lib/routes/segmentfault/user.ts +48 -0
 - package/lib/routes/segmentfault/utils.ts +61 -0
 - package/lib/routes/sehuatang/index.ts +145 -0
 - package/lib/routes/sehuatang/namespace.ts +6 -0
 - package/lib/routes/sehuatang/user.ts +138 -0
 - package/lib/routes/sensortower/blog.ts +102 -0
 - package/lib/routes/sensortower/namespace.ts +6 -0
 - package/lib/routes/setn/index.ts +138 -0
 - package/lib/routes/setn/namespace.ts +6 -0
 - package/lib/routes/seu/cse/index.ts +91 -0
 - package/lib/routes/seu/namespace.ts +6 -0
 - package/lib/routes/seu/radio/academic.ts +69 -0
 - package/lib/routes/seu/yjs.ts +63 -0
 - package/lib/routes/seu/yzb/index.ts +79 -0
 - package/lib/routes/sfacg/namespace.ts +6 -0
 - package/lib/routes/sfacg/novel-chapter.ts +76 -0
 - package/lib/routes/shcstheatre/namespace.ts +6 -0
 - package/lib/routes/shcstheatre/programs.ts +68 -0
 - package/lib/routes/shcstheatre/templates/description.art +65 -0
 - package/lib/routes/shiep/config.ts +67 -0
 - package/lib/routes/shiep/index.ts +121 -0
 - package/lib/routes/shiep/namespace.ts +6 -0
 - package/lib/routes/shiep/radar.ts +317 -0
 - package/lib/routes/shisu/en.ts +75 -0
 - package/lib/routes/shisu/namespace.ts +6 -0
 - package/lib/routes/shisu/news.ts +92 -0
 - package/lib/routes/shmeea/index.ts +80 -0
 - package/lib/routes/shmeea/namespace.ts +7 -0
 - package/lib/routes/shmeea/self-study.ts +87 -0
 - package/lib/routes/shmtu/jwc.ts +85 -0
 - package/lib/routes/shmtu/namespace.ts +6 -0
 - package/lib/routes/shmtu/portal.ts +112 -0
 - package/lib/routes/shmtu/www.ts +86 -0
 - package/lib/routes/shoac/namespace.ts +6 -0
 - package/lib/routes/shoac/recent-show.ts +101 -0
 - package/lib/routes/shoac/templates/detail.art +25 -0
 - package/lib/routes/shopback/namespace.ts +6 -0
 - package/lib/routes/shopback/store.ts +61 -0
 - package/lib/routes/shopify/apps/[handle].reviews.ts +78 -0
 - package/lib/routes/shopify/apps/const.ts +1 -0
 - package/lib/routes/shopify/apps/search.ts +82 -0
 - package/lib/routes/shopify/namespace.ts +6 -0
 - package/lib/routes/shoppingdesign/namespace.ts +6 -0
 - package/lib/routes/shoppingdesign/posts.ts +69 -0
 - package/lib/routes/showstart/artist.ts +42 -0
 - package/lib/routes/showstart/brand.ts +42 -0
 - package/lib/routes/showstart/const.ts +4 -0
 - package/lib/routes/showstart/event.ts +42 -0
 - package/lib/routes/showstart/namespace.ts +6 -0
 - package/lib/routes/showstart/search.ts +70 -0
 - package/lib/routes/showstart/service.ts +158 -0
 - package/lib/routes/showstart/utils.ts +86 -0
 - package/lib/routes/shu/index.ts +77 -0
 - package/lib/routes/shu/jwb.ts +63 -0
 - package/lib/routes/shu/namespace.ts +6 -0
 - package/lib/routes/shuiguopai/index.ts +105 -0
 - package/lib/routes/shuiguopai/namespace.ts +6 -0
 - package/lib/routes/shuiguopai/templates/description.art +8 -0
 - package/lib/routes/sicau/dky.ts +81 -0
 - package/lib/routes/sicau/namespace.ts +6 -0
 - package/lib/routes/sicau/yan.ts +81 -0
 - package/lib/routes/sicau/zsjy.ts +82 -0
 - package/lib/routes/sigsac/ccs.ts +77 -0
 - package/lib/routes/sigsac/namespace.ts +6 -0
 - package/lib/routes/simpleinfo/index.ts +90 -0
 - package/lib/routes/simpleinfo/namespace.ts +6 -0
 - package/lib/routes/sina/chuangshiji.ts +43 -0
 - package/lib/routes/sina/discovery.ts +55 -0
 - package/lib/routes/sina/finance/china.ts +55 -0
 - package/lib/routes/sina/finance/stock/usstock.ts +67 -0
 - package/lib/routes/sina/namespace.ts +6 -0
 - package/lib/routes/sina/rollnews.ts +54 -0
 - package/lib/routes/sina/sports.ts +52 -0
 - package/lib/routes/sina/templates/slide.art +3 -0
 - package/lib/routes/sina/templates/video.art +5 -0
 - package/lib/routes/sina/utils.ts +103 -0
 - package/lib/routes/sinchew/index.ts +88 -0
 - package/lib/routes/sinchew/namespace.ts +6 -0
 - package/lib/routes/sis001/forum.ts +82 -0
 - package/lib/routes/sis001/namespace.ts +6 -0
 - package/lib/routes/sjtu/gs.ts +101 -0
 - package/lib/routes/sjtu/jwc.ts +139 -0
 - package/lib/routes/sjtu/namespace.ts +6 -0
 - package/lib/routes/sjtu/seiee/academic.ts +17 -0
 - package/lib/routes/sjtu/seiee/bjwb.ts +44 -0
 - package/lib/routes/sjtu/seiee/utils.ts +41 -0
 - package/lib/routes/sjtu/seiee/xsb.ts +52 -0
 - package/lib/routes/sjtu/templates/activity.art +6 -0
 - package/lib/routes/sjtu/tongqu/activity.ts +69 -0
 - package/lib/routes/sjtu/yzb/zkxx.ts +54 -0
 - package/lib/routes/sketis/isabelle-dev/blog/index.ts +77 -0
 - package/lib/routes/sketis/namespace.ts +6 -0
 - package/lib/routes/skysports/namespace.ts +6 -0
 - package/lib/routes/skysports/news.ts +75 -0
 - package/lib/routes/slowmist/namespace.ts +6 -0
 - package/lib/routes/slowmist/slowmist.ts +77 -0
 - package/lib/routes/smashingmagazine/category.ts +125 -0
 - package/lib/routes/smashingmagazine/namespace.ts +6 -0
 - package/lib/routes/smzdm/article.ts +68 -0
 - package/lib/routes/smzdm/baoliao.ts +68 -0
 - package/lib/routes/smzdm/haowen-fenlei.ts +80 -0
 - package/lib/routes/smzdm/haowen.ts +68 -0
 - package/lib/routes/smzdm/keyword.ts +61 -0
 - package/lib/routes/smzdm/namespace.ts +9 -0
 - package/lib/routes/smzdm/ranking.ts +118 -0
 - package/lib/routes/snowpeak/namespace.ts +6 -0
 - package/lib/routes/snowpeak/us-new-arrivals.ts +73 -0
 - package/lib/routes/sobooks/date.ts +32 -0
 - package/lib/routes/sobooks/index.ts +42 -0
 - package/lib/routes/sobooks/namespace.ts +6 -0
 - package/lib/routes/sobooks/tag.ts +41 -0
 - package/lib/routes/sobooks/utils.ts +52 -0
 - package/lib/routes/sogou/doodles.ts +45 -0
 - package/lib/routes/sogou/namespace.ts +6 -0
 - package/lib/routes/sogou/search.ts +77 -0
 - package/lib/routes/sogou/templates/description.art +6 -0
 - package/lib/routes/sohu/mp.ts +210 -0
 - package/lib/routes/sohu/namespace.ts +6 -0
 - package/lib/routes/sohu/templates/video.art +7 -0
 - package/lib/routes/solidot/_article.ts +50 -0
 - package/lib/routes/solidot/main.ts +71 -0
 - package/lib/routes/solidot/namespace.ts +6 -0
 - package/lib/routes/sony/downloads.ts +75 -0
 - package/lib/routes/sony/namespace.ts +6 -0
 - package/lib/routes/soundofhope/channel.ts +70 -0
 - package/lib/routes/soundofhope/namespace.ts +6 -0
 - package/lib/routes/sourceforge/index.ts +55 -0
 - package/lib/routes/sourceforge/namespace.ts +6 -0
 - package/lib/routes/southcn/namespace.ts +6 -0
 - package/lib/routes/southcn/nfapp/column.ts +75 -0
 - package/lib/routes/southcn/nfapp/reporter.ts +57 -0
 - package/lib/routes/southcn/nfapp/utils.ts +21 -0
 - package/lib/routes/spotify/artist.ts +68 -0
 - package/lib/routes/spotify/artists-top.ts +57 -0
 - package/lib/routes/spotify/namespace.ts +6 -0
 - package/lib/routes/spotify/playlist.ts +60 -0
 - package/lib/routes/spotify/saved.ts +68 -0
 - package/lib/routes/spotify/show.ts +72 -0
 - package/lib/routes/spotify/tracks-top.ts +57 -0
 - package/lib/routes/spotify/utils.ts +58 -0
 - package/lib/routes/springer/journal.ts +100 -0
 - package/lib/routes/springer/namespace.ts +6 -0
 - package/lib/{v2 → routes}/springer/templates/description.art +0 -0
 - package/lib/routes/sputniknews/index.ts +160 -0
 - package/lib/routes/sputniknews/namespace.ts +6 -0
 - package/lib/routes/sqmc/namespace.ts +6 -0
 - package/lib/routes/sqmc/www.ts +77 -0
 - package/lib/routes/sse/convert.ts +58 -0
 - package/lib/routes/sse/disclosure.ts +66 -0
 - package/lib/routes/sse/inquire.ts +73 -0
 - package/lib/routes/sse/lawandrules.ts +68 -0
 - package/lib/routes/sse/namespace.ts +6 -0
 - package/lib/routes/sse/renewal.ts +85 -0
 - package/lib/routes/ssm/namespace.ts +6 -0
 - package/lib/routes/ssm/news.ts +66 -0
 - package/lib/routes/sspai/activity.ts +108 -0
 - package/lib/routes/sspai/author.ts +89 -0
 - package/lib/routes/sspai/bookmarks.ts +65 -0
 - package/lib/routes/sspai/column.ts +87 -0
 - package/lib/routes/sspai/index.ts +68 -0
 - package/lib/routes/sspai/matrix.ts +70 -0
 - package/lib/routes/sspai/namespace.ts +6 -0
 - package/lib/routes/sspai/prime-community.ts +83 -0
 - package/lib/routes/sspai/series-update.ts +61 -0
 - package/lib/routes/sspai/series.ts +73 -0
 - package/lib/routes/sspai/shortcuts-gallery.ts +54 -0
 - package/lib/routes/sspai/tag.ts +73 -0
 - package/lib/routes/sspai/topic.ts +81 -0
 - package/lib/routes/sspai/topics.ts +64 -0
 - package/lib/routes/sspu/jwc.ts +58 -0
 - package/lib/routes/sspu/namespace.ts +6 -0
 - package/lib/routes/sspu/pe.ts +80 -0
 - package/lib/routes/startuplatte/index.ts +84 -0
 - package/lib/routes/startuplatte/namespace.ts +6 -0
 - package/lib/routes/stbu/jsjxy.ts +80 -0
 - package/lib/routes/stbu/namespace.ts +6 -0
 - package/lib/routes/stbu/xyxw.ts +78 -0
 - package/lib/routes/stcn/index.ts +119 -0
 - package/lib/routes/stcn/namespace.ts +6 -0
 - package/lib/routes/stdaily/digitalpaper.ts +148 -0
 - package/lib/routes/stdaily/namespace.ts +6 -0
 - package/lib/routes/steam/appcommunityfeed.ts +92 -0
 - package/lib/routes/steam/namespace.ts +6 -0
 - package/lib/routes/steam/search.ts +64 -0
 - package/lib/routes/steam/templates/appcommunityfeed-description.art +4 -0
 - package/lib/routes/steam/templates/workshop-search-description.art +5 -0
 - package/lib/routes/steam/workshop-search.ts +109 -0
 - package/lib/routes/stheadline/namespace.ts +6 -0
 - package/lib/routes/stheadline/std/realtime.ts +57 -0
 - package/lib/routes/stockedge/daily-news.ts +55 -0
 - package/lib/routes/stockedge/namespace.ts +6 -0
 - package/lib/routes/stockedge/utils.ts +30 -0
 - package/lib/routes/storm/index.ts +91 -0
 - package/lib/routes/storm/namespace.ts +6 -0
 - package/lib/routes/storyfm/episodes.ts +92 -0
 - package/lib/routes/storyfm/index.ts +69 -0
 - package/lib/routes/storyfm/namespace.ts +6 -0
 - package/lib/routes/storyfm/templates/description.art +6 -0
 - package/lib/routes/stratechery/index.ts +28 -0
 - package/lib/routes/stratechery/namespace.ts +6 -0
 - package/lib/routes/stream-capital/namespace.ts +6 -0
 - package/lib/routes/stream-capital/search.ts +79 -0
 - package/lib/routes/stream-capital/types.ts +44 -0
 - package/lib/routes/stream-capital/utils.ts +18 -0
 - package/lib/routes/studygolang/go.ts +29 -0
 - package/lib/routes/studygolang/jobs.ts +24 -0
 - package/lib/routes/studygolang/namespace.ts +6 -0
 - package/lib/routes/studygolang/utils.ts +76 -0
 - package/lib/routes/studygolang/weekly.ts +24 -0
 - package/lib/routes/subhd/index.ts +88 -0
 - package/lib/routes/subhd/namespace.ts +6 -0
 - package/lib/routes/supchina/index.ts +83 -0
 - package/lib/routes/supchina/namespace.ts +6 -0
 - package/lib/routes/supchina/podcasts.ts +94 -0
 - package/lib/routes/surfshark/blog.ts +103 -0
 - package/lib/routes/surfshark/namespace.ts +6 -0
 - package/lib/routes/surfshark/templates/description.art +5 -0
 - package/lib/routes/sustainabilitymag/articles.ts +144 -0
 - package/lib/routes/sustainabilitymag/namespace.ts +6 -0
 - package/lib/routes/sustech/bidding.ts +59 -0
 - package/lib/routes/sustech/namespace.ts +6 -0
 - package/lib/routes/sustech/newshub-zh.ts +64 -0
 - package/lib/routes/sustech/yjs.ts +54 -0
 - package/lib/routes/swissinfo/index.ts +98 -0
 - package/lib/routes/swissinfo/namespace.ts +6 -0
 - package/lib/routes/swjtu/gsee/yjs.ts +76 -0
 - package/lib/routes/swjtu/jtys/yjs.ts +76 -0
 - package/lib/routes/swjtu/jwc.ts +93 -0
 - package/lib/routes/swjtu/jyzpxx.ts +54 -0
 - package/lib/routes/swjtu/namespace.ts +6 -0
 - package/lib/routes/swjtu/utils.ts +32 -0
 - package/lib/routes/swjtu/xg.ts +112 -0
 - package/lib/routes/swpu/bgw.ts +86 -0
 - package/lib/routes/swpu/cjxy.ts +83 -0
 - package/lib/routes/swpu/dean.ts +87 -0
 - package/lib/routes/swpu/dxy.ts +89 -0
 - package/lib/routes/swpu/is.ts +83 -0
 - package/lib/routes/swpu/namespace.ts +6 -0
 - package/lib/routes/swpu/scs.ts +86 -0
 - package/lib/routes/swpu/utils.ts +20 -0
 - package/lib/routes/syosetu/chapter.ts +87 -0
 - package/lib/routes/syosetu/namespace.ts +6 -0
 - package/lib/routes/sysu/cse.ts +128 -0
 - package/lib/routes/sysu/namespace.ts +6 -0
 - package/lib/routes/sysu/ygafz.ts +102 -0
 - package/lib/routes/szse/inquire.ts +80 -0
 - package/lib/routes/szse/namespace.ts +6 -0
 - package/lib/routes/szse/notice.ts +97 -0
 - package/lib/routes/szse/projectdynamic.ts +152 -0
 - package/lib/routes/szse/rule.ts +77 -0
 - package/lib/routes/szu/namespace.ts +6 -0
 - package/lib/routes/szu/yz/index.ts +74 -0
 - package/lib/routes/szu/yz/utils.ts +72 -0
 - package/lib/routes/t66y/index.ts +87 -0
 - package/lib/routes/t66y/namespace.ts +6 -0
 - package/lib/routes/t66y/post.ts +99 -0
 - package/lib/routes/t66y/utils.ts +57 -0
 - package/lib/routes/tableau/namespace.ts +6 -0
 - package/lib/routes/tableau/viz-of-the-day.ts +45 -0
 - package/lib/routes/taiwannews/hot.ts +79 -0
 - package/lib/routes/taiwannews/namespace.ts +6 -0
 - package/lib/routes/tangshufang/index.ts +95 -0
 - package/lib/routes/tangshufang/namespace.ts +6 -0
 - package/lib/routes/taobao/namespace.ts +6 -0
 - package/lib/routes/taobao/zhongchou.ts +71 -0
 - package/lib/routes/taoguba/blog.ts +109 -0
 - package/lib/routes/taoguba/index.ts +94 -0
 - package/lib/routes/taoguba/namespace.ts +6 -0
 - package/lib/routes/taptap/changelog.ts +71 -0
 - package/lib/routes/taptap/namespace.ts +10 -0
 - package/lib/routes/taptap/review.ts +166 -0
 - package/lib/routes/taptap/topic.ts +116 -0
 - package/lib/routes/taptap/utils.ts +50 -0
 - package/lib/routes/tass/namespace.ts +6 -0
 - package/lib/routes/tass/news.ts +87 -0
 - package/lib/routes/techcrunch/namespace.ts +6 -0
 - package/lib/routes/techcrunch/news.ts +66 -0
 - package/lib/routes/techflowpost/express.ts +47 -0
 - package/lib/routes/techflowpost/index.ts +45 -0
 - package/lib/routes/techflowpost/namespace.ts +6 -0
 - package/lib/routes/techpowerup/index.ts +85 -0
 - package/lib/routes/techpowerup/namespace.ts +6 -0
 - package/lib/routes/techpowerup/review.ts +96 -0
 - package/lib/routes/techpowerup/utils.ts +76 -0
 - package/lib/routes/telecompaper/namespace.ts +6 -0
 - package/lib/routes/telecompaper/news.ts +137 -0
 - package/lib/routes/telecompaper/search.ts +107 -0
 - package/lib/routes/telegram/blog.ts +61 -0
 - package/lib/routes/telegram/channel.ts +689 -0
 - package/lib/routes/telegram/namespace.ts +6 -0
 - package/lib/routes/telegram/stickerpack.ts +46 -0
 - package/lib/routes/telegram/tglib/channel.ts +159 -0
 - package/lib/routes/telegram/tglib/client.ts +189 -0
 - package/lib/routes/tencent/cloud/developer/column.ts +81 -0
 - package/lib/routes/tencent/namespace.ts +6 -0
 - package/lib/routes/tencent/news/author.ts +102 -0
 - package/lib/routes/tencent/news/coronavirus/data.ts +83 -0
 - package/lib/routes/tencent/news/coronavirus/total.ts +51 -0
 - package/lib/routes/tencent/news/coronavirus/utils.ts +15 -0
 - package/lib/routes/tencent/pvp/newsindex.ts +88 -0
 - package/lib/routes/tencent/qq/sdk/changelog.ts +76 -0
 - package/lib/routes/tencent/templates/news/image.art +4 -0
 - package/lib/routes/tesla/cx.ts +218 -0
 - package/lib/routes/tesla/namespace.ts +6 -0
 - package/lib/routes/tesla/price/get-price.ts +23 -0
 - package/lib/routes/tesla/price/index.ts +66 -0
 - package/lib/routes/tesla/templates/description.art +140 -0
 - package/lib/routes/test/index.ts +410 -0
 - package/lib/routes/test/namespace.ts +5 -0
 - package/lib/routes/tfc-taiwan/common.ts +38 -0
 - package/lib/routes/tfc-taiwan/index.ts +17 -0
 - package/lib/routes/tfc-taiwan/namespace.ts +6 -0
 - package/lib/routes/tfc-taiwan/templates/article.art +7 -0
 - package/lib/routes/tfc-taiwan/topic.ts +17 -0
 - package/lib/routes/tfc-taiwan/utils.ts +55 -0
 - package/lib/routes/tgbus/list.ts +67 -0
 - package/lib/routes/tgbus/namespace.ts +6 -0
 - package/lib/routes/tgbus/utils.ts +19 -0
 - package/lib/routes/theatlantic/namespace.ts +6 -0
 - package/lib/routes/theatlantic/news.ts +61 -0
 - package/lib/routes/theatlantic/utils.ts +58 -0
 - package/lib/routes/theblockbeats/index.ts +107 -0
 - package/lib/routes/theblockbeats/namespace.ts +6 -0
 - package/lib/routes/theblockbeats/templates/description.art +5 -0
 - package/lib/routes/thecover/channel.ts +89 -0
 - package/lib/routes/thecover/namespace.ts +6 -0
 - package/lib/routes/thehindu/namespace.ts +6 -0
 - package/lib/routes/thehindu/topic.ts +82 -0
 - package/lib/routes/theinitium/author.ts +23 -0
 - package/lib/routes/theinitium/channel.ts +28 -0
 - package/lib/routes/theinitium/follow.ts +43 -0
 - package/lib/routes/theinitium/namespace.ts +11 -0
 - package/lib/routes/theinitium/tags.ts +23 -0
 - package/lib/routes/theinitium/utils.ts +167 -0
 - package/lib/routes/themoviedb/api-key.ts +24 -0
 - package/lib/routes/themoviedb/collection.ts +40 -0
 - package/lib/routes/themoviedb/episodes.ts +46 -0
 - package/lib/routes/themoviedb/namespace.ts +9 -0
 - package/lib/routes/themoviedb/seasons.ts +50 -0
 - package/lib/routes/themoviedb/sheet.ts +75 -0
 - package/lib/routes/themoviedb/trending.ts +43 -0
 - package/lib/routes/themoviedb/utils.ts +37 -0
 - package/lib/routes/thenewslens/index.ts +92 -0
 - package/lib/routes/thenewslens/namespace.ts +6 -0
 - package/lib/routes/thepaper/839studio/category.ts +54 -0
 - package/lib/routes/thepaper/839studio/studio.ts +41 -0
 - package/lib/routes/thepaper/channel.ts +60 -0
 - package/lib/routes/thepaper/factpaper.ts +91 -0
 - package/lib/routes/thepaper/featured.ts +43 -0
 - package/lib/routes/thepaper/list.ts +145 -0
 - package/lib/routes/thepaper/namespace.ts +7 -0
 - package/lib/routes/thepaper/sidebar.ts +39 -0
 - package/lib/routes/thepaper/utils.ts +88 -0
 - package/lib/routes/thepetcity/index.ts +69 -0
 - package/lib/routes/thepetcity/namespace.ts +6 -0
 - package/lib/routes/thepetcity/terms-map.ts +28 -0
 - package/lib/routes/theverge/index.ts +133 -0
 - package/lib/routes/theverge/namespace.ts +6 -0
 - package/lib/routes/thoughtco/index.ts +413 -0
 - package/lib/routes/thoughtco/namespace.ts +6 -0
 - package/lib/routes/thoughtco/templates/description.art +16 -0
 - package/lib/routes/threads/index.ts +110 -0
 - package/lib/routes/threads/namespace.ts +6 -0
 - package/lib/routes/threads/utils.ts +166 -0
 - package/lib/routes/thwiki/index.ts +58 -0
 - package/lib/routes/thwiki/namespace.ts +6 -0
 - package/lib/routes/tiktok/namespace.ts +6 -0
 - package/lib/routes/tiktok/templates/user.art +7 -0
 - package/lib/routes/tiktok/user.ts +90 -0
 - package/lib/routes/timednews/namespace.ts +6 -0
 - package/lib/routes/timednews/news.ts +127 -0
 - package/lib/routes/tingshuitz/changsha.ts +68 -0
 - package/lib/routes/tingshuitz/dalian.ts +54 -0
 - package/lib/routes/tingshuitz/dongguan.ts +53 -0
 - package/lib/routes/tingshuitz/guangzhou.ts +42 -0
 - package/lib/routes/tingshuitz/hangzhou.ts +59 -0
 - package/lib/routes/tingshuitz/namespace.ts +7 -0
 - package/lib/routes/tingshuitz/nanjing.ts +58 -0
 - package/lib/routes/tingshuitz/shenzhen.ts +58 -0
 - package/lib/routes/tingshuitz/templates/shenzhen.art +8 -0
 - package/lib/routes/tingshuitz/wuhan.ts +47 -0
 - package/lib/routes/tingshuitz/xian.ts +50 -0
 - package/lib/routes/tingshuitz/xiaoshan.ts +59 -0
 - package/lib/routes/tingshuitz/yangjiang.ts +54 -0
 - package/lib/routes/tingtingfm/namespace.ts +6 -0
 - package/lib/routes/tingtingfm/program.ts +132 -0
 - package/lib/routes/tingtingfm/templates/audio.art +5 -0
 - package/lib/routes/tingtingfm/utils.ts +29 -0
 - package/lib/routes/tisi/index.ts +58 -0
 - package/lib/routes/tisi/namespace.ts +6 -0
 - package/lib/routes/tju/cic/index.ts +132 -0
 - package/lib/routes/tju/namespace.ts +6 -0
 - package/lib/routes/tju/news/index.ts +150 -0
 - package/lib/routes/tju/oaa/index.ts +135 -0
 - package/lib/routes/tju/yzb/index.ts +140 -0
 - package/lib/routes/tokeninsight/blog.ts +78 -0
 - package/lib/routes/tokeninsight/bulletin.ts +70 -0
 - package/lib/routes/tokeninsight/namespace.ts +9 -0
 - package/lib/routes/tokeninsight/report.ts +83 -0
 - package/lib/routes/tongji/bks.ts +55 -0
 - package/lib/routes/tongji/namespace.ts +6 -0
 - package/lib/routes/tongji/sse/_article.ts +25 -0
 - package/lib/routes/tongji/sse/notice.ts +71 -0
 - package/lib/routes/tongji/yjs.ts +52 -0
 - package/lib/routes/tongli/namespace.ts +6 -0
 - package/lib/routes/tongli/news.ts +75 -0
 - package/lib/routes/toodaylab/index.ts +108 -0
 - package/lib/routes/toodaylab/namespace.ts +6 -0
 - package/lib/routes/tophub/index.ts +64 -0
 - package/lib/routes/tophub/list.ts +76 -0
 - package/lib/routes/tophub/namespace.ts +9 -0
 - package/lib/routes/tophub/templates/rank.art +22 -0
 - package/lib/routes/topys/index.ts +93 -0
 - package/lib/routes/topys/namespace.ts +6 -0
 - package/lib/routes/tradingview/blog.ts +115 -0
 - package/lib/routes/tradingview/desktop.ts +86 -0
 - package/lib/routes/tradingview/namespace.ts +6 -0
 - package/lib/routes/tradingview/pine.ts +68 -0
 - package/lib/routes/tradingview/templates/description.art +13 -0
 - package/lib/routes/transcriptforest/index.ts +135 -0
 - package/lib/routes/transcriptforest/namespace.ts +6 -0
 - package/lib/routes/transcriptforest/templates/description.art +23 -0
 - package/lib/routes/trending/all-trending.ts +228 -0
 - package/lib/routes/trending/namespace.ts +6 -0
 - package/lib/routes/trendingpapers/namespace.ts +6 -0
 - package/lib/routes/trendingpapers/papers.ts +59 -0
 - package/lib/routes/tribalfootball/latest.ts +87 -0
 - package/lib/routes/tribalfootball/namespace.ts +6 -0
 - package/lib/routes/trow/namespace.ts +6 -0
 - package/lib/routes/trow/portal.ts +71 -0
 - package/lib/routes/tsinghua/lib/zydt.ts +129 -0
 - package/lib/routes/tsinghua/namespace.ts +8 -0
 - package/lib/routes/ttv/index.ts +78 -0
 - package/lib/routes/ttv/namespace.ts +6 -0
 - package/lib/routes/tvb/namespace.ts +6 -0
 - package/lib/routes/tvb/news.ts +118 -0
 - package/lib/routes/tvtropes/featured.ts +98 -0
 - package/lib/routes/tvtropes/namespace.ts +6 -0
 - package/lib/routes/tvtropes/templates/description.art +23 -0
 - package/lib/routes/twitch/live.ts +107 -0
 - package/lib/routes/twitch/namespace.ts +6 -0
 - package/lib/routes/twitch/schedule.ts +101 -0
 - package/lib/routes/twitch/video.ts +100 -0
 - package/lib/routes/twitter/api/developer-api/search.ts +23 -0
 - package/lib/routes/twitter/api/developer-api/user.ts +38 -0
 - package/lib/routes/twitter/api/index.ts +42 -0
 - package/lib/routes/twitter/api/mobile-api/api.ts +283 -0
 - package/lib/routes/twitter/api/mobile-api/constants.ts +86 -0
 - package/lib/routes/twitter/api/mobile-api/login.ts +185 -0
 - package/lib/routes/twitter/api/mobile-api/token.ts +42 -0
 - package/lib/routes/twitter/api/web-api/api.ts +197 -0
 - package/lib/routes/twitter/api/web-api/constants.ts +112 -0
 - package/lib/routes/twitter/api/web-api/utils.ts +129 -0
 - package/lib/routes/twitter/home.ts +60 -0
 - package/lib/routes/twitter/keyword.ts +54 -0
 - package/lib/routes/twitter/likes.ts +46 -0
 - package/lib/routes/twitter/list.ts +57 -0
 - package/lib/routes/twitter/media.ts +61 -0
 - package/lib/routes/twitter/namespace.ts +47 -0
 - package/lib/routes/twitter/trends.ts +44 -0
 - package/lib/routes/twitter/tweet.ts +65 -0
 - package/lib/routes/twitter/user.ts +76 -0
 - package/lib/routes/twitter/utils.ts +495 -0
 - package/lib/routes/twreporter/category.ts +71 -0
 - package/lib/routes/twreporter/fetch-article.ts +110 -0
 - package/lib/routes/twreporter/namespace.ts +6 -0
 - package/lib/routes/twreporter/newest.ts +52 -0
 - package/lib/routes/twreporter/templates/image.art +3 -0
 - package/lib/routes/twreporter/templates/youtube.art +1 -0
 - package/lib/routes/txrjy/fornumtopic.ts +98 -0
 - package/lib/routes/txrjy/namespace.ts +6 -0
 - package/lib/routes/tynu/namespace.ts +6 -0
 - package/lib/routes/tynu/tynu.ts +55 -0
 - package/lib/routes/typora/changelog-dev.ts +57 -0
 - package/lib/routes/typora/changelog.ts +66 -0
 - package/lib/routes/typora/namespace.ts +6 -0
 - package/lib/routes/typst/namespace.ts +13 -0
 - package/lib/routes/typst/universe.ts +108 -0
 - package/lib/routes/u3c3/index.ts +93 -0
 - package/lib/routes/u3c3/namespace.ts +6 -0
 - package/lib/routes/u9a9/index.ts +83 -0
 - package/lib/routes/u9a9/namespace.ts +6 -0
 - package/lib/routes/uber/blog.ts +85 -0
 - package/lib/routes/uber/namespace.ts +6 -0
 - package/lib/routes/ucas/ai.ts +53 -0
 - package/lib/routes/ucas/index.ts +82 -0
 - package/lib/routes/ucas/namespace.ts +6 -0
 - package/lib/routes/ucas/rader.ts +47 -0
 - package/lib/routes/uchicago/current.ts +107 -0
 - package/lib/routes/uchicago/namespace.ts +6 -0
 - package/lib/routes/udn/breaking-news.ts +125 -0
 - package/lib/routes/udn/global/index.ts +91 -0
 - package/lib/routes/udn/global/tag.ts +78 -0
 - package/lib/routes/udn/namespace.ts +6 -0
 - package/lib/routes/uestc/auto.ts +71 -0
 - package/lib/routes/uestc/cqe.ts +91 -0
 - package/lib/routes/uestc/gr.ts +74 -0
 - package/lib/routes/uestc/jwc.ts +82 -0
 - package/lib/routes/uestc/namespace.ts +6 -0
 - package/lib/routes/uestc/news.ts +81 -0
 - package/lib/routes/uestc/scse.ts +116 -0
 - package/lib/routes/uestc/sice.ts +72 -0
 - package/lib/routes/uestc/sise.ts +111 -0
 - package/lib/routes/uibe/hr.ts +88 -0
 - package/lib/routes/uibe/namespace.ts +6 -0
 - package/lib/routes/ulapia/index.ts +69 -0
 - package/lib/routes/ulapia/namespace.ts +6 -0
 - package/lib/routes/ulapia/research.ts +64 -0
 - package/lib/routes/uniqlo/namespace.ts +6 -0
 - package/lib/routes/uniqlo/new.ts +81 -0
 - package/lib/routes/unraid/community-apps.ts +60 -0
 - package/lib/routes/unraid/namespace.ts +6 -0
 - package/lib/routes/unusualwhales/namespace.ts +6 -0
 - package/lib/routes/unusualwhales/news.ts +49 -0
 - package/lib/routes/upc/jsj.ts +100 -0
 - package/lib/routes/upc/jwc.ts +121 -0
 - package/lib/routes/upc/main.ts +95 -0
 - package/lib/routes/upc/namespace.ts +6 -0
 - package/lib/routes/upc/yjs.ts +53 -0
 - package/lib/routes/uptimerobot/namespace.ts +6 -0
 - package/lib/routes/uptimerobot/rss.ts +161 -0
 - package/lib/routes/uraaka-joshi/namespace.ts +6 -0
 - package/lib/routes/uraaka-joshi/uraaka-joshi-user.ts +132 -0
 - package/lib/routes/uraaka-joshi/uraaka-joshi.ts +105 -0
 - package/lib/routes/urbandictionary/namespace.ts +6 -0
 - package/lib/routes/urbandictionary/random.ts +52 -0
 - package/lib/routes/usenix/loginonline.ts +63 -0
 - package/lib/routes/usenix/namespace.ts +6 -0
 - package/lib/routes/usenix/usenix.ts +78 -0
 - package/lib/routes/usepanda/index.ts +48 -0
 - package/lib/routes/usepanda/namespace.ts +6 -0
 - package/lib/routes/ustb/namespace.ts +6 -0
 - package/lib/routes/ustb/tj/news.ts +83 -0
 - package/lib/routes/ustb/yjsy/news.ts +484 -0
 - package/lib/routes/ustb/yzxc/tzgg.ts +75 -0
 - package/lib/routes/ustc/eeis.ts +91 -0
 - package/lib/routes/ustc/gs.ts +90 -0
 - package/lib/routes/ustc/index.ts +108 -0
 - package/lib/routes/ustc/job.ts +223 -0
 - package/lib/routes/ustc/jwc.ts +86 -0
 - package/lib/routes/ustc/math.ts +94 -0
 - package/lib/routes/ustc/namespace.ts +6 -0
 - package/lib/routes/ustc/sist.ts +91 -0
 - package/lib/routes/usts/jwch.ts +76 -0
 - package/lib/routes/usts/namespace.ts +6 -0
 - package/lib/routes/utgd/category.ts +102 -0
 - package/lib/routes/utgd/namespace.ts +6 -0
 - package/lib/routes/utgd/templates/description.art +11 -0
 - package/lib/routes/utgd/timeline.ts +85 -0
 - package/lib/routes/utgd/topic.ts +107 -0
 - package/lib/routes/uw/gix/news.ts +95 -0
 - package/lib/routes/uw/namespace.ts +6 -0
 - package/lib/routes/v1tx/index.ts +71 -0
 - package/lib/routes/v1tx/namespace.ts +6 -0
 - package/lib/routes/v2ex/namespace.ts +6 -0
 - package/lib/routes/v2ex/post.ts +59 -0
 - package/lib/routes/v2ex/tab.ts +76 -0
 - package/lib/routes/v2ex/topics.ts +49 -0
 - package/lib/routes/v2rayshare/index.ts +37 -0
 - package/lib/routes/v2rayshare/namespace.ts +6 -0
 - package/lib/routes/vcb-s/category.ts +83 -0
 - package/lib/routes/vcb-s/index.ts +57 -0
 - package/lib/routes/vcb-s/namespace.ts +6 -0
 - package/lib/routes/verfghbw/namespace.ts +6 -0
 - package/lib/routes/verfghbw/press.ts +84 -0
 - package/lib/routes/vice/namespace.ts +6 -0
 - package/lib/routes/vice/templates/article.art +19 -0
 - package/lib/routes/vice/topic.ts +103 -0
 - package/lib/routes/vimeo/category.ts +90 -0
 - package/lib/routes/vimeo/channel.ts +100 -0
 - package/lib/routes/vimeo/namespace.ts +6 -0
 - package/lib/routes/vimeo/usr-videos.ts +104 -0
 - package/lib/routes/vocus/namespace.ts +6 -0
 - package/lib/routes/vocus/publication.ts +67 -0
 - package/lib/routes/vocus/user.ts +63 -0
 - package/lib/routes/vocus/utils.ts +46 -0
 - package/lib/routes/vom/featured.ts +79 -0
 - package/lib/routes/vom/namespace.ts +6 -0
 - package/lib/routes/wallhaven/index.ts +86 -0
 - package/lib/routes/wallhaven/namespace.ts +13 -0
 - package/lib/routes/wallpaperhub/index.ts +46 -0
 - package/lib/routes/wallpaperhub/namespace.ts +6 -0
 - package/lib/routes/wallstreetcn/hot.ts +82 -0
 - package/lib/routes/wallstreetcn/live.ts +80 -0
 - package/lib/routes/wallstreetcn/namespace.ts +6 -0
 - package/lib/routes/wallstreetcn/news.ts +103 -0
 - package/lib/routes/wanqu/namespace.ts +6 -0
 - package/lib/routes/wanqu/news.ts +52 -0
 - package/lib/routes/warthunder/namespace.ts +6 -0
 - package/lib/routes/warthunder/news.ts +79 -0
 - package/lib/routes/watasuke/blog.ts +42 -0
 - package/lib/routes/watasuke/namespace.ts +7 -0
 - package/lib/routes/wdc/download.ts +56 -0
 - package/lib/routes/wdc/namespace.ts +6 -0
 - package/lib/routes/web/articles.ts +25 -0
 - package/lib/routes/web/blog.ts +25 -0
 - package/lib/routes/web/namespace.ts +6 -0
 - package/lib/routes/web/series.ts +32 -0
 - package/lib/routes/web/utils.ts +68 -0
 - package/lib/routes/web3caff/index.ts +73 -0
 - package/lib/routes/web3caff/namespace.ts +6 -0
 - package/lib/routes/wechat/announce.ts +58 -0
 - package/lib/routes/wechat/ce.ts +94 -0
 - package/lib/routes/wechat/data258.ts +148 -0
 - package/lib/routes/wechat/ershcimi.ts +52 -0
 - package/lib/routes/wechat/feeddd.ts +43 -0
 - package/lib/routes/wechat/mp.ts +81 -0
 - package/lib/routes/wechat/msgalbum.ts +61 -0
 - package/lib/routes/wechat/namespace.ts +9 -0
 - package/lib/routes/wechat/sogou.ts +77 -0
 - package/lib/routes/wechat/tgchannel.ts +185 -0
 - package/lib/routes/wechat/uread.ts +71 -0
 - package/lib/routes/wechat/wechat2rss.ts +47 -0
 - package/lib/routes/weekendhk/namespace.ts +6 -0
 - package/lib/routes/weekendhk/posts.ts +44 -0
 - package/lib/routes/weibo/friends.ts +162 -0
 - package/lib/routes/weibo/group.ts +118 -0
 - package/lib/routes/weibo/keyword.ts +69 -0
 - package/lib/routes/weibo/namespace.ts +41 -0
 - package/lib/routes/weibo/oasis/user.ts +46 -0
 - package/lib/routes/weibo/search/hot.ts +173 -0
 - package/lib/routes/weibo/search/template/digest.art +17 -0
 - package/lib/routes/weibo/super-index.ts +87 -0
 - package/lib/routes/weibo/timeline.ts +188 -0
 - package/lib/routes/weibo/user-bookmarks.ts +190 -0
 - package/lib/routes/weibo/user.ts +181 -0
 - package/lib/routes/weibo/utils.ts +478 -0
 - package/lib/routes/wellcee/namespace.ts +7 -0
 - package/lib/routes/wellcee/rent.ts +81 -0
 - package/lib/routes/wellcee/support-city.ts +46 -0
 - package/lib/routes/wellcee/templates/house.art +18 -0
 - package/lib/routes/wellcee/types.ts +58 -0
 - package/lib/routes/wellcee/utils.ts +45 -0
 - package/lib/routes/wenku8/chapter.ts +54 -0
 - package/lib/routes/wenku8/index.ts +60 -0
 - package/lib/routes/wenku8/namespace.ts +6 -0
 - package/lib/routes/wenku8/volume.ts +60 -0
 - package/lib/routes/wfdf/namespace.ts +6 -0
 - package/lib/routes/wfdf/news.ts +54 -0
 - package/lib/routes/wfu/jwc.ts +79 -0
 - package/lib/routes/wfu/namespace.ts +6 -0
 - package/lib/routes/wfu/news.ts +128 -0
 - package/lib/routes/whitehouse/briefing-room.ts +79 -0
 - package/lib/routes/whitehouse/namespace.ts +6 -0
 - package/lib/routes/whitehouse/ostp.ts +76 -0
 - package/lib/routes/who/namespace.ts +6 -0
 - package/lib/routes/who/news-room.ts +113 -0
 - package/lib/routes/who/news.ts +74 -0
 - package/lib/routes/who/speeches.ts +77 -0
 - package/lib/routes/whu/cs.ts +109 -0
 - package/lib/routes/whu/gs/index.ts +115 -0
 - package/lib/routes/whu/hyxt.ts +59 -0
 - package/lib/routes/whu/namespace.ts +6 -0
 - package/lib/routes/whu/news.ts +82 -0
 - package/lib/routes/whu/rsgis.ts +277 -0
 - package/lib/routes/whu/templates/description.art +39 -0
 - package/lib/routes/whu/util.ts +143 -0
 - package/lib/routes/wikinews/index.ts +68 -0
 - package/lib/routes/wikinews/namespace.ts +6 -0
 - package/lib/routes/winstall/namespace.ts +6 -0
 - package/lib/routes/winstall/templates/desc.art +5 -0
 - package/lib/routes/winstall/update.ts +71 -0
 - package/lib/routes/wired/namespace.ts +7 -0
 - package/lib/routes/wired/tag.ts +97 -0
 - package/lib/routes/wired/types.ts +81 -0
 - package/lib/routes/wise/namespace.ts +6 -0
 - package/lib/routes/wise/pair.ts +89 -0
 - package/lib/routes/wizfile/index.ts +66 -0
 - package/lib/routes/wizfile/namespace.ts +6 -0
 - package/lib/routes/wmc-bj/namespace.ts +6 -0
 - package/lib/routes/wmc-bj/publish.ts +69 -0
 - package/lib/routes/wmc-bj/templates/description.art +5 -0
 - package/lib/routes/wmpvp/index.ts +69 -0
 - package/lib/routes/wmpvp/namespace.ts +6 -0
 - package/lib/routes/wnacg/category.ts +17 -0
 - package/lib/routes/wnacg/common.ts +111 -0
 - package/lib/routes/wnacg/index.ts +16 -0
 - package/lib/routes/wnacg/namespace.ts +6 -0
 - package/lib/routes/wnacg/tag.ts +17 -0
 - package/lib/routes/wnacg/templates/manga.art +9 -0
 - package/lib/routes/wordpress/index.ts +172 -0
 - package/lib/routes/wordpress/namespace.ts +8 -0
 - package/lib/routes/wordpress/util.ts +307 -0
 - package/lib/routes/worldjournal/index.ts +76 -0
 - package/lib/routes/worldjournal/namespace.ts +6 -0
 - package/lib/routes/worldofwarships/devblog.ts +76 -0
 - package/lib/routes/worldofwarships/namespace.ts +13 -0
 - package/lib/routes/woshipm/namespace.ts +6 -0
 - package/lib/routes/woshipm/popular.ts +63 -0
 - package/lib/routes/woshipm/user-article.ts +62 -0
 - package/lib/routes/woshipm/utils.ts +18 -0
 - package/lib/routes/woshipm/wen.ts +62 -0
 - package/lib/routes/wsj/namespace.ts +6 -0
 - package/lib/routes/wsj/news.ts +83 -0
 - package/lib/routes/wsj/utils.ts +124 -0
 - package/lib/routes/wsyu/namespace.ts +6 -0
 - package/lib/routes/wsyu/news.ts +108 -0
 - package/lib/routes/wtu/index.ts +59 -0
 - package/lib/routes/wtu/job.ts +108 -0
 - package/lib/routes/wtu/namespace.ts +6 -0
 - package/lib/routes/wyzxwk/article.ts +130 -0
 - package/lib/routes/wyzxwk/namespace.ts +6 -0
 - package/lib/routes/wzu/namespace.ts +6 -0
 - package/lib/routes/wzu/news.ts +93 -0
 - package/lib/routes/x-mol/namespace.ts +6 -0
 - package/lib/routes/x-mol/news.ts +93 -0
 - package/lib/routes/x-mol/paper.ts +93 -0
 - package/lib/routes/x-mol/templates/description.art +6 -0
 - package/lib/routes/x-mol/utils.ts +3 -0
 - package/lib/routes/x6d/index.ts +141 -0
 - package/lib/routes/x6d/namespace.ts +6 -0
 - package/lib/routes/xaufe/jiaowu.ts +92 -0
 - package/lib/routes/xaufe/namespace.ts +6 -0
 - package/lib/routes/xaut/index.ts +95 -0
 - package/lib/routes/xaut/jwc.ts +92 -0
 - package/lib/routes/xaut/namespace.ts +6 -0
 - package/lib/routes/xaut/rsc.ts +94 -0
 - package/lib/routes/xboxfan/namespace.ts +6 -0
 - package/lib/routes/xboxfan/news.ts +70 -0
 - package/lib/routes/xianbao/index.ts +142 -0
 - package/lib/routes/xianbao/namespace.ts +6 -0
 - package/lib/routes/xiaoheihe/add2cart.ts +63 -0
 - package/lib/routes/xiaoheihe/discount.ts +102 -0
 - package/lib/routes/xiaoheihe/namespace.ts +6 -0
 - package/lib/routes/xiaoheihe/news.ts +61 -0
 - package/lib/routes/xiaoheihe/user.ts +69 -0
 - package/lib/routes/xiaoheihe/util.ts +75 -0
 - package/lib/routes/xiaohongshu/board.ts +55 -0
 - package/lib/routes/xiaohongshu/namespace.ts +6 -0
 - package/lib/routes/xiaohongshu/notes.ts +31 -0
 - package/lib/routes/xiaohongshu/user.ts +64 -0
 - package/lib/routes/xiaohongshu/util.ts +197 -0
 - package/lib/routes/xiaomiyoupin/crowdfunding.ts +71 -0
 - package/lib/routes/xiaomiyoupin/latest.ts +40 -0
 - package/lib/routes/xiaomiyoupin/namespace.ts +6 -0
 - package/lib/routes/xiaomiyoupin/utils.ts +21 -0
 - package/lib/routes/xiaote/index.ts +73 -0
 - package/lib/routes/xiaote/namespace.ts +6 -0
 - package/lib/routes/xiaoyuzhou/namespace.ts +6 -0
 - package/lib/routes/xiaoyuzhou/pickup.ts +112 -0
 - package/lib/routes/xiaoyuzhou/podcast.ts +61 -0
 - package/lib/routes/xiaozhuanlan/column.ts +78 -0
 - package/lib/routes/xiaozhuanlan/namespace.ts +6 -0
 - package/lib/routes/xidian/jwc.ts +77 -0
 - package/lib/routes/xidian/namespace.ts +6 -0
 - package/lib/routes/ximalaya/album.ts +260 -0
 - package/lib/routes/ximalaya/namespace.ts +6 -0
 - package/lib/routes/ximalaya/types.ts +68 -0
 - package/lib/routes/ximalaya/utils.ts +166 -0
 - package/lib/routes/xinpianchang/index.ts +44 -0
 - package/lib/routes/xinpianchang/namespace.ts +6 -0
 - package/lib/routes/xinpianchang/rank.ts +61 -0
 - package/lib/routes/xinpianchang/templates/description.art +13 -0
 - package/lib/routes/xinpianchang/util.ts +108 -0
 - package/lib/routes/xjtu/2yuan/news.ts +93 -0
 - package/lib/routes/xjtu/dean.ts +91 -0
 - package/lib/routes/xjtu/dyyy/index.ts +53 -0
 - package/lib/routes/xjtu/ee.ts +70 -0
 - package/lib/routes/xjtu/gs/tzgg.ts +65 -0
 - package/lib/routes/xjtu/international.ts +60 -0
 - package/lib/routes/xjtu/job.ts +109 -0
 - package/lib/routes/xjtu/namespace.ts +6 -0
 - package/lib/routes/xjtu/std.ts +84 -0
 - package/lib/routes/xkb/index.ts +86 -0
 - package/lib/routes/xkb/namespace.ts +6 -0
 - package/lib/routes/xmanhua/index.ts +88 -0
 - package/lib/routes/xmanhua/namespace.ts +6 -0
 - package/lib/routes/xmnn/epaper.ts +114 -0
 - package/lib/routes/xmnn/namespace.ts +6 -0
 - package/lib/routes/xmnn/news.ts +74 -0
 - package/lib/routes/xmut/jwc/bkjw.ts +71 -0
 - package/lib/routes/xmut/jwc/yjs.ts +60 -0
 - package/lib/routes/xmut/namespace.ts +6 -0
 - package/lib/routes/xsijishe/forum.ts +79 -0
 - package/lib/routes/xsijishe/namespace.ts +6 -0
 - package/lib/routes/xsijishe/rank.ts +81 -0
 - package/lib/routes/xueqiu/column.ts +66 -0
 - package/lib/routes/xueqiu/cookies.ts +15 -0
 - package/lib/routes/xueqiu/favorite.ts +57 -0
 - package/lib/routes/xueqiu/fund.ts +69 -0
 - package/lib/routes/xueqiu/hots.ts +67 -0
 - package/lib/routes/xueqiu/namespace.ts +6 -0
 - package/lib/routes/xueqiu/snb.ts +71 -0
 - package/lib/routes/xueqiu/stock-comments.ts +73 -0
 - package/lib/routes/xueqiu/stock-info.ts +98 -0
 - package/lib/routes/xueqiu/timeline.ts +94 -0
 - package/lib/routes/xueqiu/today.ts +86 -0
 - package/lib/routes/xueqiu/user-stock.ts +78 -0
 - package/lib/routes/xueqiu/user.ts +101 -0
 - package/lib/routes/xunhupay/index.ts +49 -0
 - package/lib/routes/xunhupay/namespace.ts +6 -0
 - package/lib/routes/xys/namespace.ts +6 -0
 - package/lib/routes/xys/new.ts +103 -0
 - package/lib/routes/xyzrank/index.ts +129 -0
 - package/lib/routes/xyzrank/namespace.ts +13 -0
 - package/lib/routes/yahoo/namespace.ts +6 -0
 - package/lib/routes/yahoo/news/tw/index.ts +80 -0
 - package/lib/routes/yahoo/news/tw/provider-helper.ts +43 -0
 - package/lib/routes/yahoo/news/tw/provider.ts +48 -0
 - package/lib/routes/yahoo/news/tw/utils.ts +125 -0
 - package/lib/routes/yahoo/news/us/index.ts +55 -0
 - package/lib/routes/yahoo/templates/youtube.art +1 -0
 - package/lib/routes/yamibo/bbs/forum.ts +116 -0
 - package/lib/routes/yamibo/bbs/thread.ts +84 -0
 - package/lib/routes/yamibo/namespace.ts +6 -0
 - package/lib/routes/yamibo/utils.ts +114 -0
 - package/lib/routes/yande/namespace.ts +7 -0
 - package/lib/routes/yande/post.ts +84 -0
 - package/lib/routes/yangtzeu/dongke.ts +70 -0
 - package/lib/routes/yangtzeu/namespace.ts +6 -0
 - package/lib/routes/ycwb/index.ts +116 -0
 - package/lib/routes/ycwb/namespace.ts +6 -0
 - package/lib/routes/ycwb/templates/description.art +7 -0
 - package/lib/routes/yenpress/namespace.ts +7 -0
 - package/lib/routes/yenpress/series.ts +115 -0
 - package/lib/routes/yenpress/templates/series.art +25 -0
 - package/lib/routes/ygkkk/namespace.ts +6 -0
 - package/lib/routes/ygkkk/rss.ts +48 -0
 - package/lib/routes/yicai/author.ts +52 -0
 - package/lib/routes/yicai/brief.ts +53 -0
 - package/lib/routes/yicai/dt.ts +174 -0
 - package/lib/routes/yicai/feed.ts +55 -0
 - package/lib/routes/yicai/headline.ts +39 -0
 - package/lib/routes/yicai/latest.ts +39 -0
 - package/lib/routes/yicai/namespace.ts +6 -0
 - package/lib/routes/yicai/news.ts +92 -0
 - package/lib/routes/yicai/templates/description.art +39 -0
 - package/lib/routes/yicai/utils.ts +59 -0
 - package/lib/routes/yicai/video.ts +102 -0
 - package/lib/routes/yicai/vip.ts +52 -0
 - package/lib/routes/ymgal/article.ts +84 -0
 - package/lib/routes/ymgal/game.ts +69 -0
 - package/lib/routes/ymgal/namespace.ts +6 -0
 - package/lib/routes/yoasobi-music/info.ts +97 -0
 - package/lib/routes/yoasobi-music/jsonp-helper.ts +17 -0
 - package/lib/routes/yoasobi-music/live.ts +80 -0
 - package/lib/routes/yoasobi-music/media.ts +87 -0
 - package/lib/routes/yoasobi-music/namespace.ts +6 -0
 - package/lib/routes/yomiuri/namespace.ts +6 -0
 - package/lib/routes/yomiuri/news.ts +124 -0
 - package/lib/routes/yomujp/level.ts +127 -0
 - package/lib/routes/yomujp/namespace.ts +6 -0
 - package/lib/routes/youku/channel.ts +84 -0
 - package/lib/routes/youku/namespace.ts +6 -0
 - package/lib/routes/youtube/channel.ts +76 -0
 - package/lib/routes/youtube/charts.ts +151 -0
 - package/lib/routes/youtube/community.ts +70 -0
 - package/lib/routes/youtube/custom.ts +79 -0
 - package/lib/routes/youtube/live.ts +76 -0
 - package/lib/routes/youtube/namespace.ts +6 -0
 - package/lib/routes/youtube/playlist.ts +60 -0
 - package/lib/routes/youtube/subscriptions.ts +96 -0
 - package/lib/routes/youtube/user.ts +90 -0
 - package/lib/routes/youtube/utils.ts +168 -0
 - package/lib/routes/youzhiyouxing/materials.ts +86 -0
 - package/lib/routes/youzhiyouxing/namespace.ts +6 -0
 - package/lib/routes/yuque/book.ts +126 -0
 - package/lib/routes/yuque/namespace.ts +6 -0
 - package/lib/routes/yuque/utils.ts +79 -0
 - package/lib/routes/yxdown/namespace.ts +6 -0
 - package/lib/routes/yxdown/news.ts +80 -0
 - package/lib/routes/yxdown/recommend.ts +80 -0
 - package/lib/routes/yxdown/utils.ts +14 -0
 - package/lib/routes/yxdzqb/index.ts +84 -0
 - package/lib/routes/yxdzqb/namespace.ts +6 -0
 - package/lib/routes/yxrb/home.ts +90 -0
 - package/lib/routes/yxrb/namespace.ts +6 -0
 - package/lib/routes/yyets/article.ts +68 -0
 - package/lib/routes/yyets/namespace.ts +6 -0
 - package/lib/routes/yyets/today.ts +62 -0
 - package/lib/routes/yystv/category.ts +86 -0
 - package/lib/routes/yystv/docs.ts +59 -0
 - package/lib/routes/yystv/namespace.ts +6 -0
 - package/lib/routes/zagg/namespace.ts +6 -0
 - package/lib/routes/zagg/new-arrivals.ts +75 -0
 - package/lib/routes/zaker/index.ts +80 -0
 - package/lib/routes/zaker/namespace.ts +6 -0
 - package/lib/routes/zaobao/interactive.ts +25 -0
 - package/lib/routes/zaobao/namespace.ts +9 -0
 - package/lib/routes/zaobao/other.ts +29 -0
 - package/lib/routes/zaobao/realtime.ts +59 -0
 - package/lib/routes/zaobao/util.ts +185 -0
 - package/lib/routes/zaobao/znews.ts +71 -0
 - package/lib/routes/zaozao/article.ts +64 -0
 - package/lib/routes/zaozao/namespace.ts +6 -0
 - package/lib/routes/zcmu/jwc/index.ts +63 -0
 - package/lib/routes/zcmu/namespace.ts +6 -0
 - package/lib/routes/zcmu/yxy/index.ts +64 -0
 - package/lib/routes/zcool/discover.ts +301 -0
 - package/lib/routes/zcool/locations.ts +6829 -0
 - package/lib/routes/zcool/namespace.ts +6 -0
 - package/lib/routes/zcool/top.ts +76 -0
 - package/lib/routes/zcool/user.ts +84 -0
 - package/lib/routes/zcool/utils.ts +14 -0
 - package/lib/routes/zhibo8/forum.ts +66 -0
 - package/lib/routes/zhibo8/luxiang.ts +52 -0
 - package/lib/routes/zhibo8/more.ts +104 -0
 - package/lib/routes/zhibo8/namespace.ts +6 -0
 - package/lib/routes/zhibo8/post.ts +68 -0
 - package/lib/routes/zhihu/activities.ts +155 -0
 - package/lib/routes/zhihu/answers.ts +92 -0
 - package/lib/routes/zhihu/bookstore/newest.ts +49 -0
 - package/lib/routes/zhihu/collection.ts +103 -0
 - package/lib/routes/zhihu/daily-section.ts +78 -0
 - package/lib/routes/zhihu/daily.ts +106 -0
 - package/lib/routes/zhihu/execlib/x-zse-96-v3.ts +125 -0
 - package/lib/routes/zhihu/hot.ts +60 -0
 - package/lib/routes/zhihu/hotlist.ts +72 -0
 - package/lib/routes/zhihu/namespace.ts +6 -0
 - package/lib/routes/zhihu/pin/daily.ts +44 -0
 - package/lib/routes/zhihu/pin/hotlist.ts +43 -0
 - package/lib/routes/zhihu/pin/people.ts +43 -0
 - package/lib/routes/zhihu/pin/utils.ts +68 -0
 - package/lib/routes/zhihu/posts.ts +87 -0
 - package/lib/routes/zhihu/question.ts +78 -0
 - package/lib/routes/zhihu/timeline.ts +147 -0
 - package/lib/routes/zhihu/topic.ts +117 -0
 - package/lib/routes/zhihu/types.ts +104 -0
 - package/lib/routes/zhihu/utils.ts +103 -0
 - package/lib/routes/zhihu/weekly.ts +56 -0
 - package/lib/routes/zhihu/xhu/activities.ts +162 -0
 - package/lib/routes/zhihu/xhu/answers.ts +56 -0
 - package/lib/routes/zhihu/xhu/auth.ts +31 -0
 - package/lib/routes/zhihu/xhu/collection.ts +100 -0
 - package/lib/routes/zhihu/xhu/posts.ts +53 -0
 - package/lib/routes/zhihu/xhu/question.ts +69 -0
 - package/lib/routes/zhihu/xhu/topic.ts +94 -0
 - package/lib/routes/zhihu/xhu/zhuanlan.ts +116 -0
 - package/lib/routes/zhihu/zhuanlan.ts +124 -0
 - package/lib/routes/zhitongcaijing/index.ts +157 -0
 - package/lib/routes/zhitongcaijing/namespace.ts +6 -0
 - package/lib/routes/zhiy/letter.ts +58 -0
 - package/lib/routes/zhiy/namespace.ts +6 -0
 - package/lib/routes/zhiy/post.ts +97 -0
 - package/lib/routes/zhiy/utils.ts +10 -0
 - package/lib/routes/zhonglun/index.ts +135 -0
 - package/lib/routes/zhonglun/namespace.ts +8 -0
 - package/lib/routes/zhonglun/templates/description.art +7 -0
 - package/lib/routes/zhubai/index.ts +56 -0
 - package/lib/routes/zhubai/namespace.ts +6 -0
 - package/lib/routes/zhubai/templates/description.art +59 -0
 - package/lib/routes/zhubai/top20.ts +95 -0
 - package/lib/routes/zhujiceping/namespace.ts +6 -0
 - package/lib/routes/zhujiceping/rss.ts +48 -0
 - package/lib/routes/zhuwang/index.ts +71 -0
 - package/lib/routes/zhuwang/namespace.ts +6 -0
 - package/lib/routes/zimuxia/index.ts +87 -0
 - package/lib/routes/zimuxia/namespace.ts +6 -0
 - package/lib/routes/zimuxia/portfolio.ts +79 -0
 - package/lib/routes/zjgtjy/index.ts +46 -0
 - package/lib/routes/zjgtjy/namespace.ts +6 -0
 - package/lib/routes/zjol/namespace.ts +6 -0
 - package/lib/routes/zjol/paper.ts +117 -0
 - package/lib/routes/zju/career/index.ts +65 -0
 - package/lib/routes/zju/cst/custom.ts +71 -0
 - package/lib/routes/zju/cst/index.ts +107 -0
 - package/lib/routes/zju/grs/index.ts +66 -0
 - package/lib/routes/zju/list.ts +82 -0
 - package/lib/routes/zju/namespace.ts +6 -0
 - package/lib/routes/zju/physics/index.ts +74 -0
 - package/lib/routes/zjut/da/index.ts +92 -0
 - package/lib/routes/zjut/namespace.ts +6 -0
 - package/lib/routes/zjut/news.ts +82 -0
 - package/lib/routes/zjuvag/blog.ts +52 -0
 - package/lib/routes/zjuvag/namespace.ts +6 -0
 - package/lib/routes/zodgame/forum.ts +121 -0
 - package/lib/routes/zodgame/namespace.ts +6 -0
 - package/lib/routes/zodgame/templates/forum.art +1 -0
 - package/lib/routes/zotero/namespace.ts +6 -0
 - package/lib/routes/zotero/versions.ts +57 -0
 - package/lib/routes/zrblog/namespace.ts +6 -0
 - package/lib/routes/zrblog/rss.ts +48 -0
 - package/lib/routes/zsxq/group.ts +63 -0
 - package/lib/routes/zsxq/namespace.ts +6 -0
 - package/lib/routes/zsxq/types.ts +149 -0
 - package/lib/routes/zsxq/user.ts +58 -0
 - package/lib/routes/zsxq/utils.ts +70 -0
 - package/lib/routes/zuel/namespace.ts +6 -0
 - package/lib/routes/zuel/notice.ts +78 -0
 - package/lib/routes/zuvio/boards.ts +34 -0
 - package/lib/routes/zuvio/namespace.ts +6 -0
 - package/lib/routes/zuvio/student5.ts +78 -0
 - package/lib/routes/zuvio/utils.ts +72 -0
 - package/lib/routes/zyshow/index.ts +58 -0
 - package/lib/routes/zyshow/namespace.ts +6 -0
 - package/lib/routes/zyw/hot.ts +88 -0
 - package/lib/routes/zyw/namespace.ts +6 -0
 - package/lib/routes-deprecated/10000link/news.js +59 -0
 - package/lib/routes-deprecated/12379/index.js +23 -0
 - package/lib/routes-deprecated/199it/category.js +10 -0
 - package/lib/routes-deprecated/199it/tag.js +10 -0
 - package/lib/routes-deprecated/199it/utils.js +44 -0
 - package/lib/routes-deprecated/21caijing/channel.js +76 -0
 - package/lib/routes-deprecated/60s-science/transcript.js +60 -0
 - package/lib/routes-deprecated/755/user.js +71 -0
 - package/lib/routes-deprecated/99percentinvisible/transcript.js +46 -0
 - package/lib/routes-deprecated/acm/amturingaward.js +68 -0
 - package/lib/routes-deprecated/acwifi/index.js +48 -0
 - package/lib/routes-deprecated/adquan/index.js +67 -0
 - package/lib/routes-deprecated/aiyanxishe/home.js +134 -0
 - package/lib/routes-deprecated/amazfitwatchfaces/search.js +7 -0
 - package/lib/routes-deprecated/amd/graphicsdrivers.js +114 -0
 - package/lib/routes-deprecated/aozora/newbook.js +93 -0
 - package/lib/routes-deprecated/appsales/index.js +66 -0
 - package/lib/routes-deprecated/archdaily/home.js +47 -0
 - package/lib/routes-deprecated/asahi/index.js +90 -0
 - package/lib/routes-deprecated/autotrader/index.js +69 -0
 - package/lib/routes-deprecated/avgle/videos.js +46 -0
 - package/lib/routes-deprecated/axis-studios/work.js +75 -0
 - package/lib/routes-deprecated/babykingdom/index.js +64 -0
 - package/lib/routes-deprecated/bahamut/creation-index.js +73 -0
 - package/lib/routes-deprecated/bahamut/utils.js +65 -0
 - package/lib/routes-deprecated/bandisoft/index.js +42 -0
 - package/lib/routes-deprecated/banyuetan/index.js +56 -0
 - package/lib/routes-deprecated/benedictevans/recent.js +41 -0
 - package/lib/routes-deprecated/bibgame/category.js +56 -0
 - package/lib/routes-deprecated/bjnews/news.js +44 -0
 - package/lib/routes-deprecated/blogs/hedwig.js +42 -0
 - package/lib/routes-deprecated/blogs/wangyin.js +50 -0
 - package/lib/routes-deprecated/blow-studio/work.js +71 -0
 - package/lib/routes-deprecated/blur-studio/index.js +79 -0
 - package/lib/routes-deprecated/booth-pm/shop.js +58 -0
 - package/lib/routes-deprecated/ccg/index.js +49 -0
 - package/lib/routes-deprecated/cell/cell/index.js +113 -0
 - package/lib/routes-deprecated/cell/cover.js +106 -0
 - package/lib/routes-deprecated/cfan/news.js +49 -0
 - package/lib/routes-deprecated/cgtn/most.js +48 -0
 - package/lib/routes-deprecated/cgtn/opinions.js +50 -0
 - package/lib/routes-deprecated/chaoli/index.js +50 -0
 - package/lib/routes-deprecated/checkee/index.js +57 -0
 - package/lib/routes-deprecated/chicagotribune/index.js +77 -0
 - package/lib/routes-deprecated/chiphell/forum.js +67 -0
 - package/lib/routes-deprecated/chocolatey/software.js +55 -0
 - package/lib/routes-deprecated/chouti/top.js +28 -0
 - package/lib/routes-deprecated/chsi/zszcgd.js +51 -0
 - package/lib/routes-deprecated/citavi/index.js +52 -0
 - package/lib/routes-deprecated/cnu/discovery.js +59 -0
 - package/lib/routes-deprecated/cnu/selected.js +52 -0
 - package/lib/routes-deprecated/cnu/utils.js +28 -0
 - package/lib/routes-deprecated/cpython/index.js +30 -0
 - package/lib/routes-deprecated/csc/notice.js +99 -0
 - package/lib/routes-deprecated/daxiaamu/home.js +45 -0
 - package/lib/routes-deprecated/ddrk/index.js +32 -0
 - package/lib/routes-deprecated/ddrk/list.js +37 -0
 - package/lib/routes-deprecated/deepl/blog.js +34 -0
 - package/lib/routes-deprecated/dev.to/top.js +40 -0
 - package/lib/routes-deprecated/dgtle/index.js +57 -0
 - package/lib/routes-deprecated/dgtle/keyword.js +30 -0
 - package/lib/routes-deprecated/dgtle/trade.js +42 -0
 - package/lib/routes-deprecated/dida365/habit-checkins.js +84 -0
 - package/lib/routes-deprecated/digitaling/article.js +71 -0
 - package/lib/routes-deprecated/digitaling/index.js +42 -0
 - package/lib/routes-deprecated/digitaling/project.js +55 -0
 - package/lib/routes-deprecated/discuss/index.js +71 -0
 - package/lib/routes-deprecated/disqus/posts.js +53 -0
 - package/lib/routes-deprecated/dongmanmanhua/comic.js +45 -0
 - package/lib/routes-deprecated/duozhi/index.js +45 -0
 - package/lib/routes-deprecated/edrawsoft/mindmap.js +95 -0
 - package/lib/routes-deprecated/eeo/index.js +79 -0
 - package/lib/routes-deprecated/eleme/open/announce.js +32 -0
 - package/lib/routes-deprecated/emi-nitta/home.js +69 -0
 - package/lib/routes-deprecated/enclavebooks/category.js +76 -0
 - package/lib/routes-deprecated/enclavebooks/collection.js +44 -0
 - package/lib/routes-deprecated/enclavebooks/user.js +44 -0
 - package/lib/routes-deprecated/engadget/home.js +67 -0
 - package/lib/routes-deprecated/etherscan/transactions.js +37 -0
 - package/lib/routes-deprecated/everything/changes.js +33 -0
 - package/lib/routes-deprecated/fanfou/favorites.js +36 -0
 - package/lib/routes-deprecated/fanfou/home-timeline.js +32 -0
 - package/lib/routes-deprecated/fanfou/public-timeline.js +34 -0
 - package/lib/routes-deprecated/fanfou/user-timeline.js +35 -0
 - package/lib/routes-deprecated/fanfou/utils.js +40 -0
 - package/lib/routes-deprecated/fashionnetwork/headline.js +56 -0
 - package/lib/routes-deprecated/fashionnetwork/news.js +74 -0
 - package/lib/routes-deprecated/furaffinity/home.js +72 -0
 - package/lib/routes-deprecated/furaffinity/status.js +38 -0
 - package/lib/routes-deprecated/furaffinity/user.js +108 -0
 - package/lib/routes-deprecated/galaxylab/index.js +35 -0
 - package/lib/routes-deprecated/gamersky/ent.js +89 -0
 - package/lib/routes-deprecated/gaoqing/utils.js +57 -0
 - package/lib/routes-deprecated/gitlab/explore.js +43 -0
 - package/lib/routes-deprecated/gitlab/release.js +35 -0
 - package/lib/routes-deprecated/gitlab/tag.js +35 -0
 - package/lib/routes-deprecated/go.jp/mofa/main.js +94 -0
 - package/lib/routes-deprecated/gocomics/index.js +64 -0
 - package/lib/routes-deprecated/gov/beijing/eea.js +92 -0
 - package/lib/routes-deprecated/gov/beijing/mhc.js +68 -0
 - package/lib/routes-deprecated/gov/chongqing/ljxq/zwgk.js +67 -0
 - package/lib/routes-deprecated/gov/city/nanjing/get-content.js +69 -0
 - package/lib/routes-deprecated/gov/city/nanjing/index.js +32 -0
 - package/lib/routes-deprecated/gov/cnca/hydt.js +54 -0
 - package/lib/routes-deprecated/gov/cnca/jgdt.js +54 -0
 - package/lib/routes-deprecated/gov/cnca/zxtz.js +63 -0
 - package/lib/routes-deprecated/gov/cppcc/index.js +48 -0
 - package/lib/routes-deprecated/gov/guangdong/edu.js +83 -0
 - package/lib/routes-deprecated/gov/guangdong/eea.js +59 -0
 - package/lib/routes-deprecated/gov/harbin/kjj.js +39 -0
 - package/lib/routes-deprecated/gov/hubei/hbsia.js +101 -0
 - package/lib/routes-deprecated/gov/hunan/notice.js +80 -0
 - package/lib/routes-deprecated/gov/mohrss/sbjm.js +59 -0
 - package/lib/routes-deprecated/gov/mohurd/policy.js +39 -0
 - package/lib/routes-deprecated/gov/ngd/index.js +51 -0
 - package/lib/routes-deprecated/gov/nppa/channels.js +58 -0
 - package/lib/routes-deprecated/gov/nppa/contents.js +38 -0
 - package/lib/routes-deprecated/gov/province/jiangsu/get-content.js +77 -0
 - package/lib/routes-deprecated/gov/province/jiangsu/index.js +66 -0
 - package/lib/routes-deprecated/gov/sapprft/7026.js +98 -0
 - package/lib/routes-deprecated/gov/shanghai/sthj.js +26 -0
 - package/lib/routes-deprecated/gov/taiwan/mnd.js +63 -0
 - package/lib/routes-deprecated/gov/veterans/china.js +76 -0
 - package/lib/routes-deprecated/gov/veterans/hebei.js +69 -0
 - package/lib/routes-deprecated/gov/wuhan/kjj.js +63 -0
 - package/lib/routes-deprecated/gov/wuhan/wehdz.js +63 -0
 - package/lib/routes-deprecated/gov/xinwen/tujie.js +75 -0
 - package/lib/routes-deprecated/guanggoo/index.js +81 -0
 - package/lib/routes-deprecated/guardian/guardian.js +45 -0
 - package/lib/routes-deprecated/guat/news.js +68 -0
 - package/lib/routes-deprecated/guet/news.js +95 -0
 - package/lib/routes-deprecated/gwern/category.js +58 -0
 - package/lib/routes-deprecated/hackerone/hacktivity.js +47 -0
 - package/lib/routes-deprecated/hackerone/search.js +48 -0
 - package/lib/routes-deprecated/haohaozhu/discover.js +42 -0
 - package/lib/routes-deprecated/haohaozhu/whole-house.js +75 -0
 - package/lib/routes-deprecated/hdx/explore.js +57 -0
 - package/lib/routes-deprecated/hentai-cosplays/utils.js +52 -0
 - package/lib/routes-deprecated/hexo/fluid.js +49 -0
 - package/lib/routes-deprecated/hexo/next.js +49 -0
 - package/lib/routes-deprecated/hexo/yilia.js +34 -0
 - package/lib/routes-deprecated/hkej/index.js +138 -0
 - package/lib/routes-deprecated/huya/live.js +33 -0
 - package/lib/routes-deprecated/icourse163/newest.js +77 -0
 - package/lib/routes-deprecated/idownloadblog/index.js +51 -0
 - package/lib/routes-deprecated/ifanr/index.js +71 -0
 - package/lib/routes-deprecated/ifnews/column.js +76 -0
 - package/lib/routes-deprecated/im2maker/index.js +60 -0
 - package/lib/routes-deprecated/index.js +100 -0
 - package/lib/routes-deprecated/iplay/utils.js +57 -0
 - package/lib/routes-deprecated/jpmorganchase/research.js +52 -0
 - package/lib/routes-deprecated/jx3/news.js +52 -0
 - package/lib/routes-deprecated/kaiyan/index.js +53 -0
 - package/lib/routes-deprecated/kongfz/shop.js +58 -0
 - package/lib/routes-deprecated/kuai/id.js +38 -0
 - package/lib/routes-deprecated/kuai/index.js +38 -0
 - package/lib/routes-deprecated/laosiji/feed.js +24 -0
 - package/lib/routes-deprecated/laosiji/hotshow.js +33 -0
 - package/lib/routes-deprecated/lastfm/loved.js +27 -0
 - package/lib/routes-deprecated/lastfm/recent.js +27 -0
 - package/lib/routes-deprecated/lastfm/top.js +27 -0
 - package/lib/routes-deprecated/law/dh.js +39 -0
 - package/lib/routes-deprecated/law/gf.js +41 -0
 - package/lib/routes-deprecated/law/hq.js +39 -0
 - package/lib/routes-deprecated/law/hw.js +39 -0
 - package/lib/routes-deprecated/law/jctd.js +41 -0
 - package/lib/routes-deprecated/law/jh.js +41 -0
 - package/lib/routes-deprecated/law/jtc.js +41 -0
 - package/lib/routes-deprecated/law/ts.js +41 -0
 - package/lib/routes-deprecated/law/zl.js +40 -0
 - package/lib/routes-deprecated/letterboxd/utils.js +140 -0
 - package/lib/routes-deprecated/lifetimes/index.js +99 -0
 - package/lib/routes-deprecated/liyuan-forums/threads.js +76 -0
 - package/lib/routes-deprecated/lol/newsindex.js +87 -0
 - package/lib/routes-deprecated/lolapp/article.js +53 -0
 - package/lib/routes-deprecated/lwn/alerts.js +57 -0
 - package/lib/routes-deprecated/mafengwo/note.js +53 -0
 - package/lib/routes-deprecated/magireco/announcements.js +27 -0
 - package/lib/routes-deprecated/magireco/event-banner.js +35 -0
 - package/lib/routes-deprecated/maoyan/hot-complete.js +83 -0
 - package/lib/routes-deprecated/mcdonalds/news.js +53 -0
 - package/lib/routes-deprecated/mediadigest/category.js +130 -0
 - package/lib/routes-deprecated/meihua/article.js +54 -0
 - package/lib/routes-deprecated/meihua/shots.js +58 -0
 - package/lib/routes-deprecated/meituan/open/announce.js +45 -0
 - package/lib/routes-deprecated/method-studios/index.js +60 -0
 - package/lib/routes-deprecated/mhw/news.js +47 -0
 - package/lib/routes-deprecated/mhw/update.js +65 -0
 - package/lib/routes-deprecated/micmicidol/article.js +28 -0
 - package/lib/routes-deprecated/microsoft-store/updates.js +30 -0
 - package/lib/routes-deprecated/mihoyo/bh2.js +43 -0
 - package/lib/routes-deprecated/mihoyo/bh3.js +60 -0
 - package/lib/routes-deprecated/missevan/drama.js +40 -0
 - package/lib/routes-deprecated/missevan/latest.js +47 -0
 - package/lib/routes-deprecated/moxingfans/index.js +50 -0
 - package/lib/routes-deprecated/muchong/journal.js +52 -0
 - package/lib/routes-deprecated/netflix/newsroom.js +82 -0
 - package/lib/routes-deprecated/nobelprize/index.js +79 -0
 - package/lib/routes-deprecated/noi/index.js +40 -0
 - package/lib/routes-deprecated/noi/province-news.js +40 -0
 - package/lib/routes-deprecated/noi/rg-news.js +47 -0
 - package/lib/routes-deprecated/noi/winners-list.js +41 -0
 - package/lib/routes-deprecated/novel/biquge.js +66 -0
 - package/lib/routes-deprecated/novel/biqugeinfo.js +66 -0
 - package/lib/routes-deprecated/novel/uukanshu.js +39 -0
 - package/lib/routes-deprecated/one/index.js +48 -0
 - package/lib/routes-deprecated/owspace/read.js +141 -0
 - package/lib/routes-deprecated/paidai/utils.js +26 -0
 - package/lib/routes-deprecated/patchwork.kernel.org/comments.js +33 -0
 - package/lib/routes-deprecated/piapro/public.js +54 -0
 - package/lib/routes-deprecated/piapro/user.js +47 -0
 - package/lib/routes-deprecated/piapro/utils.js +45 -0
 - package/lib/routes-deprecated/pmcaff/feed.js +51 -0
 - package/lib/routes-deprecated/pmcaff/list.js +67 -0
 - package/lib/routes-deprecated/potplayer/update.js +42 -0
 - package/lib/routes-deprecated/project-zero-issues/index.js +48 -0
 - package/lib/routes-deprecated/psnine/game.js +32 -0
 - package/lib/routes-deprecated/psnine/index.js +33 -0
 - package/lib/routes-deprecated/psnine/shuzhe.js +33 -0
 - package/lib/routes-deprecated/psnine/trade.js +39 -0
 - package/lib/routes-deprecated/ptpress/book.js +34 -0
 - package/lib/routes-deprecated/qstheory/index.js +122 -0
 - package/lib/routes-deprecated/quantamagazine/archive.js +81 -0
 - package/lib/routes-deprecated/qutoutiao/category.js +42 -0
 - package/lib/routes-deprecated/react/react-native-weekly.js +35 -0
 - package/lib/routes-deprecated/remote-work/index.js +88 -0
 - package/lib/routes-deprecated/rescuetime/release-notes.js +37 -0
 - package/lib/routes-deprecated/rthk-news/index.js +60 -0
 - package/lib/routes-deprecated/scboy/thread.js +50 -0
 - package/lib/routes-deprecated/sexinsex/index.js +101 -0
 - package/lib/routes-deprecated/shanbay/checkin.js +48 -0
 - package/lib/routes-deprecated/shanbay/footprints.js +42 -0
 - package/lib/routes-deprecated/simonsfoundation/articles.js +48 -0
 - package/lib/routes-deprecated/simpread/changelog.js +79 -0
 - package/lib/routes-deprecated/sketch/updates.js +40 -0
 - package/lib/routes-deprecated/socialbeta/home.js +42 -0
 - package/lib/routes-deprecated/socialclub/events.js +28 -0
 - package/lib/routes-deprecated/soul/hot.js +86 -0
 - package/lib/routes-deprecated/soundcloud/utils.js +47 -0
 - package/lib/routes-deprecated/technologyreview/topic.js +35 -0
 - package/lib/routes-deprecated/tencent/tucaoqq/post.js +39 -0
 - package/lib/routes-deprecated/tencent/wechat/miniprogram/devtools.js +37 -0
 - package/lib/routes-deprecated/tencent/wechat/miniprogram/framework.js +35 -0
 - package/lib/routes-deprecated/tencent/wechat/miniprogram/wxcloud.js +47 -0
 - package/lib/routes-deprecated/tianyancha/hot.js +48 -0
 - package/lib/routes-deprecated/tingdiantz/95598.js +41 -0
 - package/lib/routes-deprecated/titsguru/model.js +16 -0
 - package/lib/routes-deprecated/titsguru/util.js +68 -0
 - package/lib/routes-deprecated/totalcommander/whatsnew.js +32 -0
 - package/lib/routes-deprecated/touhougarakuta/index.js +68 -0
 - package/lib/routes-deprecated/touhougarakuta/json2html.js +113 -0
 - package/lib/routes-deprecated/tprtc/cqzr.js +80 -0
 - package/lib/routes-deprecated/tprtc/news.js +71 -0
 - package/lib/routes-deprecated/tprtc/qyzc.js +84 -0
 - package/lib/routes-deprecated/ui-cn/article.js +44 -0
 - package/lib/routes-deprecated/unit-image/films.js +141 -0
 - package/lib/routes-deprecated/universities/ahau/cs_news/utils.js +50 -0
 - package/lib/routes-deprecated/universities/ahau/jwc/utils.js +50 -0
 - package/lib/routes-deprecated/universities/ahau/main/utils.js +50 -0
 - package/lib/routes-deprecated/universities/ahmu/news.js +51 -0
 - package/lib/routes-deprecated/universities/ahut/cstzgg.js +45 -0
 - package/lib/routes-deprecated/universities/ahut/jwc.js +43 -0
 - package/lib/routes-deprecated/universities/ahut/news.js +44 -0
 - package/lib/routes-deprecated/universities/bupt/funbox.js +40 -0
 - package/lib/routes-deprecated/universities/bupt/grs.js +64 -0
 - package/lib/routes-deprecated/universities/bupt/news.js +34 -0
 - package/lib/routes-deprecated/universities/bupt/portal.js +34 -0
 - package/lib/routes-deprecated/universities/bupt/utils.js +67 -0
 - package/lib/routes-deprecated/universities/bupt/yz.js +154 -0
 - package/lib/routes-deprecated/universities/bwu/utils.js +50 -0
 - package/lib/routes-deprecated/universities/cpu/home.js +52 -0
 - package/lib/routes-deprecated/universities/cpu/jwc.js +52 -0
 - package/lib/routes-deprecated/universities/cpu/yjsy.js +52 -0
 - package/lib/routes-deprecated/universities/cqu/jwc/announcement.js +53 -0
 - package/lib/routes-deprecated/universities/cqu/net/info.js +60 -0
 - package/lib/routes-deprecated/universities/cqu/news/tz.js +71 -0
 - package/lib/routes-deprecated/universities/cqu/news/utils.js +48 -0
 - package/lib/routes-deprecated/universities/cqu/sci/info.js +62 -0
 - package/lib/routes-deprecated/universities/cqu/youth/info.js +65 -0
 - package/lib/routes-deprecated/universities/cug/gcxy/index.js +114 -0
 - package/lib/routes-deprecated/universities/cug/news.js +63 -0
 - package/lib/routes-deprecated/universities/cuit/cxxww.js +63 -0
 - package/lib/routes-deprecated/universities/dlmu/news.js +42 -0
 - package/lib/routes-deprecated/universities/dlu/jiaowu/news.js +36 -0
 - package/lib/routes-deprecated/universities/fudan/cce.js +52 -0
 - package/lib/routes-deprecated/universities/gdou/jwc/utils.js +72 -0
 - package/lib/routes-deprecated/universities/gzmtu/jwc/utils.js +86 -0
 - package/lib/routes-deprecated/universities/gzmtu/tsg/utils.js +86 -0
 - package/lib/routes-deprecated/universities/hhu/lib-news.js +57 -0
 - package/lib/routes-deprecated/universities/hhu/lib-newsc.js +75 -0
 - package/lib/routes-deprecated/universities/hnust/graduate/index.js +40 -0
 - package/lib/routes-deprecated/universities/jnu/yw/index.js +81 -0
 - package/lib/routes-deprecated/universities/kmust/job/careers.js +33 -0
 - package/lib/routes-deprecated/universities/kmust/job/jobfairs.js +32 -0
 - package/lib/routes-deprecated/universities/kmust/jwc.js +44 -0
 - package/lib/routes-deprecated/universities/lit/jwc.js +50 -0
 - package/lib/routes-deprecated/universities/lit/tw.js +56 -0
 - package/lib/routes-deprecated/universities/lit/xwzx.js +73 -0
 - package/lib/routes-deprecated/universities/lntu/jwnews.js +46 -0
 - package/lib/routes-deprecated/universities/lyu/news/utils.js +42 -0
 - package/lib/routes-deprecated/universities/mit/graduateadmissions.js +63 -0
 - package/lib/routes-deprecated/universities/nciae/news.js +58 -0
 - package/lib/routes-deprecated/universities/nciae/tzgg.js +58 -0
 - package/lib/routes-deprecated/universities/nciae/xsxx.js +58 -0
 - package/lib/routes-deprecated/universities/njfu/jwc.js +47 -0
 - package/lib/routes-deprecated/universities/njtech/jwc.js +54 -0
 - package/lib/routes-deprecated/universities/nuc/index.js +91 -0
 - package/lib/routes-deprecated/universities/nudt/yjszs.js +60 -0
 - package/lib/routes-deprecated/universities/shanghaitech/activity.js +34 -0
 - package/lib/routes-deprecated/universities/shanghaitech/sist/activity.js +51 -0
 - package/lib/routes-deprecated/universities/shou/www.js +64 -0
 - package/lib/routes-deprecated/universities/slu/utils.js +74 -0
 - package/lib/routes-deprecated/universities/swufe/seie/index.js +71 -0
 - package/lib/routes-deprecated/universities/swust/cs.js +77 -0
 - package/lib/routes-deprecated/universities/swust/helper.js +47 -0
 - package/lib/routes-deprecated/universities/swust/jwc-news.js +45 -0
 - package/lib/routes-deprecated/universities/swust/jwc-notice.js +51 -0
 - package/lib/routes-deprecated/universities/thu/index.js +102 -0
 - package/lib/routes-deprecated/universities/usst/jwc.js +62 -0
 - package/lib/routes-deprecated/universities/utdallas/isso.js +54 -0
 - package/lib/routes-deprecated/universities/ynnu/edu/base64.js +354 -0
 - package/lib/routes-deprecated/universities/ynnu/edu/news.js +109 -0
 - package/lib/routes-deprecated/universities/ynu/utils.js +64 -0
 - package/lib/routes-deprecated/universities/yzu/home.js +83 -0
 - package/lib/routes-deprecated/universities/yzu/yjszs.js +81 -0
 - package/lib/routes-deprecated/universities/zjgsu/tzgg/utils.js +54 -0
 - package/lib/routes-deprecated/universities/zjut/design.js +59 -0
 - package/lib/routes-deprecated/universities/zjut/index.js +59 -0
 - package/lib/routes-deprecated/universities/zucc/cssearch/index.js +47 -0
 - package/lib/routes-deprecated/universities/zucc/news/index.js +66 -0
 - package/lib/routes-deprecated/universities/zzu/news.js +80 -0
 - package/lib/routes-deprecated/universities/zzu/soft/news.js +68 -0
 - package/lib/routes-deprecated/us/supremecourt/argument-audio.js +61 -0
 - package/lib/routes-deprecated/uwants/index.js +70 -0
 - package/lib/routes-deprecated/voa/index.js +54 -0
 - package/lib/routes-deprecated/vol/lastupdate.js +51 -0
 - package/lib/routes-deprecated/vulture/utils.js +113 -0
 - package/lib/routes-deprecated/watchface/update.js +42 -0
 - package/lib/routes-deprecated/webtoons/comic.js +54 -0
 - package/lib/routes-deprecated/webtoons/naver.js +50 -0
 - package/lib/routes-deprecated/weexcn/index.js +69 -0
 - package/lib/routes-deprecated/wegene/column.js +25 -0
 - package/lib/routes-deprecated/weidian/goods.js +37 -0
 - package/lib/routes-deprecated/whb/zhuzhan.js +76 -0
 - package/lib/routes-deprecated/wto/dispute-settlement.js +37 -0
 - package/lib/routes-deprecated/xiachufang/utils.js +95 -0
 - package/lib/routes-deprecated/xuangubao/subject.js +42 -0
 - package/lib/routes-deprecated/xuetangx/course-list.js +54 -0
 - package/lib/routes-deprecated/xyplorer/whatsnew.js +32 -0
 - package/lib/routes-deprecated/yinxiang/card.js +41 -0
 - package/lib/routes-deprecated/yinxiang/category.js +42 -0
 - package/lib/routes-deprecated/yinxiang/note.js +37 -0
 - package/lib/routes-deprecated/yinxiang/personal.js +43 -0
 - package/lib/routes-deprecated/yinxiang/tag.js +42 -0
 - package/lib/routes-deprecated/youdao/latest.js +47 -0
 - package/lib/routes-deprecated/youdao/xueba.js +64 -0
 - package/lib/routes-deprecated/yuzu-emu/entry.js +52 -0
 - package/lib/routes-deprecated/zhishifenzi/depth.js +54 -0
 - package/lib/routes-deprecated/zhishifenzi/innovation.js +61 -0
 - package/lib/routes-deprecated/zhishifenzi/news.js +66 -0
 - package/lib/routes-deprecated/zhuixinfan/list.js +51 -0
 - package/lib/routes-deprecated/zimuku/index.js +41 -0
 - package/lib/routes-deprecated/zreading/home.js +50 -0
 - package/lib/routes-deprecated/zsnews/index.js +31 -0
 - package/lib/routes.test.ts +78 -0
 - package/lib/setup.test.ts +249 -0
 - package/lib/types.ts +263 -0
 - package/lib/utils/cache/base.ts +17 -0
 - package/lib/utils/cache/index.ts +91 -0
 - package/lib/utils/cache/memory.ts +42 -0
 - package/lib/utils/cache/redis.ts +75 -0
 - package/lib/utils/cache.test.ts +91 -0
 - package/lib/utils/common-config.test.ts +78 -0
 - package/lib/utils/common-config.ts +75 -0
 - package/lib/utils/common-utils.test.ts +41 -0
 - package/lib/utils/common-utils.ts +45 -0
 - package/lib/utils/debug-info.ts +24 -0
 - package/lib/utils/git-hash.ts +14 -0
 - package/lib/utils/got-deprecated.ts +79 -0
 - package/lib/utils/got.test.ts +77 -0
 - package/lib/utils/got.ts +86 -0
 - package/lib/utils/helpers.test.ts +8 -0
 - package/lib/utils/helpers.ts +32 -0
 - package/lib/utils/logger.ts +46 -0
 - package/lib/utils/md5.test.ts +8 -0
 - package/lib/utils/md5.ts +5 -0
 - package/lib/utils/ofetch.test.ts +51 -0
 - package/lib/utils/ofetch.ts +17 -0
 - package/lib/utils/parse-date.test.ts +163 -0
 - package/lib/utils/parse-date.ts +207 -0
 - package/lib/utils/proxy/index.ts +56 -0
 - package/lib/utils/proxy/pac-proxy.test.ts +80 -0
 - package/lib/utils/proxy/pac-proxy.ts +72 -0
 - package/lib/utils/proxy/unify-proxy.test.ts +141 -0
 - package/lib/utils/proxy/unify-proxy.ts +113 -0
 - package/lib/utils/puppeteer-utils.test.ts +101 -0
 - package/lib/utils/puppeteer-utils.ts +58 -0
 - package/lib/utils/puppeteer.test.ts +144 -0
 - package/lib/utils/puppeteer.ts +64 -0
 - package/lib/utils/rand-user-agent.test.ts +37 -0
 - package/lib/utils/rand-user-agent.ts +30 -0
 - package/lib/utils/readable-social.ts +42 -0
 - package/lib/utils/render.ts +5 -0
 - package/lib/utils/request-rewriter/fetch.ts +62 -0
 - package/lib/utils/request-rewriter/get.ts +77 -0
 - package/lib/utils/request-rewriter/index.ts +19 -0
 - package/lib/utils/request-rewriter.test.ts +151 -0
 - package/lib/utils/rss-parser.test.ts +9 -0
 - package/lib/utils/rss-parser.ts +13 -0
 - package/lib/utils/timezone.test.ts +9 -0
 - package/lib/utils/timezone.ts +14 -0
 - package/lib/utils/valid-host.test.ts +21 -0
 - package/lib/utils/valid-host.ts +14 -0
 - package/lib/utils/wait.test.ts +14 -0
 - package/lib/utils/wait.ts +7 -0
 - package/lib/utils/wechat-mp.test.ts +503 -0
 - package/lib/utils/wechat-mp.ts +645 -0
 - package/lib/views/atom.tsx +49 -0
 - package/lib/views/error.tsx +144 -0
 - package/lib/views/index.tsx +206 -0
 - package/lib/views/json.ts +48 -0
 - package/lib/views/layout.tsx +50 -0
 - package/lib/views/rss.tsx +55 -0
 - package/lib/views/rss3.ts +62 -0
 - package/package.json +152 -158
 - package/lib/api_router.js +0 -26
 - package/lib/app.js +0 -92
 - package/lib/config.js +0 -310
 - package/lib/core_router.js +0 -17
 - package/lib/errors/RequestInProgress.js +0 -3
 - package/lib/errors/index.js +0 -3
 - package/lib/index.js +0 -35
 - package/lib/maintainer.js +0 -52
 - package/lib/middleware/access-control.js +0 -55
 - package/lib/middleware/anti-hotlink.js +0 -148
 - package/lib/middleware/api-response-handler.js +0 -147
 - package/lib/middleware/api-template.js +0 -9
 - package/lib/middleware/cache/index.js +0 -138
 - package/lib/middleware/cache/memory.js +0 -36
 - package/lib/middleware/cache/redis.js +0 -68
 - package/lib/middleware/debug.js +0 -25
 - package/lib/middleware/header.js +0 -45
 - package/lib/middleware/load-on-demand.js +0 -36
 - package/lib/middleware/onerror.js +0 -113
 - package/lib/middleware/parameter.js +0 -323
 - package/lib/middleware/template.js +0 -113
 - package/lib/middleware/utf8.js +0 -6
 - package/lib/pkg.js +0 -39
 - package/lib/protected_router.js +0 -11
 - package/lib/radar-rules.js +0 -1290
 - package/lib/radar.js +0 -82
 - package/lib/routes/005tv/zx.js +0 -24
 - package/lib/routes/10000link/news.js +0 -59
 - package/lib/routes/12379/index.js +0 -23
 - package/lib/routes/141jav/141jav.js +0 -37
 - package/lib/routes/141ppv/141ppv.js +0 -37
 - package/lib/routes/199it/category.js +0 -10
 - package/lib/routes/199it/tag.js +0 -10
 - package/lib/routes/199it/utils.js +0 -44
 - package/lib/routes/1draw/index.js +0 -44
 - package/lib/routes/1x/index.js +0 -69
 - package/lib/routes/21caijing/channel.js +0 -75
 - package/lib/routes/3dm/game.js +0 -42
 - package/lib/routes/3dm/news_center.js +0 -54
 - package/lib/routes/3ycy/home.js +0 -58
 - package/lib/routes/4gamers/category.js +0 -20
 - package/lib/routes/4gamers/tag.js +0 -20
 - package/lib/routes/4gamers/topic.js +0 -20
 - package/lib/routes/51voa/channel.js +0 -158
 - package/lib/routes/60s-science/transcript.js +0 -60
 - package/lib/routes/755/user.js +0 -71
 - package/lib/routes/8btc/author.js +0 -49
 - package/lib/routes/8btc/news/flash.js +0 -41
 - package/lib/routes/91ddcc/stage.js +0 -48
 - package/lib/routes/91ddcc/user.js +0 -45
 - package/lib/routes/93/index.js +0 -50
 - package/lib/routes/99percentinvisible/transcript.js +0 -46
 - package/lib/routes/a9vg/a9vg.js +0 -36
 - package/lib/routes/abc/documentId.js +0 -7272
 - package/lib/routes/abc/id.js +0 -7272
 - package/lib/routes/abc/index.js +0 -74
 - package/lib/routes/acm/amturingaward.js +0 -68
 - package/lib/routes/acwifi/index.js +0 -48
 - package/lib/routes/adquan/index.js +0 -72
 - package/lib/routes/aeon/category.js +0 -70
 - package/lib/routes/afdian/dynamic.js +0 -36
 - package/lib/routes/afdian/explore.js +0 -57
 - package/lib/routes/aisixiang/column.js +0 -37
 - package/lib/routes/aisixiang/ranking.js +0 -37
 - package/lib/routes/aisixiang/thinktank.js +0 -40
 - package/lib/routes/aisixiang/utils.js +0 -39
 - package/lib/routes/aiyanxishe/home.js +0 -130
 - package/lib/routes/aliyun-kernel/index.js +0 -60
 - package/lib/routes/allnow/column.js +0 -7
 - package/lib/routes/allnow/index.js +0 -5
 - package/lib/routes/allnow/tag.js +0 -7
 - package/lib/routes/allnow/user.js +0 -7
 - package/lib/routes/allnow/utils.js +0 -67
 - package/lib/routes/alter-cn/news.js +0 -44
 - package/lib/routes/amazfitwatchfaces/search.js +0 -7
 - package/lib/routes/amazon/ku.js +0 -57
 - package/lib/routes/amd/graphicsdrivers.js +0 -114
 - package/lib/routes/andyt/index.js +0 -36
 - package/lib/routes/anigamer/anime.js +0 -14
 - package/lib/routes/anigamer/new_anime.js +0 -22
 - package/lib/routes/animen/news.js +0 -84
 - package/lib/routes/anitama/channel.js +0 -64
 - package/lib/routes/anki/changes.js +0 -39
 - package/lib/routes/aom/journal.js +0 -107
 - package/lib/routes/aozora/newbook.js +0 -93
 - package/lib/routes/appsales/index.js +0 -66
 - package/lib/routes/aptonic/action.js +0 -38
 - package/lib/routes/archdaily/home.js +0 -47
 - package/lib/routes/asahi/area.js +0 -57
 - package/lib/routes/asahi/index.js +0 -94
 - package/lib/routes/atfd/index.js +0 -46
 - package/lib/routes/autotrader/index.js +0 -69
 - package/lib/routes/avgle/videos.js +0 -46
 - package/lib/routes/axis-studios/work.js +0 -82
 - package/lib/routes/babehub/index.js +0 -30
 - package/lib/routes/babehub/search.js +0 -15
 - package/lib/routes/babehub/utils.js +0 -71
 - package/lib/routes/babykingdom/index.js +0 -46
 - package/lib/routes/bahamut/creation_index.js +0 -73
 - package/lib/routes/bahamut/utils.js +0 -65
 - package/lib/routes/baidu/daily.js +0 -55
 - package/lib/routes/baidu/doodles.js +0 -27
 - package/lib/routes/bandisoft/index.js +0 -42
 - package/lib/routes/banyuetan/index.js +0 -56
 - package/lib/routes/bbc/index.js +0 -92
 - package/lib/routes/bbc/utils.js +0 -37
 - package/lib/routes/bell-labs/events-news.js +0 -70
 - package/lib/routes/benedictevans/recent.js +0 -41
 - package/lib/routes/bibgame/category.js +0 -56
 - package/lib/routes/bihu/activaties.js +0 -76
 - package/lib/routes/bing/index.js +0 -26
 - package/lib/routes/biobio/index.js +0 -40
 - package/lib/routes/biobio/others.js +0 -45
 - package/lib/routes/bioon/latest.js +0 -51
 - package/lib/routes/bishijie/kuaixun.js +0 -21
 - package/lib/routes/bjnews/epaper.js +0 -80
 - package/lib/routes/bjnews/news.js +0 -43
 - package/lib/routes/blizzard/news.js +0 -51
 - package/lib/routes/blogread/newest.js +0 -30
 - package/lib/routes/blogs/diygod/animal-crossing.js +0 -39
 - package/lib/routes/blogs/diygod/gk.js +0 -33
 - package/lib/routes/blogs/hedwig.js +0 -42
 - package/lib/routes/blogs/jianning.js +0 -45
 - package/lib/routes/blogs/paulgraham.js +0 -46
 - package/lib/routes/blogs/wangyin.js +0 -50
 - package/lib/routes/blogs/wordpress.js +0 -50
 - package/lib/routes/blow-studio/work.js +0 -71
 - package/lib/routes/blur-studio/index.js +0 -81
 - package/lib/routes/boc/whpj.js +0 -99
 - package/lib/routes/bof/home.js +0 -42
 - package/lib/routes/bookscomtw/newbooks.js +0 -37
 - package/lib/routes/booksource/index.js +0 -22
 - package/lib/routes/booth-pm/shop.js +0 -60
 - package/lib/routes/boston/index.js +0 -73
 - package/lib/routes/buaq/index.js +0 -31
 - package/lib/routes/caus/index.js +0 -87
 - package/lib/routes/cbc/topics.js +0 -71
 - package/lib/routes/ccg/index.js +0 -49
 - package/lib/routes/cell/cell/index.js +0 -113
 - package/lib/routes/cell/cover.js +0 -106
 - package/lib/routes/cfan/news.js +0 -49
 - package/lib/routes/cfd/gbp_div.js +0 -28
 - package/lib/routes/cgtn/most.js +0 -48
 - package/lib/routes/cgtn/opinions.js +0 -50
 - package/lib/routes/cgtn/pick.js +0 -45
 - package/lib/routes/cgtn/top.js +0 -45
 - package/lib/routes/changku/index.js +0 -39
 - package/lib/routes/chaoli/index.js +0 -50
 - package/lib/routes/checkee/index.js +0 -56
 - package/lib/routes/chicagotribune/index.js +0 -77
 - package/lib/routes/chinadialogue/column.js +0 -58
 - package/lib/routes/chinadialogue/topics.js +0 -55
 - package/lib/routes/chinalaborwatch/reports.js +0 -53
 - package/lib/routes/chinatimes/index.js +0 -115
 - package/lib/routes/chiphell/forum.js +0 -67
 - package/lib/routes/chocolatey/software.js +0 -55
 - package/lib/routes/chouti/top.js +0 -28
 - package/lib/routes/chrome/extensions.js +0 -30
 - package/lib/routes/chsi/zszcgd.js +0 -51
 - package/lib/routes/chuiniu/column.js +0 -89
 - package/lib/routes/chuiniu/column_list.js +0 -36
 - package/lib/routes/citavi/index.js +0 -52
 - package/lib/routes/ciweimao/chapter.js +0 -34
 - package/lib/routes/cktest/app.js +0 -34
 - package/lib/routes/cktest/policy.js +0 -43
 - package/lib/routes/cmes/news.js +0 -64
 - package/lib/routes/cna/index.js +0 -54
 - package/lib/routes/cneb/guoneinews.js +0 -27
 - package/lib/routes/cneb/yjxx.js +0 -36
 - package/lib/routes/cnu/discovery.js +0 -59
 - package/lib/routes/cnu/selected.js +0 -52
 - package/lib/routes/cnu/utils.js +0 -28
 - package/lib/routes/codeceo/category.js +0 -51
 - package/lib/routes/codeceo/home.js +0 -49
 - package/lib/routes/commonapp/blog.js +0 -42
 - package/lib/routes/coronavirus/caixin.js +0 -34
 - package/lib/routes/coronavirus/dxy-data.js +0 -86
 - package/lib/routes/coronavirus/dxy.js +0 -27
 - package/lib/routes/coronavirus/mogov-2019ncov.js +0 -49
 - package/lib/routes/coronavirus/nhc.js +0 -30
 - package/lib/routes/coronavirus/scmp.js +0 -32
 - package/lib/routes/coronavirus/sg-moh.js +0 -40
 - package/lib/routes/coronavirus/yahoo-japan.js +0 -77
 - package/lib/routes/cpta/notice.js +0 -41
 - package/lib/routes/cpython/index.js +0 -32
 - package/lib/routes/craigslist/search.js +0 -51
 - package/lib/routes/cria/news.js +0 -57
 - package/lib/routes/cs/news.js +0 -69
 - package/lib/routes/csc/notice.js +0 -99
 - package/lib/routes/curiouscat/user.js +0 -40
 - package/lib/routes/curseforge/files.js +0 -36
 - package/lib/routes/curseforge/generalfiles.js +0 -42
 - package/lib/routes/cve/search.js +0 -26
 - package/lib/routes/cyzone/author.js +0 -55
 - package/lib/routes/cyzone/label.js +0 -53
 - package/lib/routes/d1bz/novel.js +0 -72
 - package/lib/routes/d2/daily.js +0 -49
 - package/lib/routes/damai/activity.js +0 -28
 - package/lib/routes/daxiaamu/home.js +0 -45
 - package/lib/routes/dayone/blog.js +0 -56
 - package/lib/routes/ddrk/index.js +0 -32
 - package/lib/routes/ddrk/list.js +0 -37
 - package/lib/routes/deepl/blog.js +0 -34
 - package/lib/routes/deeplearningai/thebatch.js +0 -29
 - package/lib/routes/dengekionline/new.js +0 -133
 - package/lib/routes/dev.to/top.js +0 -40
 - package/lib/routes/dgtle/index.js +0 -57
 - package/lib/routes/dgtle/keyword.js +0 -29
 - package/lib/routes/dgtle/trade.js +0 -42
 - package/lib/routes/dhl/shipment-tracking.js +0 -56
 - package/lib/routes/dianping/user.js +0 -98
 - package/lib/routes/dida365/habit-checkins.js +0 -83
 - package/lib/routes/digic-pictures/index.js +0 -72
 - package/lib/routes/digitaling/article.js +0 -71
 - package/lib/routes/digitaling/index.js +0 -42
 - package/lib/routes/digitaling/project.js +0 -55
 - package/lib/routes/dilbert/strip.js +0 -54
 - package/lib/routes/dilidili/fanju.js +0 -78
 - package/lib/routes/discuss/index.js +0 -71
 - package/lib/routes/discuz/discuz.js +0 -148
 - package/lib/routes/disqus/posts.js +0 -53
 - package/lib/routes/dockone/weekly.js +0 -60
 - package/lib/routes/donews/index.js +0 -59
 - package/lib/routes/donews/utils.js +0 -19
 - package/lib/routes/dongmanmanhua/comic.js +0 -45
 - package/lib/routes/dribbble/keyword.js +0 -10
 - package/lib/routes/dribbble/popular.js +0 -10
 - package/lib/routes/dribbble/user.js +0 -10
 - package/lib/routes/dribbble/utils.js +0 -94
 - package/lib/routes/dsb/area.js +0 -33
 - package/lib/routes/duozhi/index.js +0 -48
 - package/lib/routes/duozhuayu/search.js +0 -76
 - package/lib/routes/dxy/vaccine.js +0 -109
 - package/lib/routes/dysfz/index.js +0 -20
 - package/lib/routes/edge/addon.js +0 -32
 - package/lib/routes/edrawsoft/mindmap.js +0 -99
 - package/lib/routes/eeo/index.js +0 -83
 - package/lib/routes/egsea/flash.js +0 -40
 - package/lib/routes/eleme/open/announce.js +0 -35
 - package/lib/routes/eleme/open-be/announce.js +0 -21
 - package/lib/routes/elife/index.js +0 -67
 - package/lib/routes/elitebabes/index.js +0 -30
 - package/lib/routes/elitebabes/search.js +0 -15
 - package/lib/routes/elitebabes/utils.js +0 -88
 - package/lib/routes/elitebabes/videos.js +0 -26
 - package/lib/routes/emi-nitta/home.js +0 -74
 - package/lib/routes/enclavebooks/category.js +0 -77
 - package/lib/routes/enclavebooks/collection.js +0 -44
 - package/lib/routes/enclavebooks/user.js +0 -44
 - package/lib/routes/engadget/home.js +0 -67
 - package/lib/routes/esquirehk/tag.js +0 -71
 - package/lib/routes/etherscan/transactions.js +0 -37
 - package/lib/routes/everything/changes.js +0 -33
 - package/lib/routes/facebook/page.js +0 -128
 - package/lib/routes/fanbox/conv.js +0 -227
 - package/lib/routes/fanbox/header.js +0 -13
 - package/lib/routes/fanbox/main.js +0 -45
 - package/lib/routes/fanfou/favorites.js +0 -36
 - package/lib/routes/fanfou/home_timeline.js +0 -32
 - package/lib/routes/fanfou/public_timeline.js +0 -34
 - package/lib/routes/fanfou/user_timeline.js +0 -35
 - package/lib/routes/fanfou/utils.js +0 -40
 - package/lib/routes/fanxinzhui/latest.js +0 -52
 - package/lib/routes/fashionnetwork/headline.js +0 -56
 - package/lib/routes/fashionnetwork/news.js +0 -74
 - package/lib/routes/fdroid/apprelease.js +0 -33
 - package/lib/routes/feed-the-beast/modpack.js +0 -31
 - package/lib/routes/feixuew/index.js +0 -63
 - package/lib/routes/fir/update.js +0 -31
 - package/lib/routes/firefox/addons.js +0 -33
 - package/lib/routes/firefox/release.js +0 -30
 - package/lib/routes/fitchratings/site.js +0 -33
 - package/lib/routes/fjnews/fznews.js +0 -55
 - package/lib/routes/fjnews/jjnews.js +0 -43
 - package/lib/routes/fontstory/tw.js +0 -48
 - package/lib/routes/fulinian/index.js +0 -50
 - package/lib/routes/furaffinity/home.js +0 -59
 - package/lib/routes/furaffinity/status.js +0 -39
 - package/lib/routes/furaffinity/user.js +0 -96
 - package/lib/routes/futunn/highlights.js +0 -58
 - package/lib/routes/fx678/kx.js +0 -44
 - package/lib/routes/gab/explore.js +0 -31
 - package/lib/routes/galaxylab/index.js +0 -35
 - package/lib/routes/galgame/hhgal.js +0 -70
 - package/lib/routes/galgame/sayhuahuo.js +0 -22
 - package/lib/routes/galgame/zdfx.js +0 -30
 - package/lib/routes/gamegrape/index.js +0 -73
 - package/lib/routes/gamersky/ent.js +0 -89
 - package/lib/routes/gaoqing/utils.js +0 -57
 - package/lib/routes/gaoqingla/latest.js +0 -37
 - package/lib/routes/gbcc/trust.js +0 -28
 - package/lib/routes/geektime/news.js +0 -54
 - package/lib/routes/getitfree/category.js +0 -59
 - package/lib/routes/getitfree/search.js +0 -25
 - package/lib/routes/getitfree/utils.js +0 -47
 - package/lib/routes/girlimg/album.js +0 -57
 - package/lib/routes/gitchat/newest.js +0 -23
 - package/lib/routes/gitea/blog.js +0 -70
 - package/lib/routes/gitlab/explore.js +0 -43
 - package/lib/routes/gitlab/release.js +0 -35
 - package/lib/routes/gitlab/tag.js +0 -35
 - package/lib/routes/go.jp/mofa/main.js +0 -95
 - package/lib/routes/gocomics/index.js +0 -64
 - package/lib/routes/gov/beijing/eea.js +0 -92
 - package/lib/routes/gov/beijing/mhc.js +0 -68
 - package/lib/routes/gov/chinatax/latest.js +0 -42
 - package/lib/routes/gov/chongqing/ljxq/zwgk.js +0 -67
 - package/lib/routes/gov/city/nanjing/getContent.js +0 -69
 - package/lib/routes/gov/city/nanjing/index.js +0 -32
 - package/lib/routes/gov/cnca/hydt.js +0 -54
 - package/lib/routes/gov/cnca/jgdt.js +0 -54
 - package/lib/routes/gov/cnca/zxtz.js +0 -63
 - package/lib/routes/gov/cppcc/index.js +0 -48
 - package/lib/routes/gov/guangdong/edu.js +0 -83
 - package/lib/routes/gov/guangdong/eea.js +0 -59
 - package/lib/routes/gov/harbin/kjj.js +0 -39
 - package/lib/routes/gov/hubei/hbsia.js +0 -101
 - package/lib/routes/gov/hunan/notice.js +0 -80
 - package/lib/routes/gov/moa/moa.js +0 -164
 - package/lib/routes/gov/moa/sjzxfb.js +0 -20
 - package/lib/routes/gov/mohrss/sbjm.js +0 -59
 - package/lib/routes/gov/mohurd/policy.js +0 -39
 - package/lib/routes/gov/ndrc/xwdt.js +0 -54
 - package/lib/routes/gov/ngd/index.js +0 -51
 - package/lib/routes/gov/nppa/channels.js +0 -57
 - package/lib/routes/gov/nppa/contents.js +0 -37
 - package/lib/routes/gov/province/jiangsu/getContent.js +0 -77
 - package/lib/routes/gov/province/jiangsu/index.js +0 -66
 - package/lib/routes/gov/sapprft/7026.js +0 -97
 - package/lib/routes/gov/shanghai/sthj.js +0 -26
 - package/lib/routes/gov/suzhou/doc.js +0 -39
 - package/lib/routes/gov/suzhou/news.js +0 -142
 - package/lib/routes/gov/suzhou/utils.js +0 -20
 - package/lib/routes/gov/taiwan/mnd.js +0 -63
 - package/lib/routes/gov/veterans/china.js +0 -76
 - package/lib/routes/gov/veterans/hebei.js +0 -73
 - package/lib/routes/gov/wuhan/kjj.js +0 -63
 - package/lib/routes/gov/wuhan/wehdz.js +0 -63
 - package/lib/routes/gov/xinwen/tujie.js +0 -75
 - package/lib/routes/gracg/user.js +0 -65
 - package/lib/routes/gradcafe/result.js +0 -37
 - package/lib/routes/growincity/news.js +0 -49
 - package/lib/routes/grubstreet/index.js +0 -9
 - package/lib/routes/grubstreet/utils.js +0 -78
 - package/lib/routes/guanggoo/index.js +0 -81
 - package/lib/routes/guardian/guardian.js +0 -45
 - package/lib/routes/guat/news.js +0 -68
 - package/lib/routes/guet/news.js +0 -95
 - package/lib/routes/guiltfree/onsale.js +0 -48
 - package/lib/routes/gvm/index.js +0 -94
 - package/lib/routes/gwern/category.js +0 -58
 - package/lib/routes/hackerone/hacktivity.js +0 -47
 - package/lib/routes/hackerone/search.js +0 -48
 - package/lib/routes/haimaoba/comics.js +0 -57
 - package/lib/routes/haohaozhu/discover.js +0 -42
 - package/lib/routes/haohaozhu/whole-house.js +0 -75
 - package/lib/routes/hdx/explore.js +0 -57
 - package/lib/routes/hentai-cosplays/hentai-cosplays.js +0 -11
 - package/lib/routes/hentai-cosplays/utils.js +0 -52
 - package/lib/routes/hexo/fluid.js +0 -49
 - package/lib/routes/hexo/next.js +0 -49
 - package/lib/routes/hexo/yilia.js +0 -34
 - package/lib/routes/hinatazaka46/blog.js +0 -38
 - package/lib/routes/hinatazaka46/news.js +0 -34
 - package/lib/routes/hkcd/pdf.js +0 -30
 - package/lib/routes/hkcnews/news.js +0 -63
 - package/lib/routes/hkej/index.js +0 -138
 - package/lib/routes/hkgolden/index.js +0 -110
 - package/lib/routes/hopper/index.js +0 -82
 - package/lib/routes/hpoi/index.js +0 -47
 - package/lib/routes/hpoi/info.js +0 -51
 - package/lib/routes/hpoi/user.js +0 -37
 - package/lib/routes/huawei/xinsheng/index.js +0 -61
 - package/lib/routes/hugo/releases.js +0 -53
 - package/lib/routes/huya/live.js +0 -33
 - package/lib/routes/icable/category.js +0 -64
 - package/lib/routes/icourse163/newest.js +0 -77
 - package/lib/routes/idaily/index.js +0 -21
 - package/lib/routes/idownloadblog/index.js +0 -51
 - package/lib/routes/iea/index.js +0 -53
 - package/lib/routes/ifanr/index.js +0 -75
 - package/lib/routes/ifnews/column.js +0 -75
 - package/lib/routes/iie/blog.js +0 -47
 - package/lib/routes/im2maker/index.js +0 -60
 - package/lib/routes/imaijia/category.js +0 -63
 - package/lib/routes/imuseum/index.js +0 -49
 - package/lib/routes/index.js +0 -112
 - package/lib/routes/indienova/article.js +0 -53
 - package/lib/routes/infzm/news.js +0 -62
 - package/lib/routes/instapaper/person.js +0 -28
 - package/lib/routes/iplay/utils.js +0 -57
 - package/lib/routes/ipsw/index.js +0 -112
 - package/lib/routes/itjuzi/invest.js +0 -32
 - package/lib/routes/itjuzi/merge.js +0 -32
 - package/lib/routes/itslide/new.js +0 -40
 - package/lib/routes/iyiou/index.js +0 -41
 - package/lib/routes/iyouport/index.js +0 -35
 - package/lib/routes/iyouport/utils.js +0 -22
 - package/lib/routes/japanpost/track.js +0 -111
 - package/lib/routes/japanpost/utils.js +0 -94
 - package/lib/routes/jdlingyu/index.js +0 -45
 - package/lib/routes/jianshu/collection.js +0 -29
 - package/lib/routes/jianshu/home.js +0 -27
 - package/lib/routes/jianshu/trending.js +0 -28
 - package/lib/routes/jianshu/user.js +0 -29
 - package/lib/routes/jianshu/utils.js +0 -66
 - package/lib/routes/jiazhen108/index.js +0 -47
 - package/lib/routes/jijitang/article.js +0 -19
 - package/lib/routes/jijitang/publication.js +0 -18
 - package/lib/routes/jingdong/zhongchou.js +0 -78
 - package/lib/routes/jinritoutiao/keyword.js +0 -27
 - package/lib/routes/jinse/catalogue.js +0 -20
 - package/lib/routes/jinse/lives.js +0 -20
 - package/lib/routes/jinse/timeline.js +0 -21
 - package/lib/routes/jpmorganchase/research.js +0 -52
 - package/lib/routes/jskou/index.js +0 -21
 - package/lib/routes/juesheng/index.js +0 -49
 - package/lib/routes/justrun/index.js +0 -44
 - package/lib/routes/jx3/news.js +0 -58
 - package/lib/routes/kaggle/competitions.js +0 -51
 - package/lib/routes/kaggle/discussion.js +0 -72
 - package/lib/routes/kaggle/user.js +0 -19
 - package/lib/routes/kaiyan/index.js +0 -53
 - package/lib/routes/kaopunews/index.js +0 -28
 - package/lib/routes/kirara/news.js +0 -30
 - package/lib/routes/kkj/news.js +0 -52
 - package/lib/routes/konami/pesmobile.js +0 -31
 - package/lib/routes/kongfz/shop.js +0 -58
 - package/lib/routes/kpmg/insights.js +0 -79
 - package/lib/routes/krankenkassen/index.js +0 -54
 - package/lib/routes/ku/index.js +0 -31
 - package/lib/routes/kuai/id.js +0 -38
 - package/lib/routes/kuai/index.js +0 -38
 - package/lib/routes/kzfeed/topic.js +0 -122
 - package/lib/routes/laosiji/feed.js +0 -23
 - package/lib/routes/laosiji/hotshow.js +0 -32
 - package/lib/routes/lastfm/loved.js +0 -27
 - package/lib/routes/lastfm/recent.js +0 -27
 - package/lib/routes/lastfm/top.js +0 -27
 - package/lib/routes/law/dh.js +0 -39
 - package/lib/routes/law/gf.js +0 -41
 - package/lib/routes/law/hq.js +0 -39
 - package/lib/routes/law/hw.js +0 -39
 - package/lib/routes/law/jctd.js +0 -41
 - package/lib/routes/law/jh.js +0 -41
 - package/lib/routes/law/jtc.js +0 -41
 - package/lib/routes/law/ts.js +0 -41
 - package/lib/routes/law/zl.js +0 -40
 - package/lib/routes/leboncoin/ad.js +0 -136
 - package/lib/routes/leetcode/check-cn.js +0 -98
 - package/lib/routes/leetcode/check-us.js +0 -32
 - package/lib/routes/leetcode/utils.js +0 -54
 - package/lib/routes/letterboxd/utils.js +0 -140
 - package/lib/routes/liequtv/room.js +0 -36
 - package/lib/routes/lifetimes/index.js +0 -99
 - package/lib/routes/lingyi/index.js +0 -64
 - package/lib/routes/linkedkeeper/index.js +0 -37
 - package/lib/routes/liquipedia/dota2_matches.js +0 -50
 - package/lib/routes/liwushuo/index.js +0 -28
 - package/lib/routes/liyuan-forums/threads.js +0 -76
 - package/lib/routes/lol/newsindex.js +0 -95
 - package/lib/routes/lolapp/article.js +0 -53
 - package/lib/routes/loveheaven/update.js +0 -45
 - package/lib/routes/lowendtalk/discussion.js +0 -43
 - package/lib/routes/lwn/alerts.js +0 -57
 - package/lib/routes/macau-bolsas/index.js +0 -47
 - package/lib/routes/macked/app.js +0 -25
 - package/lib/routes/macwk/soft.js +0 -32
 - package/lib/routes/mafengwo/note.js +0 -53
 - package/lib/routes/magireco/announcements.js +0 -26
 - package/lib/routes/magireco/event_banner.js +0 -34
 - package/lib/routes/mail/imap.js +0 -79
 - package/lib/routes/maitta/index.js +0 -29
 - package/lib/routes/makeuseof/index.js +0 -59
 - package/lib/routes/manhuadui/manhua.js +0 -36
 - package/lib/routes/manong-weekly/issues.js +0 -33
 - package/lib/routes/manxiaosi/book.js +0 -49
 - package/lib/routes/maoyan/hotComplete.js +0 -87
 - package/lib/routes/mastodon/account_id.js +0 -21
 - package/lib/routes/mastodon/acct.js +0 -18
 - package/lib/routes/mastodon/timeline_local.js +0 -22
 - package/lib/routes/mastodon/timeline_remote.js +0 -22
 - package/lib/routes/mastodon/utils.js +0 -131
 - package/lib/routes/matataki/site/posts/author.js +0 -17
 - package/lib/routes/matataki/site/posts/favorite.js +0 -42
 - package/lib/routes/matataki/site/posts/scoreranking.js +0 -15
 - package/lib/routes/matataki/site/posts/tag.js +0 -16
 - package/lib/routes/matataki/site/posts/timeranking.js +0 -15
 - package/lib/routes/matataki/site/posts/token.js +0 -18
 - package/lib/routes/matataki/utils/matataki-utils.js +0 -125
 - package/lib/routes/matters/author.js +0 -49
 - package/lib/routes/matters/latest.js +0 -69
 - package/lib/routes/matters/tags.js +0 -56
 - package/lib/routes/maxnews/dota2.js +0 -45
 - package/lib/routes/mcdonalds/news.js +0 -53
 - package/lib/routes/mediadigest/category.js +0 -130
 - package/lib/routes/meihua/article.js +0 -54
 - package/lib/routes/meihua/shots.js +0 -58
 - package/lib/routes/meituan/open/announce.js +0 -45
 - package/lib/routes/meituan/tech/home.js +0 -45
 - package/lib/routes/mercari/index.js +0 -67
 - package/lib/routes/metacritic/release.js +0 -53
 - package/lib/routes/method-studios/index.js +0 -60
 - package/lib/routes/metred/fuli.js +0 -42
 - package/lib/routes/mhw/news.js +0 -48
 - package/lib/routes/mhw/update.js +0 -66
 - package/lib/routes/mi/board.js +0 -36
 - package/lib/routes/mi/crowdfunding.js +0 -31
 - package/lib/routes/mi/golden.js +0 -22
 - package/lib/routes/mi/miui/index.js +0 -58
 - package/lib/routes/micmicidol/article.js +0 -28
 - package/lib/routes/microsoft-store/updates.js +0 -30
 - package/lib/routes/mihoyo/bh2.js +0 -43
 - package/lib/routes/mihoyo/bh3.js +0 -60
 - package/lib/routes/mind42/index.js +0 -7
 - package/lib/routes/mind42/search.js +0 -5
 - package/lib/routes/mind42/tag.js +0 -5
 - package/lib/routes/mind42/utils.js +0 -47
 - package/lib/routes/mingjian/index.js +0 -46
 - package/lib/routes/miniapp/article.js +0 -57
 - package/lib/routes/miniapp/store/newest.js +0 -36
 - package/lib/routes/miniflux/get_entries.js +0 -264
 - package/lib/routes/miniflux/get_feeds.js +0 -90
 - package/lib/routes/missevan/drama.js +0 -40
 - package/lib/routes/missevan/latest.js +0 -47
 - package/lib/routes/mitbbs/index.js +0 -54
 - package/lib/routes/mitre/publications.js +0 -27
 - package/lib/routes/mittrchina/index.js +0 -45
 - package/lib/routes/mlhang/latest.js +0 -23
 - package/lib/routes/mlog-club/projects.js +0 -33
 - package/lib/routes/mlog-club/topics.js +0 -37
 - package/lib/routes/mobdata/report.js +0 -30
 - package/lib/routes/modian/zhongchou.js +0 -61
 - package/lib/routes/moxingfans/index.js +0 -50
 - package/lib/routes/moxingnet/index.js +0 -61
 - package/lib/routes/mp4ba/index.js +0 -133
 - package/lib/routes/mqube/latest.js +0 -21
 - package/lib/routes/mqube/tag.js +0 -23
 - package/lib/routes/mqube/top.js +0 -21
 - package/lib/routes/mqube/user.js +0 -25
 - package/lib/routes/muchong/journal.js +0 -52
 - package/lib/routes/mzitu/category.js +0 -26
 - package/lib/routes/mzitu/home.js +0 -32
 - package/lib/routes/mzitu/post.js +0 -41
 - package/lib/routes/mzitu/tag.js +0 -25
 - package/lib/routes/mzitu/tags.js +0 -23
 - package/lib/routes/mzitu/util.js +0 -51
 - package/lib/routes/namoc/announcement.js +0 -64
 - package/lib/routes/namoc/exhibition.js +0 -67
 - package/lib/routes/namoc/media.js +0 -67
 - package/lib/routes/namoc/news.js +0 -67
 - package/lib/routes/namoc/specials.js +0 -42
 - package/lib/routes/nasa/apod-cn.js +0 -66
 - package/lib/routes/nasa/apod-ncku.js +0 -30
 - package/lib/routes/nasa/apod.js +0 -30
 - package/lib/routes/nba/app_news.js +0 -40
 - package/lib/routes/netflix/newsroom.js +0 -82
 - package/lib/routes/network360/jobs.js +0 -24
 - package/lib/routes/newsmth/account.js +0 -39
 - package/lib/routes/newsmth/section.js +0 -99
 - package/lib/routes/nfmovies/index.js +0 -58
 - package/lib/routes/niaogebiji/cat.js +0 -86
 - package/lib/routes/niaogebiji/index.js +0 -40
 - package/lib/routes/niaogebiji/today.js +0 -29
 - package/lib/routes/ningmeng/song.js +0 -77
 - package/lib/routes/nobelprize/index.js +0 -79
 - package/lib/routes/noi/index.js +0 -40
 - package/lib/routes/noi/province-news.js +0 -40
 - package/lib/routes/noi/rg-news.js +0 -47
 - package/lib/routes/noi/winners-list.js +0 -41
 - package/lib/routes/northhouse/index.js +0 -54
 - package/lib/routes/nosec/index.js +0 -73
 - package/lib/routes/notefolio/index.js +0 -67
 - package/lib/routes/novel/axdzs.js +0 -67
 - package/lib/routes/novel/biquge.js +0 -66
 - package/lib/routes/novel/biqugeinfo.js +0 -69
 - package/lib/routes/novel/booksky.js +0 -44
 - package/lib/routes/novel/dcrsw.js +0 -58
 - package/lib/routes/novel/ptwxz.js +0 -76
 - package/lib/routes/novel/uukanshu.js +0 -39
 - package/lib/routes/novel/wenxuemi.js +0 -63
 - package/lib/routes/novel/zhaishuyuan.js +0 -84
 - package/lib/routes/npc/index.js +0 -42
 - package/lib/routes/obsidian/announcements.js +0 -22
 - package/lib/routes/one/index.js +0 -48
 - package/lib/routes/or/index.js +0 -54
 - package/lib/routes/ow/patch.js +0 -23
 - package/lib/routes/owspace/read.js +0 -141
 - package/lib/routes/p-articles/contributors.js +0 -45
 - package/lib/routes/p-articles/section.js +0 -53
 - package/lib/routes/p-articles/utils.js +0 -29
 - package/lib/routes/paidai/utils.js +0 -26
 - package/lib/routes/partnershiponai/resources.js +0 -49
 - package/lib/routes/patchwork.kernel.org/comments.js +0 -33
 - package/lib/routes/pcr/news-cn.js +0 -28
 - package/lib/routes/pcr/news-tw.js +0 -67
 - package/lib/routes/pcr/news.js +0 -31
 - package/lib/routes/pediy/topic.js +0 -117
 - package/lib/routes/pediy/utils.js +0 -27
 - package/lib/routes/pgyer/app.js +0 -91
 - package/lib/routes/piaohua/hot.js +0 -37
 - package/lib/routes/piapro/public.js +0 -54
 - package/lib/routes/piapro/user.js +0 -47
 - package/lib/routes/piapro/utils.js +0 -45
 - package/lib/routes/pintu360/index.js +0 -54
 - package/lib/routes/pjsk/news.js +0 -49
 - package/lib/routes/plainlaw/archives.js +0 -42
 - package/lib/routes/pmcaff/feed.js +0 -51
 - package/lib/routes/pmcaff/list.js +0 -67
 - package/lib/routes/pmcaff/user.js +0 -56
 - package/lib/routes/pocket/trending.js +0 -31
 - package/lib/routes/polar/blog.js +0 -47
 - package/lib/routes/popiask/questions.js +0 -41
 - package/lib/routes/popiask/tapechat_questions.js +0 -43
 - package/lib/routes/popyard/index.js +0 -93
 - package/lib/routes/pork-price/index.js +0 -49
 - package/lib/routes/pornhub/category.js +0 -22
 - package/lib/routes/pornhub/category_url.js +0 -34
 - package/lib/routes/pornhub/model.js +0 -35
 - package/lib/routes/pornhub/pornstar.js +0 -35
 - package/lib/routes/pornhub/search.js +0 -22
 - package/lib/routes/pornhub/users.js +0 -35
 - package/lib/routes/potplayer/update.js +0 -42
 - package/lib/routes/processon/popular.js +0 -51
 - package/lib/routes/project-zero-issues/index.js +0 -48
 - package/lib/routes/ps/list.js +0 -34
 - package/lib/routes/ps/product.js +0 -133
 - package/lib/routes/ps/ps4updates.js +0 -60
 - package/lib/routes/ps/trophy.js +0 -86
 - package/lib/routes/psnine/game.js +0 -32
 - package/lib/routes/psnine/index.js +0 -33
 - package/lib/routes/psnine/shuzhe.js +0 -33
 - package/lib/routes/psnine/trade.js +0 -39
 - package/lib/routes/ptpress/book.js +0 -34
 - package/lib/routes/putonghua/hangzhou.js +0 -45
 - package/lib/routes/qlwb/city.js +0 -54
 - package/lib/routes/qlwb/news.js +0 -37
 - package/lib/routes/qstheory/index.js +0 -122
 - package/lib/routes/qtfyfl/category.js +0 -91
 - package/lib/routes/quantamagazine/archive.js +0 -81
 - package/lib/routes/questmobile/report.js +0 -121
 - package/lib/routes/qutoutiao/category.js +0 -44
 - package/lib/routes/react/react-native-weekly.js +0 -35
 - package/lib/routes/remote-work/index.js +0 -88
 - package/lib/routes/rescuetime/release-notes.js +0 -37
 - package/lib/routes/right/forum.js +0 -67
 - package/lib/routes/rs05/rs05.js +0 -35
 - package/lib/routes/rss3/blog.js +0 -46
 - package/lib/routes/rthk-news/index.js +0 -60
 - package/lib/routes/s-hentai/index.js +0 -64
 - package/lib/routes/sagawa/index.js +0 -67
 - package/lib/routes/sankakucomplex/post.js +0 -50
 - package/lib/routes/sans/summit_archive.js +0 -24
 - package/lib/routes/sbs/chinese.js +0 -70
 - package/lib/routes/scala-blog/scala-blog.js +0 -29
 - package/lib/routes/scboy/thread.js +0 -50
 - package/lib/routes/sckjt/news.js +0 -35
 - package/lib/routes/scoresaber/user.js +0 -44
 - package/lib/routes/sexinsex/index.js +0 -101
 - package/lib/routes/sf/sffq-announce.js +0 -22
 - package/lib/routes/shanbay/checkin.js +0 -48
 - package/lib/routes/shanbay/footprints.js +0 -42
 - package/lib/routes/shengwugu/index.js +0 -41
 - package/lib/routes/shinybbs/index.js +0 -60
 - package/lib/routes/shinybbs/latest.js +0 -57
 - package/lib/routes/shinybbs/p.js +0 -38
 - package/lib/routes/showroom/room.js +0 -31
 - package/lib/routes/shuax/project.js +0 -37
 - package/lib/routes/shuhui/comics.js +0 -95
 - package/lib/routes/simonsfoundation/articles.js +0 -53
 - package/lib/routes/simpread/changelog.js +0 -79
 - package/lib/routes/sina/chuangshiji.js +0 -38
 - package/lib/routes/sina/discovery.js +0 -52
 - package/lib/routes/sina/finance.js +0 -37
 - package/lib/routes/sina/rollnews.js +0 -41
 - package/lib/routes/sina/sports.js +0 -54
 - package/lib/routes/sixthtone/news.js +0 -52
 - package/lib/routes/sketch/updates.js +0 -40
 - package/lib/routes/socialbeta/home.js +0 -42
 - package/lib/routes/socialbeta/hunt.js +0 -29
 - package/lib/routes/socialclub/events.js +0 -28
 - package/lib/routes/sogou/doodles.js +0 -26
 - package/lib/routes/soomal/topics.js +0 -130
 - package/lib/routes/soul/hot.js +0 -74
 - package/lib/routes/soundcloud/utils.js +0 -47
 - package/lib/routes/steam/search.js +0 -57
 - package/lib/routes/stork/keyword.js +0 -58
 - package/lib/routes/storyfm/index.js +0 -44
 - package/lib/routes/t66y/index.js +0 -156
 - package/lib/routes/t66y/post.js +0 -153
 - package/lib/routes/tahui/rptlist.js +0 -48
 - package/lib/routes/tam/forecast.js +0 -53
 - package/lib/routes/tanwu/products.js +0 -27
 - package/lib/routes/technologyreview/topic.js +0 -35
 - package/lib/routes/telecompaper/news.js +0 -100
 - package/lib/routes/telecompaper/search.js +0 -76
 - package/lib/routes/tencent/bigdata/index.js +0 -53
 - package/lib/routes/tencent/bugly/changelog.js +0 -49
 - package/lib/routes/tencent/egame/room.js +0 -52
 - package/lib/routes/tencent/gameinstitute/community.js +0 -60
 - package/lib/routes/tencent/guyu/channel.js +0 -64
 - package/lib/routes/tencent/tucaoqq/post.js +0 -39
 - package/lib/routes/tencent/video/playlist.js +0 -46
 - package/lib/routes/tencent/wechat/miniprogram/devtools.js +0 -38
 - package/lib/routes/tencent/wechat/miniprogram/framework.js +0 -35
 - package/lib/routes/tencent/wechat/miniprogram/plugins.js +0 -54
 - package/lib/routes/tencent/wechat/miniprogram/wxcloud.js +0 -47
 - package/lib/routes/tesla/update.js +0 -42
 - package/lib/routes/thrillist/index.js +0 -67
 - package/lib/routes/tianya/comments.js +0 -41
 - package/lib/routes/tianya/index.js +0 -32
 - package/lib/routes/tianya/user.js +0 -34
 - package/lib/routes/tianyancha/hot.js +0 -48
 - package/lib/routes/tingdiantz/95598.js +0 -46
 - package/lib/routes/titsguru/model.js +0 -16
 - package/lib/routes/titsguru/util.js +0 -68
 - package/lib/routes/tongli/news.js +0 -45
 - package/lib/routes/tophub/index.js +0 -28
 - package/lib/routes/totalcommander/whatsnew.js +0 -32
 - package/lib/routes/touhougarakuta/index.js +0 -68
 - package/lib/routes/touhougarakuta/json2html.js +0 -113
 - package/lib/routes/tprtc/cqzr.js +0 -80
 - package/lib/routes/tprtc/news.js +0 -71
 - package/lib/routes/tprtc/qyzc.js +0 -84
 - package/lib/routes/tssstatus/index.js +0 -35
 - package/lib/routes/tuicool/mags.js +0 -41
 - package/lib/routes/ui-cn/article.js +0 -51
 - package/lib/routes/uisdc/news.js +0 -34
 - package/lib/routes/uisdc/talk.js +0 -58
 - package/lib/routes/uisdc/topic.js +0 -55
 - package/lib/routes/uisdc/zt.js +0 -65
 - package/lib/routes/uniqlo/stylingbook.js +0 -24
 - package/lib/routes/unit-image/films.js +0 -141
 - package/lib/routes/universities/ahau/cs_news/utils.js +0 -50
 - package/lib/routes/universities/ahau/jwc/utils.js +0 -50
 - package/lib/routes/universities/ahau/main/utils.js +0 -50
 - package/lib/routes/universities/ahmu/news.js +0 -51
 - package/lib/routes/universities/ahut/cstzgg.js +0 -45
 - package/lib/routes/universities/ahut/jwc.js +0 -43
 - package/lib/routes/universities/ahut/news.js +0 -44
 - package/lib/routes/universities/bjtu/gs/index.js +0 -130
 - package/lib/routes/universities/buaa/news/index.js +0 -66
 - package/lib/routes/universities/buaa/utils.js +0 -57
 - package/lib/routes/universities/bupt/funbox.js +0 -40
 - package/lib/routes/universities/bupt/grs.js +0 -64
 - package/lib/routes/universities/bupt/news.js +0 -34
 - package/lib/routes/universities/bupt/portal.js +0 -34
 - package/lib/routes/universities/bupt/utils.js +0 -72
 - package/lib/routes/universities/bupt/yz.js +0 -155
 - package/lib/routes/universities/bwu/utils.js +0 -50
 - package/lib/routes/universities/cpu/home.js +0 -52
 - package/lib/routes/universities/cpu/jwc.js +0 -52
 - package/lib/routes/universities/cpu/yjsy.js +0 -52
 - package/lib/routes/universities/cqu/jwc/announcement.js +0 -53
 - package/lib/routes/universities/cqu/net/info.js +0 -60
 - package/lib/routes/universities/cqu/news/tz.js +0 -71
 - package/lib/routes/universities/cqu/news/utils.js +0 -48
 - package/lib/routes/universities/cqu/sci/info.js +0 -59
 - package/lib/routes/universities/cqu/youth/info.js +0 -62
 - package/lib/routes/universities/cug/gcxy/index.js +0 -114
 - package/lib/routes/universities/cug/news.js +0 -63
 - package/lib/routes/universities/cuit/cxxww.js +0 -63
 - package/lib/routes/universities/dlmu/news.js +0 -44
 - package/lib/routes/universities/dlu/jiaowu/news.js +0 -37
 - package/lib/routes/universities/fudan/cce.js +0 -52
 - package/lib/routes/universities/gdou/jwc/utils.js +0 -72
 - package/lib/routes/universities/gzmtu/jwc/utils.js +0 -86
 - package/lib/routes/universities/gzmtu/tsg/utils.js +0 -86
 - package/lib/routes/universities/harvard/health/blog.js +0 -51
 - package/lib/routes/universities/hhu/libNews.js +0 -57
 - package/lib/routes/universities/hhu/libNewsc.js +0 -75
 - package/lib/routes/universities/hnust/graduate/index.js +0 -40
 - package/lib/routes/universities/jnu/yw/index.js +0 -81
 - package/lib/routes/universities/kmust/job/careers.js +0 -33
 - package/lib/routes/universities/kmust/job/jobfairs.js +0 -32
 - package/lib/routes/universities/kmust/jwc.js +0 -44
 - package/lib/routes/universities/lit/jwc.js +0 -50
 - package/lib/routes/universities/lit/tw.js +0 -56
 - package/lib/routes/universities/lit/xwzx.js +0 -73
 - package/lib/routes/universities/lntu/jwnews.js +0 -46
 - package/lib/routes/universities/lyu/news/utils.js +0 -42
 - package/lib/routes/universities/mit/graduateadmissions.js +0 -63
 - package/lib/routes/universities/nciae/news.js +0 -58
 - package/lib/routes/universities/nciae/tzgg.js +0 -58
 - package/lib/routes/universities/nciae/xsxx.js +0 -58
 - package/lib/routes/universities/njfu/jwc.js +0 -52
 - package/lib/routes/universities/njtech/jwc.js +0 -54
 - package/lib/routes/universities/nuc/index.js +0 -91
 - package/lib/routes/universities/nudt/yjszs.js +0 -65
 - package/lib/routes/universities/nwafu/54youth.js +0 -28
 - package/lib/routes/universities/nwafu/cie.js +0 -28
 - package/lib/routes/universities/nwafu/gs.js +0 -28
 - package/lib/routes/universities/nwafu/jcc.js +0 -28
 - package/lib/routes/universities/nwafu/jiaowu.js +0 -28
 - package/lib/routes/universities/nwafu/lib.js +0 -28
 - package/lib/routes/universities/nwafu/news.js +0 -28
 - package/lib/routes/universities/nwafu/nic.js +0 -28
 - package/lib/routes/universities/nwafu/yjshy.js +0 -28
 - package/lib/routes/universities/seu/cse/index.js +0 -69
 - package/lib/routes/universities/seu/radio/academic.js +0 -65
 - package/lib/routes/universities/seu/yzb/index.js +0 -38
 - package/lib/routes/universities/shanghaitech/activity.js +0 -34
 - package/lib/routes/universities/shanghaitech/sist/activity.js +0 -51
 - package/lib/routes/universities/shou/www.js +0 -64
 - package/lib/routes/universities/shu/index.js +0 -75
 - package/lib/routes/universities/shu/jwc.js +0 -62
 - package/lib/routes/universities/sjtu/gs/tzgg.js +0 -31
 - package/lib/routes/universities/sjtu/gs/utils.js +0 -64
 - package/lib/routes/universities/sjtu/jwc.js +0 -115
 - package/lib/routes/universities/sjtu/seiee/academic.js +0 -18
 - package/lib/routes/universities/sjtu/seiee/bjwb.js +0 -45
 - package/lib/routes/universities/sjtu/seiee/utils.js +0 -45
 - package/lib/routes/universities/sjtu/seiee/xsb.js +0 -53
 - package/lib/routes/universities/sjtu/tongqu/activity.js +0 -43
 - package/lib/routes/universities/sjtu/yzb/zkxx.js +0 -33
 - package/lib/routes/universities/slu/utils.js +0 -74
 - package/lib/routes/universities/swufe/seie/index.js +0 -71
 - package/lib/routes/universities/swust/cs.js +0 -62
 - package/lib/routes/universities/swust/helper.js +0 -47
 - package/lib/routes/universities/swust/jwc_news.js +0 -45
 - package/lib/routes/universities/swust/jwc_notice.js +0 -51
 - package/lib/routes/universities/thu/index.js +0 -107
 - package/lib/routes/universities/usst/jwc.js +0 -62
 - package/lib/routes/universities/ustb/tj/news.js +0 -62
 - package/lib/routes/universities/utdallas/isso.js +0 -54
 - package/lib/routes/universities/whu/cs.js +0 -38
 - package/lib/routes/universities/whu/news.js +0 -128
 - package/lib/routes/universities/wtu/index.js +0 -34
 - package/lib/routes/universities/ynnu/edu/base64.js +0 -351
 - package/lib/routes/universities/ynnu/edu/news.js +0 -109
 - package/lib/routes/universities/ynu/utils.js +0 -64
 - package/lib/routes/universities/yzu/home.js +0 -83
 - package/lib/routes/universities/yzu/yjszs.js +0 -81
 - package/lib/routes/universities/zjgsu/tzgg/utils.js +0 -54
 - package/lib/routes/universities/zjut/design.js +0 -59
 - package/lib/routes/universities/zjut/index.js +0 -59
 - package/lib/routes/universities/zucc/cssearch/index.js +0 -47
 - package/lib/routes/universities/zucc/news/index.js +0 -68
 - package/lib/routes/universities/zzu/news.js +0 -80
 - package/lib/routes/universities/zzu/soft/news.js +0 -68
 - package/lib/routes/us/supremecourt/argument_audio.js +0 -58
 - package/lib/routes/uwants/index.js +0 -70
 - package/lib/routes/v2ex/post.js +0 -39
 - package/lib/routes/v2ex/tab.js +0 -60
 - package/lib/routes/v2ex/topics.js +0 -30
 - package/lib/routes/vgtime/keyword.js +0 -46
 - package/lib/routes/vgtime/news.js +0 -52
 - package/lib/routes/vgtime/release.js +0 -20
 - package/lib/routes/voa/day-photos.js +0 -54
 - package/lib/routes/voa/index.js +0 -54
 - package/lib/routes/vol/lastupdate.js +0 -51
 - package/lib/routes/vuevideo/user.js +0 -60
 - package/lib/routes/vulture/utils.js +0 -113
 - package/lib/routes/wanwansub/index.js +0 -57
 - package/lib/routes/wanwansub/info.js +0 -44
 - package/lib/routes/watchface/update.js +0 -42
 - package/lib/routes/weatheralarm/index.js +0 -26
 - package/lib/routes/webtoons/comic.js +0 -54
 - package/lib/routes/webtoons/naver.js +0 -50
 - package/lib/routes/weexcn/index.js +0 -69
 - package/lib/routes/weforum/report.js +0 -56
 - package/lib/routes/wegene/column.js +0 -30
 - package/lib/routes/weidian/goods.js +0 -37
 - package/lib/routes/weseepro/circle.js +0 -38
 - package/lib/routes/weseepro/newest-direct.js +0 -69
 - package/lib/routes/weseepro/newest.js +0 -69
 - package/lib/routes/westore/new.js +0 -40
 - package/lib/routes/whalegogo/home.js +0 -43
 - package/lib/routes/whalegogo/portal.js +0 -57
 - package/lib/routes/whb/zhuzhan.js +0 -76
 - package/lib/routes/wikihow/category.js +0 -34
 - package/lib/routes/wikihow/index.js +0 -32
 - package/lib/routes/wineyun/index.js +0 -36
 - package/lib/routes/wired/tag.js +0 -31
 - package/lib/routes/wolley/host.js +0 -39
 - package/lib/routes/wolley/index.js +0 -47
 - package/lib/routes/wolley/user.js +0 -38
 - package/lib/routes/wto/dispute-settlement.js +0 -37
 - package/lib/routes/wukong/user.js +0 -93
 - package/lib/routes/x-mol/news.js +0 -48
 - package/lib/routes/x-mol/paper.js +0 -78
 - package/lib/routes/x-mol/utils.js +0 -16
 - package/lib/routes/xiachufang/utils.js +0 -100
 - package/lib/routes/xiaoheihe/discount.js +0 -71
 - package/lib/routes/xiaoheihe/news.js +0 -53
 - package/lib/routes/xiaoheihe/user.js +0 -51
 - package/lib/routes/xici/index.js +0 -33
 - package/lib/routes/ximalaya/album.js +0 -219
 - package/lib/routes/ximalaya/utils.js +0 -131
 - package/lib/routes/xinquji/internal.js +0 -15
 - package/lib/routes/xinquji/today.js +0 -15
 - package/lib/routes/xposed/module.js +0 -36
 - package/lib/routes/xuangubao/subject.js +0 -47
 - package/lib/routes/xuetangx/course_list.js +0 -52
 - package/lib/routes/xyplorer/whatsnew.js +0 -32
 - package/lib/routes/yahoo-jp-tv/index.js +0 -21
 - package/lib/routes/yande.re/post_popular_recent.js +0 -63
 - package/lib/routes/yicas/blog.js +0 -52
 - package/lib/routes/yidoutang/index.js +0 -33
 - package/lib/routes/yinxiang/card.js +0 -45
 - package/lib/routes/yinxiang/category.js +0 -46
 - package/lib/routes/yinxiang/note.js +0 -41
 - package/lib/routes/yinxiang/personal.js +0 -47
 - package/lib/routes/yinxiang/tag.js +0 -46
 - package/lib/routes/youdao/latest.js +0 -47
 - package/lib/routes/youdao/xueba.js +0 -64
 - package/lib/routes/yuzu-emu/entry.js +0 -52
 - package/lib/routes/zcfy/hot.js +0 -34
 - package/lib/routes/zcfy/index.js +0 -34
 - package/lib/routes/zfrontier/board_postlist.js +0 -36
 - package/lib/routes/zfrontier/postlist.js +0 -33
 - package/lib/routes/zhanqi/room.js +0 -37
 - package/lib/routes/zhilian/index.js +0 -78
 - package/lib/routes/zhishifenzi/depth.js +0 -56
 - package/lib/routes/zhishifenzi/innovation.js +0 -67
 - package/lib/routes/zhishifenzi/news.js +0 -66
 - package/lib/routes/zhuixinfan/list.js +0 -51
 - package/lib/routes/zhutix/latest.js +0 -41
 - package/lib/routes/zimuku/index.js +0 -41
 - package/lib/routes/zimuxia/index.js +0 -56
 - package/lib/routes/zimuxia/portfolio.js +0 -39
 - package/lib/routes/zimuzu/resource.js +0 -19
 - package/lib/routes/zimuzu/top.js +0 -27
 - package/lib/routes/ziroom/room.js +0 -55
 - package/lib/routes/zreading/home.js +0 -50
 - package/lib/routes/zsnews/index.js +0 -31
 - package/lib/routes/zzz/index.js +0 -59
 - package/lib/utils/cf-email.js +0 -36
 - package/lib/utils/common-config.js +0 -82
 - package/lib/utils/common-utils.js +0 -37
 - package/lib/utils/date.js +0 -85
 - package/lib/utils/dateParser.js +0 -89
 - package/lib/utils/got.js +0 -40
 - package/lib/utils/logger.js +0 -34
 - package/lib/utils/md5.js +0 -5
 - package/lib/utils/parse-date.js +0 -199
 - package/lib/utils/puppeteer-utils.js +0 -63
 - package/lib/utils/puppeteer.js +0 -79
 - package/lib/utils/rand-user-agent.js +0 -29
 - package/lib/utils/readable-social.js +0 -46
 - package/lib/utils/render.js +0 -9
 - package/lib/utils/request-wrapper.js +0 -86
 - package/lib/utils/rss-parser.js +0 -13
 - package/lib/utils/timezone.js +0 -14
 - package/lib/utils/unify-proxy.js +0 -116
 - package/lib/utils/valid-host.js +0 -16
 - package/lib/utils/wait.js +0 -5
 - package/lib/utils/wechat-mp.js +0 -271
 - package/lib/v2/0818tuan/index.js +0 -47
 - package/lib/v2/0818tuan/maintainer.js +0 -3
 - package/lib/v2/0818tuan/radar.js +0 -13
 - package/lib/v2/0818tuan/router.js +0 -3
 - package/lib/v2/12306/index.js +0 -108
 - package/lib/v2/12306/maintainer.js +0 -4
 - package/lib/v2/12306/radar.js +0 -28
 - package/lib/v2/12306/router.js +0 -4
 - package/lib/v2/12306/zxdt.js +0 -67
 - package/lib/v2/163/ds.js +0 -33
 - package/lib/v2/163/dy.js +0 -29
 - package/lib/v2/163/dy2.js +0 -42
 - package/lib/v2/163/exclusive.js +0 -148
 - package/lib/v2/163/maintainer.js +0 -20
 - package/lib/v2/163/music/artist-songs.js +0 -39
 - package/lib/v2/163/music/artist.js +0 -39
 - package/lib/v2/163/music/djradio.js +0 -78
 - package/lib/v2/163/music/maintainer.js +0 -3
 - package/lib/v2/163/music/playlist.js +0 -55
 - package/lib/v2/163/music/userevents.js +0 -52
 - package/lib/v2/163/music/userplaylist.js +0 -56
 - package/lib/v2/163/music/userplayrecords.js +0 -55
 - package/lib/v2/163/news/rank.js +0 -155
 - package/lib/v2/163/news/special.js +0 -114
 - package/lib/v2/163/open/vip.js +0 -63
 - package/lib/v2/163/radar.js +0 -155
 - package/lib/v2/163/renjian.js +0 -77
 - package/lib/v2/163/router.js +0 -20
 - package/lib/v2/163/today.js +0 -55
 - package/lib/v2/163/utils.js +0 -40
 - package/lib/v2/18comic/album.js +0 -76
 - package/lib/v2/18comic/blogs.js +0 -64
 - package/lib/v2/18comic/index.js +0 -12
 - package/lib/v2/18comic/maintainer.js +0 -6
 - package/lib/v2/18comic/radar.js +0 -41
 - package/lib/v2/18comic/router.js +0 -6
 - package/lib/v2/18comic/search.js +0 -13
 - package/lib/v2/18comic/templates/description.art +0 -4
 - package/lib/v2/18comic/utils.js +0 -71
 - package/lib/v2/19lou/index.js +0 -78
 - package/lib/v2/19lou/maintainer.js +0 -3
 - package/lib/v2/19lou/radar.js +0 -29
 - package/lib/v2/19lou/router.js +0 -3
 - package/lib/v2/1point3acres/blog.js +0 -67
 - package/lib/v2/1point3acres/category.js +0 -17
 - package/lib/v2/1point3acres/maintainer.js +0 -9
 - package/lib/v2/1point3acres/offer.js +0 -69
 - package/lib/v2/1point3acres/radar.js +0 -53
 - package/lib/v2/1point3acres/router.js +0 -10
 - package/lib/v2/1point3acres/section.js +0 -28
 - package/lib/v2/1point3acres/thread.js +0 -15
 - package/lib/v2/1point3acres/user/post.js +0 -21
 - package/lib/v2/1point3acres/user/thread.js +0 -21
 - package/lib/v2/1point3acres/utils.js +0 -79
 - package/lib/v2/2047/index.js +0 -55
 - package/lib/v2/2047/maintainer.js +0 -3
 - package/lib/v2/2047/radar.js +0 -13
 - package/lib/v2/2047/router.js +0 -3
 - package/lib/v2/2048/index.js +0 -98
 - package/lib/v2/2048/maintainer.js +0 -3
 - package/lib/v2/2048/radar.js +0 -13
 - package/lib/v2/2048/router.js +0 -3
 - package/lib/v2/2cycd/index.js +0 -57
 - package/lib/v2/2cycd/maintainer.js +0 -3
 - package/lib/v2/2cycd/radar.js +0 -25
 - package/lib/v2/2cycd/router.js +0 -3
 - package/lib/v2/35photo/actual.js +0 -7
 - package/lib/v2/35photo/author.js +0 -9
 - package/lib/v2/35photo/genre.js +0 -10
 - package/lib/v2/35photo/interesting.js +0 -7
 - package/lib/v2/35photo/maintainer.js +0 -8
 - package/lib/v2/35photo/map.js +0 -7
 - package/lib/v2/35photo/new.js +0 -7
 - package/lib/v2/35photo/radar.js +0 -43
 - package/lib/v2/35photo/router.js +0 -8
 - package/lib/v2/35photo/utils.js +0 -57
 - package/lib/v2/36kr/index.js +0 -80
 - package/lib/v2/36kr/maintainer.js +0 -9
 - package/lib/v2/36kr/radar.js +0 -49
 - package/lib/v2/36kr/router.js +0 -3
 - package/lib/v2/423down/index.js +0 -114
 - package/lib/v2/423down/maintainer.js +0 -3
 - package/lib/v2/423down/radar.js +0 -193
 - package/lib/v2/423down/router.js +0 -3
 - package/lib/v2/500px/maintainer.js +0 -4
 - package/lib/v2/500px/radar.js +0 -19
 - package/lib/v2/500px/router.js +0 -4
 - package/lib/v2/500px/tribeSet.js +0 -29
 - package/lib/v2/500px/user.js +0 -32
 - package/lib/v2/500px/utils.js +0 -122
 - package/lib/v2/50forum/maintainer.js +0 -3
 - package/lib/v2/50forum/radar.js +0 -13
 - package/lib/v2/50forum/router.js +0 -3
 - package/lib/v2/50forum/zhuanjia.js +0 -51
 - package/lib/v2/52hrtt/index.js +0 -56
 - package/lib/v2/52hrtt/maintainer.js +0 -4
 - package/lib/v2/52hrtt/radar.js +0 -19
 - package/lib/v2/52hrtt/router.js +0 -4
 - package/lib/v2/52hrtt/symposium.js +0 -56
 - package/lib/v2/591/list.js +0 -144
 - package/lib/v2/591/maintainer.js +0 -3
 - package/lib/v2/591/radar.js +0 -16
 - package/lib/v2/591/router.js +0 -3
 - package/lib/v2/6park/index.js +0 -65
 - package/lib/v2/6park/maintainer.js +0 -8
 - package/lib/v2/6park/news.js +0 -76
 - package/lib/v2/6park/radar.js +0 -65
 - package/lib/v2/6park/router.js +0 -4
 - package/lib/v2/6v123/latestMovies.js +0 -14
 - package/lib/v2/6v123/latestTVSeries.js +0 -14
 - package/lib/v2/6v123/maintainer.js +0 -4
 - package/lib/v2/6v123/radar.js +0 -23
 - package/lib/v2/6v123/router.js +0 -4
 - package/lib/v2/6v123/utils.js +0 -83
 - package/lib/v2/78dm/index.js +0 -74
 - package/lib/v2/78dm/maintainer.js +0 -5
 - package/lib/v2/78dm/radar.js +0 -37
 - package/lib/v2/78dm/router.js +0 -3
 - package/lib/v2/7mmtv/index.js +0 -78
 - package/lib/v2/7mmtv/maintainer.js +0 -4
 - package/lib/v2/7mmtv/radar.js +0 -19
 - package/lib/v2/7mmtv/router.js +0 -3
 - package/lib/v2/8kcos/article.js +0 -24
 - package/lib/v2/8kcos/cat.js +0 -22
 - package/lib/v2/8kcos/const.js +0 -4
 - package/lib/v2/8kcos/latest.js +0 -23
 - package/lib/v2/8kcos/maintainer.js +0 -5
 - package/lib/v2/8kcos/radar.js +0 -25
 - package/lib/v2/8kcos/router.js +0 -5
 - package/lib/v2/8kcos/tag.js +0 -23
 - package/lib/v2/8world/index.js +0 -57
 - package/lib/v2/8world/maintainer.js +0 -4
 - package/lib/v2/8world/radar.js +0 -19
 - package/lib/v2/8world/router.js +0 -3
 - package/lib/v2/91porn/author.js +0 -60
 - package/lib/v2/91porn/index.js +0 -60
 - package/lib/v2/91porn/maintainer.js +0 -4
 - package/lib/v2/91porn/radar.js +0 -19
 - package/lib/v2/91porn/router.js +0 -4
 - package/lib/v2/91porn/utils.js +0 -12
 - package/lib/v2/95mm/category.js +0 -20
 - package/lib/v2/95mm/maintainer.js +0 -5
 - package/lib/v2/95mm/radar.js +0 -25
 - package/lib/v2/95mm/router.js +0 -5
 - package/lib/v2/95mm/tab.js +0 -9
 - package/lib/v2/95mm/tag.js +0 -9
 - package/lib/v2/95mm/utils.js +0 -59
 - package/lib/v2/9to5/maintainer.js +0 -3
 - package/lib/v2/9to5/radar.js +0 -35
 - package/lib/v2/9to5/router.js +0 -3
 - package/lib/v2/9to5/subsite.js +0 -70
 - package/lib/v2/9to5/utils.js +0 -36
 - package/lib/v2/aamacau/index.js +0 -56
 - package/lib/v2/aamacau/maintainer.js +0 -3
 - package/lib/v2/aamacau/radar.js +0 -13
 - package/lib/v2/aamacau/router.js +0 -3
 - package/lib/v2/abmedia/category.js +0 -30
 - package/lib/v2/abmedia/index.js +0 -26
 - package/lib/v2/abmedia/maintainer.js +0 -3
 - package/lib/v2/abmedia/radar.js +0 -19
 - package/lib/v2/abmedia/router.js +0 -4
 - package/lib/v2/abskoop/index.js +0 -57
 - package/lib/v2/abskoop/maintainer.js +0 -3
 - package/lib/v2/abskoop/nsfw.js +0 -52
 - package/lib/v2/abskoop/radar.js +0 -13
 - package/lib/v2/abskoop/router.js +0 -4
 - package/lib/v2/abskoop/templates/description.art +0 -3
 - package/lib/v2/acfun/article.js +0 -100
 - package/lib/v2/acfun/bangumi.js +0 -28
 - package/lib/v2/acfun/maintainer.js +0 -5
 - package/lib/v2/acfun/radar.js +0 -25
 - package/lib/v2/acfun/router.js +0 -5
 - package/lib/v2/acfun/video.js +0 -45
 - package/lib/v2/acg17/maintainer.js +0 -3
 - package/lib/v2/acg17/post.js +0 -20
 - package/lib/v2/acg17/radar.js +0 -13
 - package/lib/v2/acg17/router.js +0 -3
 - package/lib/v2/acs/journal.js +0 -73
 - package/lib/v2/acs/maintainer.js +0 -3
 - package/lib/v2/acs/radar.js +0 -13
 - package/lib/v2/acs/router.js +0 -3
 - package/lib/v2/aeaweb/index.js +0 -81
 - package/lib/v2/aeaweb/maintainer.js +0 -3
 - package/lib/v2/aeaweb/radar.js +0 -13
 - package/lib/v2/aeaweb/router.js +0 -3
 - package/lib/v2/agefans/detail.js +0 -26
 - package/lib/v2/agefans/maintainer.js +0 -4
 - package/lib/v2/agefans/radar.js +0 -19
 - package/lib/v2/agefans/router.js +0 -4
 - package/lib/v2/agefans/update.js +0 -40
 - package/lib/v2/agirls/index.js +0 -77
 - package/lib/v2/agirls/maintainer.js +0 -5
 - package/lib/v2/agirls/radar.js +0 -25
 - package/lib/v2/agirls/router.js +0 -5
 - package/lib/v2/agirls/topic.js +0 -71
 - package/lib/v2/agirls/topic_list.js +0 -44
 - package/lib/v2/agora0/index.js +0 -54
 - package/lib/v2/agora0/maintainer.js +0 -4
 - package/lib/v2/agora0/pen0.js +0 -43
 - package/lib/v2/agora0/radar.js +0 -24
 - package/lib/v2/agora0/router.js +0 -4
 - package/lib/v2/ahjzu/maintainer.js +0 -3
 - package/lib/v2/ahjzu/news.js +0 -57
 - package/lib/v2/ahjzu/radar.js +0 -13
 - package/lib/v2/ahjzu/router.js +0 -3
 - package/lib/v2/aicaijing/index.js +0 -73
 - package/lib/v2/aicaijing/maintainer.js +0 -6
 - package/lib/v2/aicaijing/radar.js +0 -31
 - package/lib/v2/aicaijing/router.js +0 -3
 - package/lib/v2/aiea/index.js +0 -39
 - package/lib/v2/aiea/maintainer.js +0 -3
 - package/lib/v2/aiea/radar.js +0 -13
 - package/lib/v2/aiea/router.js +0 -3
 - package/lib/v2/aijishu/index.js +0 -26
 - package/lib/v2/aijishu/maintainer.js +0 -5
 - package/lib/v2/aijishu/radar.js +0 -25
 - package/lib/v2/aijishu/router.js +0 -3
 - package/lib/v2/aijishu/utils.js +0 -36
 - package/lib/v2/airchina/index.js +0 -36
 - package/lib/v2/airchina/maintainer.js +0 -3
 - package/lib/v2/airchina/radar.js +0 -13
 - package/lib/v2/airchina/router.js +0 -3
 - package/lib/v2/ajmide/index.js +0 -29
 - package/lib/v2/ajmide/maintainer.js +0 -3
 - package/lib/v2/ajmide/radar.js +0 -16
 - package/lib/v2/ajmide/router.js +0 -3
 - package/lib/v2/aliyun/database_month.js +0 -40
 - package/lib/v2/aliyun/developer/group.js +0 -49
 - package/lib/v2/aliyun/maintainer.js +0 -5
 - package/lib/v2/aliyun/notice.js +0 -56
 - package/lib/v2/aliyun/radar.js +0 -32
 - package/lib/v2/aliyun/router.js +0 -5
 - package/lib/v2/aliyundrive/files.js +0 -59
 - package/lib/v2/aliyundrive/maintainer.js +0 -3
 - package/lib/v2/aliyundrive/radar.js +0 -13
 - package/lib/v2/aliyundrive/router.js +0 -3
 - package/lib/v2/aljazeera/index.js +0 -87
 - package/lib/v2/aljazeera/maintainer.js +0 -5
 - package/lib/v2/aljazeera/radar.js +0 -62
 - package/lib/v2/aljazeera/router.js +0 -3
 - package/lib/v2/allrecode/index.js +0 -65
 - package/lib/v2/allrecode/maintainer.js +0 -5
 - package/lib/v2/allrecode/news.js +0 -35
 - package/lib/v2/allrecode/radar.js +0 -25
 - package/lib/v2/allrecode/router.js +0 -4
 - package/lib/v2/ally/maintainer.js +0 -3
 - package/lib/v2/ally/radar.js +0 -13
 - package/lib/v2/ally/rail.js +0 -108
 - package/lib/v2/ally/router.js +0 -3
 - package/lib/v2/amazon/awsblogs.js +0 -27
 - package/lib/v2/amazon/kindle-software-updates.js +0 -47
 - package/lib/v2/amazon/maintainer.js +0 -4
 - package/lib/v2/amazon/radar.js +0 -24
 - package/lib/v2/amazon/router.js +0 -4
 - package/lib/v2/android/maintainer.js +0 -3
 - package/lib/v2/android/platform-tools-releases.js +0 -47
 - package/lib/v2/android/radar.js +0 -13
 - package/lib/v2/android/router.js +0 -3
 - package/lib/v2/annualreviews/index.js +0 -68
 - package/lib/v2/annualreviews/maintainer.js +0 -3
 - package/lib/v2/annualreviews/radar.js +0 -13
 - package/lib/v2/annualreviews/router.js +0 -3
 - package/lib/v2/anquanke/category.js +0 -39
 - package/lib/v2/anquanke/maintainer.js +0 -4
 - package/lib/v2/anquanke/radar.js +0 -13
 - package/lib/v2/anquanke/router.js +0 -4
 - package/lib/v2/anquanke/vul.js +0 -34
 - package/lib/v2/apache/apisix/blog.js +0 -32
 - package/lib/v2/apache/maintainer.js +0 -3
 - package/lib/v2/apache/radar.js +0 -13
 - package/lib/v2/apache/router.js +0 -3
 - package/lib/v2/apiseven/blog.js +0 -46
 - package/lib/v2/apiseven/maintainer.js +0 -3
 - package/lib/v2/apiseven/radar.js +0 -13
 - package/lib/v2/apiseven/router.js +0 -3
 - package/lib/v2/apkpure/maintainer.js +0 -3
 - package/lib/v2/apkpure/radar.js +0 -13
 - package/lib/v2/apkpure/router.js +0 -3
 - package/lib/v2/apkpure/versions.js +0 -48
 - package/lib/v2/apnews/maintainer.js +0 -3
 - package/lib/v2/apnews/radar.js +0 -13
 - package/lib/v2/apnews/router.js +0 -3
 - package/lib/v2/apnews/topics.js +0 -47
 - package/lib/v2/app-center/maintainer.js +0 -3
 - package/lib/v2/app-center/radar.js +0 -13
 - package/lib/v2/app-center/release.js +0 -120
 - package/lib/v2/app-center/router.js +0 -3
 - package/lib/v2/apple/exchange_repair.js +0 -47
 - package/lib/v2/apple/maintainer.js +0 -3
 - package/lib/v2/apple/radar.js +0 -13
 - package/lib/v2/apple/router.js +0 -3
 - package/lib/v2/appledaily/index.js +0 -65
 - package/lib/v2/appledaily/maintainer.js +0 -3
 - package/lib/v2/appledaily/radar.js +0 -157
 - package/lib/v2/appledaily/router.js +0 -3
 - package/lib/v2/appleinsider/index.js +0 -59
 - package/lib/v2/appleinsider/maintainer.js +0 -3
 - package/lib/v2/appleinsider/radar.js +0 -13
 - package/lib/v2/appleinsider/router.js +0 -3
 - package/lib/v2/appstore/gofans.js +0 -34
 - package/lib/v2/appstore/in-app-purchase.js +0 -58
 - package/lib/v2/appstore/maintainer.js +0 -7
 - package/lib/v2/appstore/price.js +0 -53
 - package/lib/v2/appstore/radar.js +0 -41
 - package/lib/v2/appstore/router.js +0 -7
 - package/lib/v2/appstore/update.js +0 -37
 - package/lib/v2/appstore/xianmian.js +0 -28
 - package/lib/v2/aqara/community.js +0 -32
 - package/lib/v2/aqara/maintainer.js +0 -4
 - package/lib/v2/aqara/news.js +0 -53
 - package/lib/v2/aqara/radar.js +0 -21
 - package/lib/v2/aqara/router.js +0 -4
 - package/lib/v2/arcteryx/maintainer.js +0 -5
 - package/lib/v2/arcteryx/new-arrivals.js +0 -38
 - package/lib/v2/arcteryx/outlet.js +0 -40
 - package/lib/v2/arcteryx/radar.js +0 -29
 - package/lib/v2/arcteryx/regear-new-arrivals.js +0 -53
 - package/lib/v2/arcteryx/router.js +0 -5
 - package/lib/v2/arcteryx/utils.js +0 -23
 - package/lib/v2/arknights/announce.js +0 -55
 - package/lib/v2/arknights/japan.js +0 -25
 - package/lib/v2/arknights/maintainer.js +0 -5
 - package/lib/v2/arknights/news.js +0 -42
 - package/lib/v2/arknights/radar.js +0 -40
 - package/lib/v2/arknights/router.js +0 -8
 - package/lib/v2/ash-maurya/index.js +0 -54
 - package/lib/v2/ash-maurya/maintainer.js +0 -3
 - package/lib/v2/ash-maurya/radar.js +0 -13
 - package/lib/v2/ash-maurya/router.js +0 -3
 - package/lib/v2/asiantolick/index.js +0 -67
 - package/lib/v2/asiantolick/maintainer.js +0 -6
 - package/lib/v2/asiantolick/radar.js +0 -31
 - package/lib/v2/asiantolick/router.js +0 -3
 - package/lib/v2/asiantolick/templates/description.art +0 -3
 - package/lib/v2/asus/bios.js +0 -39
 - package/lib/v2/asus/gpu-tweak.js +0 -31
 - package/lib/v2/asus/maintainer.js +0 -4
 - package/lib/v2/asus/radar.js +0 -24
 - package/lib/v2/asus/router.js +0 -4
 - package/lib/v2/atcoder/contest.js +0 -64
 - package/lib/v2/atcoder/maintainer.js +0 -4
 - package/lib/v2/atcoder/post.js +0 -38
 - package/lib/v2/atcoder/radar.js +0 -22
 - package/lib/v2/atcoder/router.js +0 -4
 - package/lib/v2/audiobar/latest.js +0 -53
 - package/lib/v2/audiobar/maintainer.js +0 -3
 - package/lib/v2/audiobar/radar.js +0 -13
 - package/lib/v2/audiobar/router.js +0 -3
 - package/lib/v2/baai/comments.js +0 -35
 - package/lib/v2/baai/events.js +0 -35
 - package/lib/v2/baai/hub.js +0 -60
 - package/lib/v2/baai/maintainer.js +0 -5
 - package/lib/v2/baai/radar.js +0 -31
 - package/lib/v2/baai/router.js +0 -7
 - package/lib/v2/baai/utils.js +0 -33
 - package/lib/v2/baidu/gushitong/index.js +0 -28
 - package/lib/v2/baidu/maintainer.js +0 -9
 - package/lib/v2/baidu/radar.js +0 -68
 - package/lib/v2/baidu/router.js +0 -9
 - package/lib/v2/baidu/tieba/forum.js +0 -64
 - package/lib/v2/baidu/tieba/post.js +0 -80
 - package/lib/v2/baidu/tieba/user.js +0 -33
 - package/lib/v2/baidu/top.js +0 -34
 - package/lib/v2/baijing/index.js +0 -54
 - package/lib/v2/baijing/maintainer.js +0 -3
 - package/lib/v2/baijing/radar.js +0 -22
 - package/lib/v2/baijing/router.js +0 -3
 - package/lib/v2/bandcamp/live.js +0 -41
 - package/lib/v2/bandcamp/maintainer.js +0 -5
 - package/lib/v2/bandcamp/radar.js +0 -25
 - package/lib/v2/bandcamp/router.js +0 -5
 - package/lib/v2/bandcamp/tag.js +0 -46
 - package/lib/v2/bandcamp/weekly.js +0 -29
 - package/lib/v2/bangumi/maintainer.js +0 -17
 - package/lib/v2/bangumi/moe/index.js +0 -92
 - package/lib/v2/bangumi/online/online.js +0 -28
 - package/lib/v2/bangumi/radar.js +0 -92
 - package/lib/v2/bangumi/router.js +0 -14
 - package/lib/v2/bangumi/tv/calendar/_base.js +0 -37
 - package/lib/v2/bangumi/tv/calendar/today.js +0 -63
 - package/lib/v2/bangumi/tv/group/reply.js +0 -59
 - package/lib/v2/bangumi/tv/group/topic.js +0 -39
 - package/lib/v2/bangumi/tv/person/index.js +0 -38
 - package/lib/v2/bangumi/tv/subject/comments.js +0 -52
 - package/lib/v2/bangumi/tv/subject/ep.js +0 -31
 - package/lib/v2/bangumi/tv/subject/index.js +0 -26
 - package/lib/v2/bangumi/tv/subject/offcial-subject-api.js +0 -32
 - package/lib/v2/bangumi/tv/user/blog.js +0 -43
 - package/lib/v2/baozimh/index.js +0 -55
 - package/lib/v2/baozimh/maintainer.js +0 -3
 - package/lib/v2/baozimh/radar.js +0 -13
 - package/lib/v2/baozimh/router.js +0 -3
 - package/lib/v2/barronschina/index.js +0 -70
 - package/lib/v2/barronschina/maintainer.js +0 -3
 - package/lib/v2/barronschina/radar.js +0 -13
 - package/lib/v2/barronschina/router.js +0 -3
 - package/lib/v2/bast/index.js +0 -74
 - package/lib/v2/bast/maintainer.js +0 -3
 - package/lib/v2/bast/radar.js +0 -13
 - package/lib/v2/bast/router.js +0 -3
 - package/lib/v2/bbcnewslabs/maintainer.js +0 -3
 - package/lib/v2/bbcnewslabs/news.js +0 -32
 - package/lib/v2/bbcnewslabs/radar.js +0 -13
 - package/lib/v2/bbcnewslabs/router.js +0 -3
 - package/lib/v2/bdys/index.js +0 -98
 - package/lib/v2/bdys/maintainer.js +0 -3
 - package/lib/v2/bdys/radar.js +0 -20
 - package/lib/v2/bdys/router.js +0 -3
 - package/lib/v2/behance/maintainer.js +0 -3
 - package/lib/v2/behance/radar.js +0 -26
 - package/lib/v2/behance/router.js +0 -3
 - package/lib/v2/behance/user.js +0 -67
 - package/lib/v2/bellroy/maintainer.js +0 -3
 - package/lib/v2/bellroy/new-releases.js +0 -26
 - package/lib/v2/bellroy/radar.js +0 -13
 - package/lib/v2/bellroy/router.js +0 -3
 - package/lib/v2/bendibao/maintainer.js +0 -3
 - package/lib/v2/bendibao/news.js +0 -109
 - package/lib/v2/bendibao/radar.js +0 -13
 - package/lib/v2/bendibao/router.js +0 -3
 - package/lib/v2/bgmlist/maintainer.js +0 -3
 - package/lib/v2/bgmlist/onair.js +0 -32
 - package/lib/v2/bgmlist/radar.js +0 -13
 - package/lib/v2/bgmlist/router.js +0 -3
 - package/lib/v2/bigquant/collections.js +0 -35
 - package/lib/v2/bigquant/maintainer.js +0 -3
 - package/lib/v2/bigquant/radar.js +0 -13
 - package/lib/v2/bigquant/router.js +0 -3
 - package/lib/v2/bilibili/app.js +0 -33
 - package/lib/v2/bilibili/article.js +0 -53
 - package/lib/v2/bilibili/audio.js +0 -42
 - package/lib/v2/bilibili/bangumi.js +0 -50
 - package/lib/v2/bilibili/blackboard.js +0 -31
 - package/lib/v2/bilibili/cache.js +0 -149
 - package/lib/v2/bilibili/coin.js +0 -35
 - package/lib/v2/bilibili/danmaku.js +0 -56
 - package/lib/v2/bilibili/dynamic.js +0 -209
 - package/lib/v2/bilibili/fav.js +0 -39
 - package/lib/v2/bilibili/followers.js +0 -38
 - package/lib/v2/bilibili/followings.js +0 -37
 - package/lib/v2/bilibili/followings_article.js +0 -57
 - package/lib/v2/bilibili/followings_dynamic.js +0 -137
 - package/lib/v2/bilibili/followings_video.js +0 -46
 - package/lib/v2/bilibili/hotSearch.js +0 -25
 - package/lib/v2/bilibili/linkNews.js +0 -42
 - package/lib/v2/bilibili/liveArea.js +0 -64
 - package/lib/v2/bilibili/liveRoom.js +0 -41
 - package/lib/v2/bilibili/liveSearch.js +0 -40
 - package/lib/v2/bilibili/maintainer.js +0 -43
 - package/lib/v2/bilibili/mallIP.js +0 -34
 - package/lib/v2/bilibili/mallNew.js +0 -31
 - package/lib/v2/bilibili/manga_followings.js +0 -39
 - package/lib/v2/bilibili/manga_update.js +0 -33
 - package/lib/v2/bilibili/online.js +0 -25
 - package/lib/v2/bilibili/page.js +0 -36
 - package/lib/v2/bilibili/partion-ranking.js +0 -59
 - package/lib/v2/bilibili/partion.js +0 -36
 - package/lib/v2/bilibili/popular.js +0 -29
 - package/lib/v2/bilibili/radar.js +0 -141
 - package/lib/v2/bilibili/ranking.js +0 -43
 - package/lib/v2/bilibili/readlist.js +0 -31
 - package/lib/v2/bilibili/reply.js +0 -38
 - package/lib/v2/bilibili/router.js +0 -43
 - package/lib/v2/bilibili/topic.js +0 -50
 - package/lib/v2/bilibili/userChannel.js +0 -69
 - package/lib/v2/bilibili/userCollection.js +0 -51
 - package/lib/v2/bilibili/userFav.js +0 -35
 - package/lib/v2/bilibili/user_bangumi.js +0 -36
 - package/lib/v2/bilibili/utils.js +0 -20
 - package/lib/v2/bilibili/video-all.js +0 -73
 - package/lib/v2/bilibili/video.js +0 -46
 - package/lib/v2/bilibili/vsearch.js +0 -71
 - package/lib/v2/bilibili/weekly_recommend.js +0 -41
 - package/lib/v2/biodiscover/index.js +0 -44
 - package/lib/v2/biodiscover/maintainer.js +0 -3
 - package/lib/v2/biodiscover/radar.js +0 -13
 - package/lib/v2/biodiscover/router.js +0 -3
 - package/lib/v2/bioone/featured.js +0 -52
 - package/lib/v2/bioone/journal.js +0 -60
 - package/lib/v2/bioone/maintainer.js +0 -4
 - package/lib/v2/bioone/radar.js +0 -19
 - package/lib/v2/bioone/router.js +0 -4
 - package/lib/v2/biquge/index.js +0 -99
 - package/lib/v2/biquge/maintainer.js +0 -3
 - package/lib/v2/biquge/radar.js +0 -29
 - package/lib/v2/biquge/router.js +0 -3
 - package/lib/v2/bit/cs/cs.js +0 -24
 - package/lib/v2/bit/cs/utils.js +0 -53
 - package/lib/v2/bit/jwc/jwc.js +0 -24
 - package/lib/v2/bit/jwc/utils.js +0 -49
 - package/lib/v2/bit/maintainer.js +0 -6
 - package/lib/v2/bit/radar.js +0 -37
 - package/lib/v2/bit/router.js +0 -6
 - package/lib/v2/bit/rszhaopin.js +0 -30
 - package/lib/v2/bit/yjs.js +0 -27
 - package/lib/v2/bitbucket/commits.js +0 -40
 - package/lib/v2/bitbucket/maintainer.js +0 -4
 - package/lib/v2/bitbucket/radar.js +0 -19
 - package/lib/v2/bitbucket/router.js +0 -4
 - package/lib/v2/bitbucket/tags.js +0 -40
 - package/lib/v2/bitmovin/blog.js +0 -27
 - package/lib/v2/bitmovin/maintainer.js +0 -3
 - package/lib/v2/bitmovin/radar.js +0 -13
 - package/lib/v2/bitmovin/router.js +0 -3
 - package/lib/v2/bjfu/grs.js +0 -65
 - package/lib/v2/bjfu/it/index.js +0 -49
 - package/lib/v2/bjfu/it/utils.js +0 -64
 - package/lib/v2/bjfu/jwc/index.js +0 -55
 - package/lib/v2/bjfu/jwc/utils.js +0 -63
 - package/lib/v2/bjfu/kjc.js +0 -65
 - package/lib/v2/bjfu/maintainer.js +0 -7
 - package/lib/v2/bjfu/news/index.js +0 -55
 - package/lib/v2/bjfu/news/utils.js +0 -63
 - package/lib/v2/bjfu/radar.js +0 -45
 - package/lib/v2/bjfu/router.js +0 -7
 - package/lib/v2/bjp/apod.js +0 -43
 - package/lib/v2/bjp/maintainer.js +0 -3
 - package/lib/v2/bjp/radar.js +0 -13
 - package/lib/v2/bjp/router.js +0 -3
 - package/lib/v2/bjsk/index.js +0 -52
 - package/lib/v2/bjsk/maintainer.js +0 -3
 - package/lib/v2/bjsk/radar.js +0 -13
 - package/lib/v2/bjsk/router.js +0 -3
 - package/lib/v2/bjwxdxh/index.js +0 -52
 - package/lib/v2/bjwxdxh/maintainer.js +0 -3
 - package/lib/v2/bjwxdxh/radar.js +0 -13
 - package/lib/v2/bjwxdxh/router.js +0 -3
 - package/lib/v2/bjx/huanbao.js +0 -78
 - package/lib/v2/bjx/maintainer.js +0 -4
 - package/lib/v2/bjx/radar.js +0 -21
 - package/lib/v2/bjx/router.js +0 -4
 - package/lib/v2/bjx/types.js +0 -33
 - package/lib/v2/blockbeats/index.js +0 -43
 - package/lib/v2/blockbeats/maintainer.js +0 -3
 - package/lib/v2/blockbeats/radar.js +0 -19
 - package/lib/v2/blockbeats/router.js +0 -3
 - package/lib/v2/bloomberg/authors.js +0 -52
 - package/lib/v2/bloomberg/index.js +0 -28
 - package/lib/v2/bloomberg/maintainer.js +0 -5
 - package/lib/v2/bloomberg/radar.js +0 -19
 - package/lib/v2/bloomberg/router.js +0 -5
 - package/lib/v2/bloomberg/templates/image_figure.art +0 -9
 - package/lib/v2/bloomberg/utils.js +0 -407
 - package/lib/v2/bluestacks/maintainer.js +0 -3
 - package/lib/v2/bluestacks/radar.js +0 -13
 - package/lib/v2/bluestacks/release.js +0 -63
 - package/lib/v2/bluestacks/router.js +0 -3
 - package/lib/v2/bnu/bs.js +0 -52
 - package/lib/v2/bnu/dwxgb.js +0 -57
 - package/lib/v2/bnu/fdy.js +0 -41
 - package/lib/v2/bnu/lib.js +0 -40
 - package/lib/v2/bnu/maintainer.js +0 -6
 - package/lib/v2/bnu/radar.js +0 -37
 - package/lib/v2/bnu/router.js +0 -6
 - package/lib/v2/bookfere/category.js +0 -36
 - package/lib/v2/bookfere/maintainer.js +0 -3
 - package/lib/v2/bookfere/radar.js +0 -11
 - package/lib/v2/bookfere/router.js +0 -3
 - package/lib/v2/brave/latest.js +0 -38
 - package/lib/v2/brave/maintainer.js +0 -3
 - package/lib/v2/brave/radar.js +0 -13
 - package/lib/v2/brave/router.js +0 -3
 - package/lib/v2/brooklynmuseum/exhibitions.js +0 -27
 - package/lib/v2/brooklynmuseum/maintainer.js +0 -3
 - package/lib/v2/brooklynmuseum/radar.js +0 -11
 - package/lib/v2/brooklynmuseum/router.js +0 -3
 - package/lib/v2/bse/index.js +0 -173
 - package/lib/v2/bse/maintainer.js +0 -3
 - package/lib/v2/bse/radar.js +0 -13
 - package/lib/v2/bse/router.js +0 -3
 - package/lib/v2/btzj/index.js +0 -103
 - package/lib/v2/btzj/maintainer.js +0 -3
 - package/lib/v2/btzj/radar.js +0 -13
 - package/lib/v2/btzj/router.js +0 -3
 - package/lib/v2/bupt/maintainer.js +0 -3
 - package/lib/v2/bupt/radar.js +0 -13
 - package/lib/v2/bupt/rczp.js +0 -51
 - package/lib/v2/bupt/router.js +0 -3
 - package/lib/v2/byteclicks/index.js +0 -22
 - package/lib/v2/byteclicks/maintainer.js +0 -4
 - package/lib/v2/byteclicks/radar.js +0 -19
 - package/lib/v2/byteclicks/router.js +0 -4
 - package/lib/v2/byteclicks/tag.js +0 -30
 - package/lib/v2/byteclicks/utils.js +0 -13
 - package/lib/v2/bytes/bytes.js +0 -25
 - package/lib/v2/bytes/maintainer.js +0 -4
 - package/lib/v2/bytes/radar.js +0 -13
 - package/lib/v2/bytes/router.js +0 -3
 - package/lib/v2/c114/maintainer.js +0 -3
 - package/lib/v2/c114/radar.js +0 -13
 - package/lib/v2/c114/roll.js +0 -57
 - package/lib/v2/c114/router.js +0 -3
 - package/lib/v2/caai/index.js +0 -22
 - package/lib/v2/caai/maintainer.js +0 -3
 - package/lib/v2/caai/radar.js +0 -13
 - package/lib/v2/caai/router.js +0 -3
 - package/lib/v2/caai/utils.js +0 -46
 - package/lib/v2/caareviews/book.js +0 -14
 - package/lib/v2/caareviews/essay.js +0 -14
 - package/lib/v2/caareviews/exhibition.js +0 -14
 - package/lib/v2/caareviews/maintainer.js +0 -5
 - package/lib/v2/caareviews/radar.js +0 -25
 - package/lib/v2/caareviews/router.js +0 -5
 - package/lib/v2/caareviews/utils.js +0 -49
 - package/lib/v2/cahkms/index.js +0 -69
 - package/lib/v2/cahkms/maintainer.js +0 -3
 - package/lib/v2/cahkms/radar.js +0 -13
 - package/lib/v2/cahkms/router.js +0 -3
 - package/lib/v2/caijing/maintainer.js +0 -3
 - package/lib/v2/caijing/radar.js +0 -13
 - package/lib/v2/caijing/roll.js +0 -46
 - package/lib/v2/caijing/router.js +0 -3
 - package/lib/v2/caixin/article.js +0 -27
 - package/lib/v2/caixin/blog.js +0 -58
 - package/lib/v2/caixin/category.js +0 -56
 - package/lib/v2/caixin/database.js +0 -48
 - package/lib/v2/caixin/k.js +0 -40
 - package/lib/v2/caixin/latest.js +0 -50
 - package/lib/v2/caixin/maintainer.js +0 -8
 - package/lib/v2/caixin/radar.js +0 -43
 - package/lib/v2/caixin/router.js +0 -8
 - package/lib/v2/caixin/templates/article.art +0 -38
 - package/lib/v2/caixin/utils.js +0 -52
 - package/lib/v2/camchina/index.js +0 -52
 - package/lib/v2/camchina/maintainer.js +0 -3
 - package/lib/v2/camchina/radar.js +0 -13
 - package/lib/v2/camchina/router.js +0 -3
 - package/lib/v2/cankaoxiaoxi/index.js +0 -68
 - package/lib/v2/cankaoxiaoxi/maintainer.js +0 -4
 - package/lib/v2/cankaoxiaoxi/radar.js +0 -16
 - package/lib/v2/cankaoxiaoxi/router.js +0 -4
 - package/lib/v2/cartoonmad/comic.js +0 -70
 - package/lib/v2/cartoonmad/maintainer.js +0 -3
 - package/lib/v2/cartoonmad/radar.js +0 -13
 - package/lib/v2/cartoonmad/router.js +0 -3
 - package/lib/v2/cas/cg/index.js +0 -52
 - package/lib/v2/cas/ia/yjs.js +0 -25
 - package/lib/v2/cas/iee/kydt.js +0 -48
 - package/lib/v2/cas/maintainer.js +0 -7
 - package/lib/v2/cas/mesalab/kb.js +0 -41
 - package/lib/v2/cas/radar.js +0 -48
 - package/lib/v2/cas/router.js +0 -7
 - package/lib/v2/cas/sim/kyjz.js +0 -47
 - package/lib/v2/cast/index.js +0 -74
 - package/lib/v2/cast/maintainer.js +0 -3
 - package/lib/v2/cast/radar.js +0 -13
 - package/lib/v2/cast/router.js +0 -3
 - package/lib/v2/cau/ele.js +0 -42
 - package/lib/v2/cau/maintainer.js +0 -4
 - package/lib/v2/cau/radar.js +0 -21
 - package/lib/v2/cau/router.js +0 -4
 - package/lib/v2/cau/yjs.js +0 -42
 - package/lib/v2/cbirc/index.js +0 -119
 - package/lib/v2/cbirc/maintainer.js +0 -3
 - package/lib/v2/cbirc/radar.js +0 -13
 - package/lib/v2/cbirc/router.js +0 -3
 - package/lib/v2/cbnweek/index.js +0 -46
 - package/lib/v2/cbnweek/maintainer.js +0 -3
 - package/lib/v2/cbnweek/radar.js +0 -13
 - package/lib/v2/cbnweek/router.js +0 -3
 - package/lib/v2/ccac/maintainer.js +0 -3
 - package/lib/v2/ccac/news.js +0 -56
 - package/lib/v2/ccac/radar.js +0 -13
 - package/lib/v2/ccac/router.js +0 -3
 - package/lib/v2/ccac/utils.js +0 -32
 - package/lib/v2/ccf/ccfcv/index.js +0 -68
 - package/lib/v2/ccf/maintainer.js +0 -5
 - package/lib/v2/ccf/news.js +0 -45
 - package/lib/v2/ccf/radar.js +0 -41
 - package/lib/v2/ccf/router.js +0 -5
 - package/lib/v2/ccf/tfbd/index.js +0 -22
 - package/lib/v2/ccf/tfbd/utils.js +0 -47
 - package/lib/v2/ccnu/career.js +0 -31
 - package/lib/v2/ccnu/cs.js +0 -28
 - package/lib/v2/ccnu/maintainer.js +0 -6
 - package/lib/v2/ccnu/radar.js +0 -40
 - package/lib/v2/ccnu/router.js +0 -6
 - package/lib/v2/ccnu/wu.js +0 -27
 - package/lib/v2/ccnu/yjs.js +0 -27
 - package/lib/v2/ccreports/index.js +0 -41
 - package/lib/v2/ccreports/maintainer.js +0 -3
 - package/lib/v2/ccreports/radar.js +0 -13
 - package/lib/v2/ccreports/router.js +0 -3
 - package/lib/v2/cctv/category.js +0 -20
 - package/lib/v2/cctv/jx.js +0 -51
 - package/lib/v2/cctv/lm.js +0 -77
 - package/lib/v2/cctv/maintainer.js +0 -7
 - package/lib/v2/cctv/radar.js +0 -41
 - package/lib/v2/cctv/router.js +0 -7
 - package/lib/v2/cctv/special.js +0 -110
 - package/lib/v2/cctv/utils/mzzlbg.js +0 -41
 - package/lib/v2/cctv/utils/news.js +0 -105
 - package/lib/v2/cctv/utils/xinwen1j1.js +0 -81
 - package/lib/v2/cctv/xwlb.js +0 -50
 - package/lib/v2/cde/index.js +0 -132
 - package/lib/v2/cde/maintainer.js +0 -5
 - package/lib/v2/cde/radar.js +0 -73
 - package/lib/v2/cde/router.js +0 -5
 - package/lib/v2/cde/utils.js +0 -20
 - package/lib/v2/cde/xxgk.js +0 -73
 - package/lib/v2/cde/zdyz.js +0 -77
 - package/lib/v2/cdi/index.js +0 -61
 - package/lib/v2/cdi/maintainer.js +0 -3
 - package/lib/v2/cdi/radar.js +0 -13
 - package/lib/v2/cdi/router.js +0 -3
 - package/lib/v2/cdzjryb/maintainer.js +0 -3
 - package/lib/v2/cdzjryb/projectList.js +0 -49
 - package/lib/v2/cdzjryb/radar.js +0 -13
 - package/lib/v2/cdzjryb/router.js +0 -3
 - package/lib/v2/cebbank/all.js +0 -51
 - package/lib/v2/cebbank/history.js +0 -50
 - package/lib/v2/cebbank/maintainer.js +0 -4
 - package/lib/v2/cebbank/radar.js +0 -19
 - package/lib/v2/cebbank/router.js +0 -4
 - package/lib/v2/cebbank/utils.js +0 -70
 - package/lib/v2/cgtn/maintainer.js +0 -3
 - package/lib/v2/cgtn/podcast.js +0 -35
 - package/lib/v2/cgtn/radar.js +0 -13
 - package/lib/v2/cgtn/router.js +0 -3
 - package/lib/v2/chaincatcher/home.js +0 -50
 - package/lib/v2/chaincatcher/maintainer.js +0 -4
 - package/lib/v2/chaincatcher/news.js +0 -40
 - package/lib/v2/chaincatcher/radar.js +0 -19
 - package/lib/v2/chaincatcher/router.js +0 -4
 - package/lib/v2/changba/maintainer.js +0 -3
 - package/lib/v2/changba/radar.js +0 -13
 - package/lib/v2/changba/router.js +0 -3
 - package/lib/v2/changba/user.js +0 -84
 - package/lib/v2/chaoxing/maintainer.js +0 -3
 - package/lib/v2/chaoxing/qk.js +0 -59
 - package/lib/v2/chaoxing/radar.js +0 -13
 - package/lib/v2/chaoxing/router.js +0 -3
 - package/lib/v2/chaping/banner.js +0 -40
 - package/lib/v2/chaping/maintainer.js +0 -5
 - package/lib/v2/chaping/news.js +0 -55
 - package/lib/v2/chaping/newsflash.js +0 -23
 - package/lib/v2/chaping/radar.js +0 -31
 - package/lib/v2/chaping/router.js +0 -5
 - package/lib/v2/chiculture/maintainer.js +0 -3
 - package/lib/v2/chiculture/radar.js +0 -16
 - package/lib/v2/chiculture/router.js +0 -3
 - package/lib/v2/chiculture/topic.js +0 -61
 - package/lib/v2/china/maintainer.js +0 -4
 - package/lib/v2/china/news/highlights/news.js +0 -40
 - package/lib/v2/china/news/military/news.js +0 -31
 - package/lib/v2/china/radar.js +0 -21
 - package/lib/v2/china/router.js +0 -4
 - package/lib/v2/chinacef/experts.js +0 -38
 - package/lib/v2/chinacef/hot.js +0 -38
 - package/lib/v2/chinacef/index.js +0 -39
 - package/lib/v2/chinacef/maintainer.js +0 -5
 - package/lib/v2/chinacef/radar.js +0 -25
 - package/lib/v2/chinacef/router.js +0 -5
 - package/lib/v2/chinacef/templates/description.art +0 -1
 - package/lib/v2/chinacef/utils.js +0 -55
 - package/lib/v2/chinadegrees/maintainer.js +0 -3
 - package/lib/v2/chinadegrees/province.js +0 -66
 - package/lib/v2/chinadegrees/radar.js +0 -13
 - package/lib/v2/chinadegrees/router.js +0 -3
 - package/lib/v2/chinafactcheck/index.js +0 -38
 - package/lib/v2/chinafactcheck/maintainer.js +0 -3
 - package/lib/v2/chinafactcheck/radar.js +0 -13
 - package/lib/v2/chinafactcheck/router.js +0 -3
 - package/lib/v2/chinafactcheck/templates/description.art +0 -1
 - package/lib/v2/chinafactcheck/utils.js +0 -60
 - package/lib/v2/chinanews/index.js +0 -66
 - package/lib/v2/chinanews/maintainer.js +0 -3
 - package/lib/v2/chinanews/radar.js +0 -13
 - package/lib/v2/chinanews/router.js +0 -3
 - package/lib/v2/chinathinktanks/maintainer.js +0 -3
 - package/lib/v2/chinathinktanks/radar.js +0 -13
 - package/lib/v2/chinathinktanks/router.js +0 -3
 - package/lib/v2/chinathinktanks/viewpoint.js +0 -52
 - package/lib/v2/chinaventure/index.js +0 -63
 - package/lib/v2/chinaventure/maintainer.js +0 -3
 - package/lib/v2/chinaventure/radar.js +0 -13
 - package/lib/v2/chinaventure/router.js +0 -3
 - package/lib/v2/chsi/hotnews.js +0 -56
 - package/lib/v2/chsi/kydt.js +0 -51
 - package/lib/v2/chsi/kyzx.js +0 -51
 - package/lib/v2/chsi/maintainer.js +0 -5
 - package/lib/v2/chsi/radar.js +0 -25
 - package/lib/v2/chsi/router.js +0 -5
 - package/lib/v2/ciidbnu/index.js +0 -57
 - package/lib/v2/ciidbnu/maintainer.js +0 -3
 - package/lib/v2/ciidbnu/radar.js +0 -13
 - package/lib/v2/ciidbnu/router.js +0 -3
 - package/lib/v2/civitai/discussions.js +0 -42
 - package/lib/v2/civitai/maintainer.js +0 -4
 - package/lib/v2/civitai/models.js +0 -26
 - package/lib/v2/civitai/radar.js +0 -19
 - package/lib/v2/civitai/router.js +0 -4
 - package/lib/v2/clash/maintainer.js +0 -3
 - package/lib/v2/clash/premium.js +0 -23
 - package/lib/v2/clash/radar.js +0 -13
 - package/lib/v2/clash/router.js +0 -3
 - package/lib/v2/clickme/index.js +0 -56
 - package/lib/v2/clickme/maintainer.js +0 -3
 - package/lib/v2/clickme/radar.js +0 -21
 - package/lib/v2/clickme/router.js +0 -3
 - package/lib/v2/cloudnative/blog.js +0 -34
 - package/lib/v2/cloudnative/maintainer.js +0 -3
 - package/lib/v2/cloudnative/radar.js +0 -13
 - package/lib/v2/cloudnative/router.js +0 -3
 - package/lib/v2/cls/depth.js +0 -82
 - package/lib/v2/cls/hot.js +0 -45
 - package/lib/v2/cls/maintainer.js +0 -5
 - package/lib/v2/cls/radar.js +0 -25
 - package/lib/v2/cls/router.js +0 -5
 - package/lib/v2/cls/telegraph.js +0 -52
 - package/lib/v2/cls/templates/depth.art +0 -10
 - package/lib/v2/cls/templates/telegraph.art +0 -10
 - package/lib/v2/cls/utils.js +0 -15
 - package/lib/v2/cmde/index.js +0 -72
 - package/lib/v2/cmde/maintainer.js +0 -3
 - package/lib/v2/cmde/radar.js +0 -13
 - package/lib/v2/cmde/router.js +0 -3
 - package/lib/v2/cn-healthcare/index.js +0 -31
 - package/lib/v2/cn-healthcare/maintainer.js +0 -3
 - package/lib/v2/cn-healthcare/radar.js +0 -13
 - package/lib/v2/cn-healthcare/router.js +0 -3
 - package/lib/v2/cnbc/maintainer.js +0 -3
 - package/lib/v2/cnbc/radar.js +0 -21
 - package/lib/v2/cnbc/router.js +0 -3
 - package/lib/v2/cnbc/rss.js +0 -54
 - package/lib/v2/cnbeta/maintainer.js +0 -5
 - package/lib/v2/cnbeta/radar.js +0 -25
 - package/lib/v2/cnbeta/router.js +0 -4
 - package/lib/v2/cnbeta/type.js +0 -36
 - package/lib/v2/cnbeta/utils.js +0 -25
 - package/lib/v2/cnblogs/common.js +0 -30
 - package/lib/v2/cnblogs/maintainer.js +0 -7
 - package/lib/v2/cnblogs/radar.js +0 -37
 - package/lib/v2/cnblogs/router.js +0 -7
 - package/lib/v2/cncf/index.js +0 -43
 - package/lib/v2/cncf/maintainer.js +0 -3
 - package/lib/v2/cncf/radar.js +0 -31
 - package/lib/v2/cncf/reports.js +0 -38
 - package/lib/v2/cncf/router.js +0 -4
 - package/lib/v2/cngal/entry.js +0 -25
 - package/lib/v2/cngal/maintainer.js +0 -4
 - package/lib/v2/cngal/radar.js +0 -19
 - package/lib/v2/cngal/router.js +0 -4
 - package/lib/v2/cngal/weekly.js +0 -20
 - package/lib/v2/cnjxol/index.js +0 -97
 - package/lib/v2/cnjxol/maintainer.js +0 -4
 - package/lib/v2/cnjxol/radar.js +0 -19
 - package/lib/v2/cnjxol/router.js +0 -3
 - package/lib/v2/cnki/author.js +0 -45
 - package/lib/v2/cnki/debut.js +0 -62
 - package/lib/v2/cnki/journals.js +0 -53
 - package/lib/v2/cnki/maintainer.js +0 -5
 - package/lib/v2/cnki/radar.js +0 -27
 - package/lib/v2/cnki/router.js +0 -5
 - package/lib/v2/cnki/utils.js +0 -26
 - package/lib/v2/cntheory/maintainer.js +0 -3
 - package/lib/v2/cntheory/paper.js +0 -89
 - package/lib/v2/cntheory/radar.js +0 -13
 - package/lib/v2/cntheory/router.js +0 -3
 - package/lib/v2/cntheory/templates/description.art +0 -2
 - package/lib/v2/cntv/column.js +0 -29
 - package/lib/v2/cntv/maintainer.js +0 -3
 - package/lib/v2/cntv/radar.js +0 -13
 - package/lib/v2/cntv/router.js +0 -3
 - package/lib/v2/codeforces/contests.js +0 -45
 - package/lib/v2/codeforces/maintainer.js +0 -4
 - package/lib/v2/codeforces/radar.js +0 -21
 - package/lib/v2/codeforces/recent_actions.js +0 -47
 - package/lib/v2/codeforces/router.js +0 -4
 - package/lib/v2/coindesk/index.js +0 -34
 - package/lib/v2/coindesk/maintainer.js +0 -3
 - package/lib/v2/coindesk/radar.js +0 -13
 - package/lib/v2/coindesk/router.js +0 -3
 - package/lib/v2/comicskingdom/index.js +0 -60
 - package/lib/v2/comicskingdom/maintainer.js +0 -3
 - package/lib/v2/comicskingdom/radar.js +0 -13
 - package/lib/v2/comicskingdom/router.js +0 -3
 - package/lib/v2/consumer/index.js +0 -55
 - package/lib/v2/consumer/maintainer.js +0 -3
 - package/lib/v2/consumer/radar.js +0 -13
 - package/lib/v2/consumer/router.js +0 -3
 - package/lib/v2/cool18/index.js +0 -61
 - package/lib/v2/cool18/maintainer.js +0 -3
 - package/lib/v2/cool18/radar.js +0 -13
 - package/lib/v2/cool18/router.js +0 -3
 - package/lib/v2/coolapk/dyh.js +0 -37
 - package/lib/v2/coolapk/hot.js +0 -97
 - package/lib/v2/coolapk/huati.js +0 -24
 - package/lib/v2/coolapk/maintainer.js +0 -9
 - package/lib/v2/coolapk/radar.js +0 -31
 - package/lib/v2/coolapk/router.js +0 -9
 - package/lib/v2/coolapk/toutiao.js +0 -29
 - package/lib/v2/coolapk/tuwen.js +0 -31
 - package/lib/v2/coolapk/userDynamic.js +0 -35
 - package/lib/v2/coolapk/utils.js +0 -150
 - package/lib/v2/coomer/artist.js +0 -9
 - package/lib/v2/coomer/maintainer.js +0 -4
 - package/lib/v2/coomer/posts.js +0 -7
 - package/lib/v2/coomer/radar.js +0 -19
 - package/lib/v2/coomer/router.js +0 -4
 - package/lib/v2/coomer/utils.js +0 -53
 - package/lib/v2/copymanga/comic.js +0 -110
 - package/lib/v2/copymanga/maintainer.js +0 -3
 - package/lib/v2/copymanga/radar.js +0 -19
 - package/lib/v2/copymanga/router.js +0 -3
 - package/lib/v2/copymanga/templates/comic.art +0 -4
 - package/lib/v2/cpcey/index.js +0 -60
 - package/lib/v2/cpcey/maintainer.js +0 -3
 - package/lib/v2/cpcey/radar.js +0 -27
 - package/lib/v2/cpcey/router.js +0 -3
 - package/lib/v2/cpuid/maintainer.js +0 -3
 - package/lib/v2/cpuid/news.js +0 -30
 - package/lib/v2/cpuid/radar.js +0 -13
 - package/lib/v2/cpuid/router.js +0 -3
 - package/lib/v2/cqwu/index.js +0 -46
 - package/lib/v2/cqwu/maintainer.js +0 -3
 - package/lib/v2/cqwu/radar.js +0 -27
 - package/lib/v2/cqwu/router.js +0 -3
 - package/lib/v2/crac/index.js +0 -46
 - package/lib/v2/crac/maintainer.js +0 -3
 - package/lib/v2/crac/radar.js +0 -13
 - package/lib/v2/crac/router.js +0 -3
 - package/lib/v2/creative-comic/book.js +0 -60
 - package/lib/v2/creative-comic/maintainer.js +0 -3
 - package/lib/v2/creative-comic/radar.js +0 -13
 - package/lib/v2/creative-comic/router.js +0 -3
 - package/lib/v2/creative-comic/utils.js +0 -96
 - package/lib/v2/crossbell/feeds/following.js +0 -29
 - package/lib/v2/crossbell/maintainer.js +0 -6
 - package/lib/v2/crossbell/notes/character.js +0 -22
 - package/lib/v2/crossbell/notes/index.js +0 -16
 - package/lib/v2/crossbell/notes/source.js +0 -19
 - package/lib/v2/crossbell/notes/utils.js +0 -18
 - package/lib/v2/crossbell/radar.js +0 -24
 - package/lib/v2/crossbell/router.js +0 -6
 - package/lib/v2/csc/maintainer.js +0 -3
 - package/lib/v2/csc/notice.js +0 -99
 - package/lib/v2/csc/radar.js +0 -31
 - package/lib/v2/csc/router.js +0 -3
 - package/lib/v2/cscse/maintainer.js +0 -3
 - package/lib/v2/cscse/radar.js +0 -13
 - package/lib/v2/cscse/router.js +0 -3
 - package/lib/v2/cscse/tzgg.js +0 -54
 - package/lib/v2/csdn/blog.js +0 -39
 - package/lib/v2/csdn/maintainer.js +0 -3
 - package/lib/v2/csdn/radar.js +0 -13
 - package/lib/v2/csdn/router.js +0 -3
 - package/lib/v2/cste/index.js +0 -56
 - package/lib/v2/cste/maintainer.js +0 -3
 - package/lib/v2/cste/radar.js +0 -13
 - package/lib/v2/cste/router.js +0 -3
 - package/lib/v2/csu/career.js +0 -51
 - package/lib/v2/csu/cse.js +0 -41
 - package/lib/v2/csu/mail.js +0 -47
 - package/lib/v2/csu/maintainer.js +0 -5
 - package/lib/v2/csu/radar.js +0 -29
 - package/lib/v2/csu/router.js +0 -5
 - package/lib/v2/csu/utils.js +0 -17
 - package/lib/v2/cts/maintainer.js +0 -3
 - package/lib/v2/cts/news.js +0 -40
 - package/lib/v2/cts/radar.js +0 -13
 - package/lib/v2/cts/router.js +0 -3
 - package/lib/v2/cuc/maintainer.js +0 -3
 - package/lib/v2/cuc/radar.js +0 -13
 - package/lib/v2/cuc/router.js +0 -3
 - package/lib/v2/cuc/yz.js +0 -33
 - package/lib/v2/curius/links.js +0 -43
 - package/lib/v2/curius/maintainer.js +0 -3
 - package/lib/v2/curius/radar.js +0 -13
 - package/lib/v2/curius/router.js +0 -3
 - package/lib/v2/curius/templates/description.art +0 -16
 - package/lib/v2/cw/author.js +0 -18
 - package/lib/v2/cw/maintainer.js +0 -6
 - package/lib/v2/cw/master.js +0 -18
 - package/lib/v2/cw/radar.js +0 -31
 - package/lib/v2/cw/router.js +0 -6
 - package/lib/v2/cw/sub.js +0 -18
 - package/lib/v2/cw/today.js +0 -18
 - package/lib/v2/cw/utils.js +0 -133
 - package/lib/v2/cztv/daily.js +0 -41
 - package/lib/v2/cztv/maintainer.js +0 -4
 - package/lib/v2/cztv/radar.js +0 -19
 - package/lib/v2/cztv/router.js +0 -4
 - package/lib/v2/cztv/zjxwlb.js +0 -38
 - package/lib/v2/dahecube/index.js +0 -66
 - package/lib/v2/dahecube/maintainer.js +0 -3
 - package/lib/v2/dahecube/radar.js +0 -24
 - package/lib/v2/dahecube/router.js +0 -3
 - package/lib/v2/dahecube/utils.js +0 -47
 - package/lib/v2/dapenti/maintainer.js +0 -4
 - package/lib/v2/dapenti/radar.js +0 -27
 - package/lib/v2/dapenti/router.js +0 -4
 - package/lib/v2/dapenti/subject.js +0 -5
 - package/lib/v2/dapenti/tugua.js +0 -5
 - package/lib/v2/dapenti/utils.js +0 -75
 - package/lib/v2/darwinawards/index.js +0 -56
 - package/lib/v2/darwinawards/maintainer.js +0 -4
 - package/lib/v2/darwinawards/radar.js +0 -13
 - package/lib/v2/darwinawards/router.js +0 -4
 - package/lib/v2/dayanzai/index.js +0 -58
 - package/lib/v2/dayanzai/maintainer.js +0 -3
 - package/lib/v2/dayanzai/radar.js +0 -13
 - package/lib/v2/dayanzai/router.js +0 -3
 - package/lib/v2/dbmv/index.js +0 -64
 - package/lib/v2/dbmv/maintainer.js +0 -3
 - package/lib/v2/dbmv/radar.js +0 -13
 - package/lib/v2/dbmv/router.js +0 -3
 - package/lib/v2/dcard/maintainer.js +0 -4
 - package/lib/v2/dcard/radar.js +0 -31
 - package/lib/v2/dcard/router.js +0 -3
 - package/lib/v2/dcard/section.js +0 -66
 - package/lib/v2/dcard/utils.js +0 -50
 - package/lib/v2/dcfever/maintainer.js +0 -6
 - package/lib/v2/dcfever/news.js +0 -36
 - package/lib/v2/dcfever/radar.js +0 -37
 - package/lib/v2/dcfever/reviews.js +0 -29
 - package/lib/v2/dcfever/router.js +0 -6
 - package/lib/v2/dcfever/trading-search.js +0 -39
 - package/lib/v2/dcfever/trading.js +0 -39
 - package/lib/v2/dcfever/utils.js +0 -78
 - package/lib/v2/ddosi/category.js +0 -42
 - package/lib/v2/ddosi/index.js +0 -41
 - package/lib/v2/ddosi/maintainer.js +0 -4
 - package/lib/v2/ddosi/radar.js +0 -19
 - package/lib/v2/ddosi/router.js +0 -4
 - package/lib/v2/dedao/index.js +0 -46
 - package/lib/v2/dedao/knowledge.js +0 -64
 - package/lib/v2/dedao/list.js +0 -66
 - package/lib/v2/dedao/maintainer.js +0 -8
 - package/lib/v2/dedao/radar.js +0 -50
 - package/lib/v2/dedao/router.js +0 -6
 - package/lib/v2/dedao/user.js +0 -79
 - package/lib/v2/deepmind/blog.js +0 -32
 - package/lib/v2/deepmind/maintainer.js +0 -3
 - package/lib/v2/deepmind/radar.js +0 -13
 - package/lib/v2/deepmind/router.js +0 -3
 - package/lib/v2/dgjyw/index.js +0 -67
 - package/lib/v2/dgjyw/maintainer.js +0 -3
 - package/lib/v2/dgjyw/radar.js +0 -13
 - package/lib/v2/dgjyw/router.js +0 -3
 - package/lib/v2/dhu/jiaowu/news.js +0 -37
 - package/lib/v2/dhu/maintainer.js +0 -4
 - package/lib/v2/dhu/radar.js +0 -17
 - package/lib/v2/dhu/router.js +0 -4
 - package/lib/v2/dhu/xxgk/news.js +0 -32
 - package/lib/v2/diandong/ddh.js +0 -51
 - package/lib/v2/diandong/maintainer.js +0 -4
 - package/lib/v2/diandong/news.js +0 -50
 - package/lib/v2/diandong/radar.js +0 -19
 - package/lib/v2/diandong/router.js +0 -4
 - package/lib/v2/diershoubing/maintainer.js +0 -3
 - package/lib/v2/diershoubing/news.js +0 -50
 - package/lib/v2/diershoubing/radar.js +0 -13
 - package/lib/v2/diershoubing/router.js +0 -3
 - package/lib/v2/discord/channel.js +0 -38
 - package/lib/v2/discord/discord-api.js +0 -61
 - package/lib/v2/discord/maintainer.js +0 -3
 - package/lib/v2/discord/radar.js +0 -13
 - package/lib/v2/discord/router.js +0 -3
 - package/lib/v2/disinfo/maintainer.js +0 -3
 - package/lib/v2/disinfo/publications.js +0 -56
 - package/lib/v2/disinfo/radar.js +0 -13
 - package/lib/v2/disinfo/router.js +0 -3
 - package/lib/v2/disinformationindex/blog.js +0 -48
 - package/lib/v2/disinformationindex/maintainer.js +0 -4
 - package/lib/v2/disinformationindex/radar.js +0 -19
 - package/lib/v2/disinformationindex/research.js +0 -45
 - package/lib/v2/disinformationindex/router.js +0 -4
 - package/lib/v2/disinformationindex/templates/description.art +0 -7
 - package/lib/v2/diskanalyzer/maintainer.js +0 -3
 - package/lib/v2/diskanalyzer/radar.js +0 -13
 - package/lib/v2/diskanalyzer/router.js +0 -3
 - package/lib/v2/diskanalyzer/whats-new.js +0 -49
 - package/lib/v2/distill/index.js +0 -64
 - package/lib/v2/distill/maintainer.js +0 -3
 - package/lib/v2/distill/radar.js +0 -13
 - package/lib/v2/distill/router.js +0 -3
 - package/lib/v2/dlsite/campaign.js +0 -174
 - package/lib/v2/dlsite/ci-en/article.js +0 -64
 - package/lib/v2/dlsite/index.js +0 -5
 - package/lib/v2/dlsite/maintainer.js +0 -6
 - package/lib/v2/dlsite/new.js +0 -108
 - package/lib/v2/dlsite/radar.js +0 -29
 - package/lib/v2/dlsite/router.js +0 -6
 - package/lib/v2/dlsite/utils.js +0 -176
 - package/lib/v2/dmzj/maintainer.js +0 -3
 - package/lib/v2/dmzj/news.js +0 -26
 - package/lib/v2/dmzj/radar.js +0 -67
 - package/lib/v2/dmzj/router.js +0 -3
 - package/lib/v2/dockerhub/build.js +0 -31
 - package/lib/v2/dockerhub/maintainer.js +0 -4
 - package/lib/v2/dockerhub/radar.js +0 -19
 - package/lib/v2/dockerhub/router.js +0 -4
 - package/lib/v2/dockerhub/tag.js +0 -33
 - package/lib/v2/dockerhub/utils.js +0 -10
 - package/lib/v2/docschina/jsweekly.js +0 -114
 - package/lib/v2/docschina/maintainer.js +0 -3
 - package/lib/v2/docschina/radar.js +0 -13
 - package/lib/v2/docschina/router.js +0 -3
 - package/lib/v2/domp4/detail.js +0 -69
 - package/lib/v2/domp4/latest.js +0 -32
 - package/lib/v2/domp4/maintainer.js +0 -4
 - package/lib/v2/domp4/radar.js +0 -25
 - package/lib/v2/domp4/router.js +0 -4
 - package/lib/v2/domp4/utils.js +0 -89
 - package/lib/v2/dongqiudi/maintainer.js +0 -8
 - package/lib/v2/dongqiudi/player_news.js +0 -7
 - package/lib/v2/dongqiudi/radar.js +0 -45
 - package/lib/v2/dongqiudi/result.js +0 -30
 - package/lib/v2/dongqiudi/router.js +0 -8
 - package/lib/v2/dongqiudi/special.js +0 -42
 - package/lib/v2/dongqiudi/team_news.js +0 -7
 - package/lib/v2/dongqiudi/top_news.js +0 -33
 - package/lib/v2/dongqiudi/utils.js +0 -147
 - package/lib/v2/douban/book/rank.js +0 -34
 - package/lib/v2/douban/channel/subject.js +0 -60
 - package/lib/v2/douban/channel/topic.js +0 -63
 - package/lib/v2/douban/commercialpress/latest.js +0 -55
 - package/lib/v2/douban/event/hot.js +0 -30
 - package/lib/v2/douban/maintainer.js +0 -28
 - package/lib/v2/douban/other/bookstore.js +0 -30
 - package/lib/v2/douban/other/celebrity.js +0 -41
 - package/lib/v2/douban/other/classification.js +0 -39
 - package/lib/v2/douban/other/doulist.js +0 -63
 - package/lib/v2/douban/other/explore.js +0 -50
 - package/lib/v2/douban/other/explore_column.js +0 -56
 - package/lib/v2/douban/other/group.js +0 -48
 - package/lib/v2/douban/other/jobs.js +0 -33
 - package/lib/v2/douban/other/later.js +0 -32
 - package/lib/v2/douban/other/latest_book.js +0 -19
 - package/lib/v2/douban/other/latest_music.js +0 -74
 - package/lib/v2/douban/other/list.js +0 -40
 - package/lib/v2/douban/other/playing.js +0 -35
 - package/lib/v2/douban/other/replied.js +0 -86
 - package/lib/v2/douban/other/replies.js +0 -61
 - package/lib/v2/douban/other/topic.js +0 -80
 - package/lib/v2/douban/other/ustop.js +0 -22
 - package/lib/v2/douban/other/weekly_best.js +0 -53
 - package/lib/v2/douban/people/status.js +0 -501
 - package/lib/v2/douban/people/wish.js +0 -71
 - package/lib/v2/douban/radar.js +0 -60
 - package/lib/v2/douban/router.js +0 -28
 - package/lib/v2/douyin/hashtag.js +0 -94
 - package/lib/v2/douyin/live.js +0 -49
 - package/lib/v2/douyin/maintainer.js +0 -5
 - package/lib/v2/douyin/radar.js +0 -27
 - package/lib/v2/douyin/router.js +0 -5
 - package/lib/v2/douyin/templates/embed.art +0 -13
 - package/lib/v2/douyin/user.js +0 -77
 - package/lib/v2/douyin/utils.js +0 -135
 - package/lib/v2/douyu/group.js +0 -45
 - package/lib/v2/douyu/maintainer.js +0 -5
 - package/lib/v2/douyu/post.js +0 -58
 - package/lib/v2/douyu/radar.js +0 -27
 - package/lib/v2/douyu/room.js +0 -34
 - package/lib/v2/douyu/router.js +0 -5
 - package/lib/v2/dtcj/datahero.js +0 -50
 - package/lib/v2/dtcj/datainsight.js +0 -52
 - package/lib/v2/dtcj/maintainer.js +0 -4
 - package/lib/v2/dtcj/radar.js +0 -25
 - package/lib/v2/dtcj/router.js +0 -4
 - package/lib/v2/dushu/fuzhou/index.js +0 -42
 - package/lib/v2/dushu/maintainer.js +0 -3
 - package/lib/v2/dushu/radar.js +0 -24
 - package/lib/v2/dushu/router.js +0 -3
 - package/lib/v2/dut/defaults.js +0 -53
 - package/lib/v2/dut/index.js +0 -82
 - package/lib/v2/dut/maintainer.js +0 -14
 - package/lib/v2/dut/radar.js +0 -109
 - package/lib/v2/dut/router.js +0 -4
 - package/lib/v2/dut/shortcuts.js +0 -77
 - package/lib/v2/dx2025/index.js +0 -51
 - package/lib/v2/dx2025/maintainer.js +0 -3
 - package/lib/v2/dx2025/radar.js +0 -19
 - package/lib/v2/dx2025/router.js +0 -3
 - package/lib/v2/e-hentai/index.js +0 -115
 - package/lib/v2/e-hentai/maintainer.js +0 -5
 - package/lib/v2/e-hentai/radar.js +0 -43
 - package/lib/v2/e-hentai/router.js +0 -3
 - package/lib/v2/eagle/blog.js +0 -51
 - package/lib/v2/eagle/changelog.js +0 -77
 - package/lib/v2/eagle/maintainer.js +0 -4
 - package/lib/v2/eagle/radar.js +0 -101
 - package/lib/v2/eagle/router.js +0 -4
 - package/lib/v2/earthquake/ceic.js +0 -68
 - package/lib/v2/earthquake/index.js +0 -40
 - package/lib/v2/earthquake/maintainer.js +0 -4
 - package/lib/v2/earthquake/radar.js +0 -24
 - package/lib/v2/earthquake/router.js +0 -4
 - package/lib/v2/eastday/24.js +0 -89
 - package/lib/v2/eastday/find.js +0 -49
 - package/lib/v2/eastday/maintainer.js +0 -6
 - package/lib/v2/eastday/portrait.js +0 -47
 - package/lib/v2/eastday/radar.js +0 -35
 - package/lib/v2/eastday/router.js +0 -6
 - package/lib/v2/eastday/sh.js +0 -49
 - package/lib/v2/eastmoney/maintainer.js +0 -4
 - package/lib/v2/eastmoney/radar.js +0 -21
 - package/lib/v2/eastmoney/router.js +0 -4
 - package/lib/v2/eastmoney/search/index.js +0 -55
 - package/lib/v2/eastmoney/ttjj/user.js +0 -65
 - package/lib/v2/ecnu/contest.js +0 -41
 - package/lib/v2/ecnu/maintainer.js +0 -4
 - package/lib/v2/ecnu/radar.js +0 -30
 - package/lib/v2/ecnu/router.js +0 -4
 - package/lib/v2/ecnu/yjs.js +0 -37
 - package/lib/v2/economist/download.js +0 -30
 - package/lib/v2/economist/espresso.js +0 -80
 - package/lib/v2/economist/full.js +0 -44
 - package/lib/v2/economist/global-business-review.js +0 -86
 - package/lib/v2/economist/gre-vocabulary.js +0 -19
 - package/lib/v2/economist/maintainer.js +0 -7
 - package/lib/v2/economist/radar.js +0 -38
 - package/lib/v2/economist/router.js +0 -7
 - package/lib/v2/ecust/e/news.js +0 -44
 - package/lib/v2/ecust/gschool/yjs.js +0 -27
 - package/lib/v2/ecust/maintainer.js +0 -4
 - package/lib/v2/ecust/radar.js +0 -21
 - package/lib/v2/ecust/router.js +0 -4
 - package/lib/v2/ehentai/ehapi.js +0 -221
 - package/lib/v2/ehentai/favorites.js +0 -28
 - package/lib/v2/ehentai/maintainer.js +0 -5
 - package/lib/v2/ehentai/router.js +0 -5
 - package/lib/v2/ehentai/search.js +0 -36
 - package/lib/v2/ehentai/tag.js +0 -24
 - package/lib/v2/elasticsearch-cn/index.js +0 -57
 - package/lib/v2/elasticsearch-cn/maintainer.js +0 -3
 - package/lib/v2/elasticsearch-cn/radar.js +0 -13
 - package/lib/v2/elasticsearch-cn/router.js +0 -3
 - package/lib/v2/eleduck/jobs.js +0 -38
 - package/lib/v2/eleduck/maintainer.js +0 -4
 - package/lib/v2/eleduck/posts.js +0 -41
 - package/lib/v2/eleduck/radar.js +0 -25
 - package/lib/v2/eleduck/router.js +0 -4
 - package/lib/v2/elsevier/issue.js +0 -62
 - package/lib/v2/elsevier/journal.js +0 -72
 - package/lib/v2/elsevier/maintainer.js +0 -4
 - package/lib/v2/elsevier/radar.js +0 -19
 - package/lib/v2/elsevier/router.js +0 -6
 - package/lib/v2/embassy/index.js +0 -60
 - package/lib/v2/embassy/maintainer.js +0 -3
 - package/lib/v2/embassy/radar.js +0 -258
 - package/lib/v2/embassy/router.js +0 -3
 - package/lib/v2/embassy/supportedList.js +0 -257
 - package/lib/v2/ems/apple.js +0 -42
 - package/lib/v2/ems/maintainer.js +0 -4
 - package/lib/v2/ems/news.js +0 -21
 - package/lib/v2/ems/radar.js +0 -19
 - package/lib/v2/ems/router.js +0 -4
 - package/lib/v2/ems/templates/apple.art +0 -6
 - package/lib/v2/epicgames/index.js +0 -80
 - package/lib/v2/epicgames/maintainer.js +0 -3
 - package/lib/v2/epicgames/radar.js +0 -13
 - package/lib/v2/epicgames/router.js +0 -3
 - package/lib/v2/epicgames/templates/description.art +0 -2
 - package/lib/v2/eprice/maintainer.js +0 -3
 - package/lib/v2/eprice/radar.js +0 -24
 - package/lib/v2/eprice/router.js +0 -3
 - package/lib/v2/eprice/rss.js +0 -99
 - package/lib/v2/eventernote/actors.js +0 -103
 - package/lib/v2/eventernote/maintainer.js +0 -3
 - package/lib/v2/eventernote/radar.js +0 -13
 - package/lib/v2/eventernote/router.js +0 -3
 - package/lib/v2/ezone/index.js +0 -70
 - package/lib/v2/ezone/maintainer.js +0 -3
 - package/lib/v2/ezone/radar.js +0 -13
 - package/lib/v2/ezone/router.js +0 -3
 - package/lib/v2/famitsu/category.js +0 -62
 - package/lib/v2/famitsu/maintainer.js +0 -3
 - package/lib/v2/famitsu/radar.js +0 -13
 - package/lib/v2/famitsu/router.js +0 -3
 - package/lib/v2/fantia/maintainer.js +0 -4
 - package/lib/v2/fantia/radar.js +0 -13
 - package/lib/v2/fantia/router.js +0 -4
 - package/lib/v2/fantia/search.js +0 -71
 - package/lib/v2/fantia/user.js +0 -44
 - package/lib/v2/fastbull/express-news.js +0 -33
 - package/lib/v2/fastbull/maintainer.js +0 -5
 - package/lib/v2/fastbull/news.js +0 -57
 - package/lib/v2/fastbull/radar.js +0 -19
 - package/lib/v2/fastbull/router.js +0 -5
 - package/lib/v2/fda/cdrh.js +0 -62
 - package/lib/v2/fda/maintainer.js +0 -3
 - package/lib/v2/fda/radar.js +0 -13
 - package/lib/v2/fda/router.js +0 -3
 - package/lib/v2/feng/forum.js +0 -42
 - package/lib/v2/feng/maintainer.js +0 -3
 - package/lib/v2/feng/radar.js +0 -13
 - package/lib/v2/feng/router.js +0 -3
 - package/lib/v2/feng/utils.js +0 -80
 - package/lib/v2/ff14/ff14_global.js +0 -42
 - package/lib/v2/ff14/ff14_zh.js +0 -43
 - package/lib/v2/ff14/maintainer.js +0 -4
 - package/lib/v2/ff14/radar.js +0 -30
 - package/lib/v2/ff14/router.js +0 -7
 - package/lib/v2/fffdm/maintainer.js +0 -3
 - package/lib/v2/fffdm/manhua/manhua.js +0 -55
 - package/lib/v2/fffdm/radar.js +0 -14
 - package/lib/v2/fffdm/router.js +0 -3
 - package/lib/v2/filmdeepfocus/index.js +0 -58
 - package/lib/v2/filmdeepfocus/maintainer.js +0 -3
 - package/lib/v2/filmdeepfocus/radar.js +0 -13
 - package/lib/v2/filmdeepfocus/router.js +0 -3
 - package/lib/v2/finviz/maintainer.js +0 -4
 - package/lib/v2/finviz/news.js +0 -45
 - package/lib/v2/finviz/quote.js +0 -40
 - package/lib/v2/finviz/radar.js +0 -19
 - package/lib/v2/finviz/router.js +0 -4
 - package/lib/v2/firefox/index.js +0 -74
 - package/lib/v2/firefox/maintainer.js +0 -3
 - package/lib/v2/firefox/radar.js +0 -13
 - package/lib/v2/firefox/router.js +0 -3
 - package/lib/v2/fisher-spb/maintainer.js +0 -3
 - package/lib/v2/fisher-spb/news.js +0 -49
 - package/lib/v2/fisher-spb/radar.js +0 -13
 - package/lib/v2/fisher-spb/router.js +0 -3
 - package/lib/v2/fishshell/index.js +0 -27
 - package/lib/v2/fishshell/maintainer.js +0 -3
 - package/lib/v2/fishshell/radar.js +0 -13
 - package/lib/v2/fishshell/router.js +0 -3
 - package/lib/v2/fjksbm/index.js +0 -53
 - package/lib/v2/fjksbm/maintainer.js +0 -3
 - package/lib/v2/fjksbm/radar.js +0 -13
 - package/lib/v2/fjksbm/router.js +0 -3
 - package/lib/v2/flyert/creditcard.js +0 -86
 - package/lib/v2/flyert/maintainer.js +0 -4
 - package/lib/v2/flyert/preferential.js +0 -48
 - package/lib/v2/flyert/radar.js +0 -19
 - package/lib/v2/flyert/router.js +0 -4
 - package/lib/v2/flyert/utils.js +0 -67
 - package/lib/v2/focustaiwan/index.js +0 -72
 - package/lib/v2/focustaiwan/maintainer.js +0 -3
 - package/lib/v2/focustaiwan/radar.js +0 -13
 - package/lib/v2/focustaiwan/router.js +0 -3
 - package/lib/v2/foresightnews/index.js +0 -85
 - package/lib/v2/foresightnews/maintainer.js +0 -6
 - package/lib/v2/foresightnews/radar.js +0 -31
 - package/lib/v2/foresightnews/router.js +0 -3
 - package/lib/v2/foreverblog/feeds.js +0 -36
 - package/lib/v2/foreverblog/maintainer.js +0 -3
 - package/lib/v2/foreverblog/radar.js +0 -13
 - package/lib/v2/foreverblog/router.js +0 -3
 - package/lib/v2/fortnite/maintainer.js +0 -3
 - package/lib/v2/fortnite/news.js +0 -58
 - package/lib/v2/fortnite/radar.js +0 -16
 - package/lib/v2/fortnite/router.js +0 -3
 - package/lib/v2/fortunechina/index.js +0 -70
 - package/lib/v2/fortunechina/maintainer.js +0 -3
 - package/lib/v2/fortunechina/radar.js +0 -13
 - package/lib/v2/fortunechina/router.js +0 -3
 - package/lib/v2/fosshub/index.js +0 -49
 - package/lib/v2/fosshub/maintainer.js +0 -3
 - package/lib/v2/fosshub/radar.js +0 -13
 - package/lib/v2/fosshub/router.js +0 -3
 - package/lib/v2/freecomputerbooks/index.js +0 -66
 - package/lib/v2/freecomputerbooks/maintainer.js +0 -4
 - package/lib/v2/freecomputerbooks/radar.js +0 -31
 - package/lib/v2/freecomputerbooks/router.js +0 -3
 - package/lib/v2/freewechat/maintainer.js +0 -3
 - package/lib/v2/freewechat/profile.js +0 -61
 - package/lib/v2/freewechat/radar.js +0 -13
 - package/lib/v2/freewechat/router.js +0 -3
 - package/lib/v2/ft/channel.js +0 -9
 - package/lib/v2/ft/maintainer.js +0 -4
 - package/lib/v2/ft/myft.js +0 -44
 - package/lib/v2/ft/radar.js +0 -24
 - package/lib/v2/ft/router.js +0 -4
 - package/lib/v2/ft/utils.js +0 -91
 - package/lib/v2/furstar/archive.js +0 -28
 - package/lib/v2/furstar/artists.js +0 -32
 - package/lib/v2/furstar/index.js +0 -33
 - package/lib/v2/furstar/maintainer.js +0 -5
 - package/lib/v2/furstar/radar.js +0 -25
 - package/lib/v2/furstar/router.js +0 -5
 - package/lib/v2/furstar/utils.js +0 -96
 - package/lib/v2/fx-markets/channel.js +0 -56
 - package/lib/v2/fx-markets/maintainer.js +0 -3
 - package/lib/v2/fx-markets/radar.js +0 -31
 - package/lib/v2/fx-markets/router.js +0 -3
 - package/lib/v2/gameapps/index.js +0 -75
 - package/lib/v2/gameapps/maintainer.js +0 -3
 - package/lib/v2/gameapps/radar.js +0 -13
 - package/lib/v2/gameapps/router.js +0 -3
 - package/lib/v2/gamebase/maintainer.js +0 -3
 - package/lib/v2/gamebase/news.js +0 -74
 - package/lib/v2/gamebase/radar.js +0 -13
 - package/lib/v2/gamebase/router.js +0 -3
 - package/lib/v2/gamer/gnn_index.js +0 -130
 - package/lib/v2/gamer/hot.js +0 -59
 - package/lib/v2/gamer/maintainer.js +0 -4
 - package/lib/v2/gamer/radar.js +0 -29
 - package/lib/v2/gamer/router.js +0 -4
 - package/lib/v2/gamersecret/index.js +0 -60
 - package/lib/v2/gamersecret/maintainer.js +0 -3
 - package/lib/v2/gamersecret/radar.js +0 -31
 - package/lib/v2/gamersecret/router.js +0 -3
 - package/lib/v2/gamme/category.js +0 -50
 - package/lib/v2/gamme/maintainer.js +0 -6
 - package/lib/v2/gamme/radar.js +0 -33
 - package/lib/v2/gamme/router.js +0 -4
 - package/lib/v2/gamme/tag.js +0 -61
 - package/lib/v2/gaze/maintainer.js +0 -3
 - package/lib/v2/gaze/radar.js +0 -13
 - package/lib/v2/gaze/router.js +0 -3
 - package/lib/v2/gaze/templates/update.art +0 -4
 - package/lib/v2/gaze/update.js +0 -27
 - package/lib/v2/gcores/category.js +0 -140
 - package/lib/v2/gcores/maintainer.js +0 -5
 - package/lib/v2/gcores/radar.js +0 -31
 - package/lib/v2/gcores/radio.js +0 -90
 - package/lib/v2/gcores/router.js +0 -5
 - package/lib/v2/gcores/tag.js +0 -130
 - package/lib/v2/gdut/maintainer.js +0 -3
 - package/lib/v2/gdut/news.js +0 -166
 - package/lib/v2/gdut/oa_news.js +0 -214
 - package/lib/v2/gdut/radar.js +0 -13
 - package/lib/v2/gdut/router.js +0 -3
 - package/lib/v2/gelonghui/home.js +0 -31
 - package/lib/v2/gelonghui/hot-article.js +0 -33
 - package/lib/v2/gelonghui/keyword.js +0 -34
 - package/lib/v2/gelonghui/live.js +0 -31
 - package/lib/v2/gelonghui/maintainer.js +0 -6
 - package/lib/v2/gelonghui/radar.js +0 -43
 - package/lib/v2/gelonghui/router.js +0 -8
 - package/lib/v2/gelonghui/subject.js +0 -36
 - package/lib/v2/gelonghui/user.js +0 -33
 - package/lib/v2/gelonghui/utils.js +0 -27
 - package/lib/v2/geocaching/blogs.js +0 -30
 - package/lib/v2/geocaching/maintainer.js +0 -3
 - package/lib/v2/geocaching/radar.js +0 -13
 - package/lib/v2/geocaching/router.js +0 -3
 - package/lib/v2/getdr/index.js +0 -47
 - package/lib/v2/getdr/maintainer.js +0 -3
 - package/lib/v2/getdr/radar.js +0 -13
 - package/lib/v2/getdr/router.js +0 -3
 - package/lib/v2/getitfree/index.js +0 -54
 - package/lib/v2/getitfree/maintainer.js +0 -3
 - package/lib/v2/getitfree/radar.js +0 -13
 - package/lib/v2/getitfree/router.js +0 -3
 - package/lib/v2/gettr/maintainer.js +0 -3
 - package/lib/v2/gettr/radar.js +0 -13
 - package/lib/v2/gettr/router.js +0 -3
 - package/lib/v2/gettr/user.js +0 -56
 - package/lib/v2/gf-cn/maintainer.js +0 -3
 - package/lib/v2/gf-cn/news.js +0 -50
 - package/lib/v2/gf-cn/radar.js +0 -13
 - package/lib/v2/gf-cn/router.js +0 -3
 - package/lib/v2/gihyo/group.js +0 -48
 - package/lib/v2/gihyo/maintainer.js +0 -3
 - package/lib/v2/gihyo/radar.js +0 -13
 - package/lib/v2/gihyo/router.js +0 -3
 - package/lib/v2/gitee/maintainer.js +0 -6
 - package/lib/v2/gitee/radar.js +0 -31
 - package/lib/v2/gitee/repos/commits.js +0 -40
 - package/lib/v2/gitee/repos/events.js +0 -66
 - package/lib/v2/gitee/repos/releases.js +0 -33
 - package/lib/v2/gitee/router.js +0 -6
 - package/lib/v2/gitee/users/events.js +0 -84
 - package/lib/v2/github/branches.js +0 -31
 - package/lib/v2/github/comments.js +0 -127
 - package/lib/v2/github/contributors.js +0 -96
 - package/lib/v2/github/file.js +0 -45
 - package/lib/v2/github/follower.js +0 -50
 - package/lib/v2/github/issue.js +0 -52
 - package/lib/v2/github/maintainer.js +0 -17
 - package/lib/v2/github/notifications.js +0 -47
 - package/lib/v2/github/pulls.js +0 -46
 - package/lib/v2/github/radar.js +0 -91
 - package/lib/v2/github/repos.js +0 -34
 - package/lib/v2/github/router.js +0 -18
 - package/lib/v2/github/search.js +0 -41
 - package/lib/v2/github/star.js +0 -51
 - package/lib/v2/github/starred_repos.js +0 -63
 - package/lib/v2/github/topic.js +0 -25
 - package/lib/v2/github/trending.js +0 -89
 - package/lib/v2/github/wiki.js +0 -32
 - package/lib/v2/gitpod/blog.js +0 -60
 - package/lib/v2/gitpod/changelog.js +0 -35
 - package/lib/v2/gitpod/maintainer.js +0 -4
 - package/lib/v2/gitpod/radar.js +0 -19
 - package/lib/v2/gitpod/router.js +0 -4
 - package/lib/v2/gitpod/utils.js +0 -3
 - package/lib/v2/gocn/jobs.js +0 -23
 - package/lib/v2/gocn/maintainer.js +0 -4
 - package/lib/v2/gocn/radar.js +0 -19
 - package/lib/v2/gocn/router.js +0 -4
 - package/lib/v2/gocn/topics.js +0 -23
 - package/lib/v2/gocn/util.js +0 -17
 - package/lib/v2/good/index.js +0 -53
 - package/lib/v2/good/maintainer.js +0 -3
 - package/lib/v2/good/radar.js +0 -13
 - package/lib/v2/good/router.js +0 -3
 - package/lib/v2/google/album.js +0 -36
 - package/lib/v2/google/citations.js +0 -45
 - package/lib/v2/google/doodles.js +0 -35
 - package/lib/v2/google/fonts.js +0 -43
 - package/lib/v2/google/maintainer.js +0 -10
 - package/lib/v2/google/news.js +0 -66
 - package/lib/v2/google/radar.js +0 -64
 - package/lib/v2/google/router.js +0 -10
 - package/lib/v2/google/scholar.js +0 -45
 - package/lib/v2/google/sites.js +0 -75
 - package/lib/v2/google/sitesRecentChanges.js +0 -51
 - package/lib/v2/gov/anhui/kjt.js +0 -56
 - package/lib/v2/gov/beijing/bphc/index.js +0 -54
 - package/lib/v2/gov/beijing/jw/tzgg.js +0 -58
 - package/lib/v2/gov/beijing/kw/index.js +0 -44
 - package/lib/v2/gov/ccdi/index.js +0 -18
 - package/lib/v2/gov/ccdi/utils.js +0 -94
 - package/lib/v2/gov/cmse/fxrw.js +0 -40
 - package/lib/v2/gov/cmse/index.js +0 -67
 - package/lib/v2/gov/cnnic/index.js +0 -54
 - package/lib/v2/gov/csrc/auditstatus.js +0 -54
 - package/lib/v2/gov/csrc/news.js +0 -69
 - package/lib/v2/gov/customs/list.js +0 -80
 - package/lib/v2/gov/customs/utils.js +0 -21
 - package/lib/v2/gov/dianbai/dianbai.js +0 -18
 - package/lib/v2/gov/gaozhou/gaozhou.js +0 -19
 - package/lib/v2/gov/general/general.js +0 -250
 - package/lib/v2/gov/guangdong/tqyb/sncsyjxh.js +0 -37
 - package/lib/v2/gov/guangdong/tqyb/tfxtq.js +0 -30
 - package/lib/v2/gov/gz/index.js +0 -38
 - package/lib/v2/gov/hebei/czt.js +0 -53
 - package/lib/v2/gov/huazhou/huazhou.js +0 -19
 - package/lib/v2/gov/huizhou/zwgk/index.js +0 -58
 - package/lib/v2/gov/hunan/changsha/major-email.js +0 -52
 - package/lib/v2/gov/immiau/news.js +0 -43
 - package/lib/v2/gov/jinan/healthcommission/medical_exam_notice.js +0 -49
 - package/lib/v2/gov/maintainer.js +0 -81
 - package/lib/v2/gov/maoming/maoming.js +0 -417
 - package/lib/v2/gov/maonan/maonan.js +0 -100
 - package/lib/v2/gov/mee/ywdt.js +0 -80
 - package/lib/v2/gov/mfa/wjdt.js +0 -67
 - package/lib/v2/gov/mgs/mgs.js +0 -19
 - package/lib/v2/gov/miit/wjfb.js +0 -61
 - package/lib/v2/gov/miit/wjgs.js +0 -62
 - package/lib/v2/gov/miit/yjzj.js +0 -59
 - package/lib/v2/gov/miit/zcjd.js +0 -62
 - package/lib/v2/gov/miit/zcwj.js +0 -53
 - package/lib/v2/gov/mmht/mmht.js +0 -19
 - package/lib/v2/gov/moe/moe.js +0 -89
 - package/lib/v2/gov/moe/s78.js +0 -44
 - package/lib/v2/gov/mofcom/article.js +0 -68
 - package/lib/v2/gov/moj/aac/news.js +0 -49
 - package/lib/v2/gov/news/index.js +0 -114
 - package/lib/v2/gov/nifdc/index.js +0 -86
 - package/lib/v2/gov/nmpa/generic.js +0 -83
 - package/lib/v2/gov/nopss/index.js +0 -57
 - package/lib/v2/gov/nrta/news.js +0 -62
 - package/lib/v2/gov/nsfc/index.js +0 -83
 - package/lib/v2/gov/pbc/goutongjiaoliu.js +0 -58
 - package/lib/v2/gov/pbc/gzlw.js +0 -27
 - package/lib/v2/gov/pbc/tradeAnnouncement.js +0 -57
 - package/lib/v2/gov/pbc/utils.js +0 -20
 - package/lib/v2/gov/pbc/zcyj.js +0 -29
 - package/lib/v2/gov/radar.js +0 -1080
 - package/lib/v2/gov/router.js +0 -72
 - package/lib/v2/gov/sasac/generic.js +0 -42
 - package/lib/v2/gov/sdb/sdb.js +0 -19
 - package/lib/v2/gov/shaanxi/kjt.js +0 -55
 - package/lib/v2/gov/shanghai/rsj/ksxm.js +0 -39
 - package/lib/v2/gov/shanghai/wsjkw/yqtb/index.js +0 -33
 - package/lib/v2/gov/shanghai/yjj/index.js +0 -62
 - package/lib/v2/gov/shenzhen/hrss/szksy/index.js +0 -41
 - package/lib/v2/gov/shenzhen/xxgk/zfxxgj.js +0 -72
 - package/lib/v2/gov/shenzhen/zzb/index.js +0 -40
 - package/lib/v2/gov/sichuan/deyang/govpublicinfo.js +0 -92
 - package/lib/v2/gov/sichuan/deyang/mztoday.js +0 -134
 - package/lib/v2/gov/stats/index.js +0 -112
 - package/lib/v2/gov/taiyuan/rsj.js +0 -41
 - package/lib/v2/gov/wuhan/whyw.js +0 -44
 - package/lib/v2/gov/xinyi/xinyi.js +0 -19
 - package/lib/v2/gov/xuzhou/hrss.js +0 -54
 - package/lib/v2/gov/zhengce/govall.js +0 -55
 - package/lib/v2/gov/zhengce/wenjian.js +0 -47
 - package/lib/v2/gov/zhengce/zhengceku.js +0 -22
 - package/lib/v2/gov/zhengce/zuixin.js +0 -39
 - package/lib/v2/gq/maintainer.js +0 -3
 - package/lib/v2/gq/radar.js +0 -13
 - package/lib/v2/gq/router.js +0 -3
 - package/lib/v2/gq/templates/embed-article.art +0 -1
 - package/lib/v2/gq/templates/embed-product.art +0 -4
 - package/lib/v2/gq/templates/img.art +0 -6
 - package/lib/v2/gq/templates/tw.art +0 -3
 - package/lib/v2/gq/templates/videoObject.art +0 -6
 - package/lib/v2/gq/templates/youtube.art +0 -3
 - package/lib/v2/gq/tw/index.js +0 -165
 - package/lib/v2/greasyfork/feedback.js +0 -31
 - package/lib/v2/greasyfork/maintainer.js +0 -5
 - package/lib/v2/greasyfork/radar.js +0 -25
 - package/lib/v2/greasyfork/router.js +0 -5
 - package/lib/v2/greasyfork/scripts.js +0 -39
 - package/lib/v2/greasyfork/versions.js +0 -29
 - package/lib/v2/guancha/headline.js +0 -51
 - package/lib/v2/guancha/index.js +0 -159
 - package/lib/v2/guancha/maintainer.js +0 -7
 - package/lib/v2/guancha/member.js +0 -86
 - package/lib/v2/guancha/personalpage.js +0 -72
 - package/lib/v2/guancha/radar.js +0 -49
 - package/lib/v2/guancha/router.js +0 -7
 - package/lib/v2/guancha/topic.js +0 -56
 - package/lib/v2/guandian/index.js +0 -37
 - package/lib/v2/guandian/maintainer.js +0 -3
 - package/lib/v2/guandian/radar.js +0 -13
 - package/lib/v2/guandian/router.js +0 -3
 - package/lib/v2/guangdiu/cheaps.js +0 -28
 - package/lib/v2/guangdiu/index.js +0 -44
 - package/lib/v2/guangdiu/maintainer.js +0 -5
 - package/lib/v2/guangdiu/radar.js +0 -25
 - package/lib/v2/guangdiu/rank.js +0 -38
 - package/lib/v2/guangdiu/router.js +0 -5
 - package/lib/v2/guanhai/index.js +0 -47
 - package/lib/v2/guanhai/maintainer.js +0 -4
 - package/lib/v2/guanhai/radar.js +0 -13
 - package/lib/v2/guanhai/router.js +0 -3
 - package/lib/v2/guduodata/daily.js +0 -63
 - package/lib/v2/guduodata/maintainer.js +0 -3
 - package/lib/v2/guduodata/radar.js +0 -13
 - package/lib/v2/guduodata/router.js +0 -3
 - package/lib/v2/guggenheim/exhibitions.js +0 -29
 - package/lib/v2/guggenheim/maintainer.js +0 -3
 - package/lib/v2/guggenheim/radar.js +0 -11
 - package/lib/v2/guggenheim/router.js +0 -3
 - package/lib/v2/gumroad/index.js +0 -39
 - package/lib/v2/gumroad/maintainer.js +0 -3
 - package/lib/v2/gumroad/radar.js +0 -17
 - package/lib/v2/gumroad/router.js +0 -3
 - package/lib/v2/guokr/channel.js +0 -47
 - package/lib/v2/guokr/maintainer.js +0 -4
 - package/lib/v2/guokr/radar.js +0 -19
 - package/lib/v2/guokr/router.js +0 -4
 - package/lib/v2/guokr/scientific.js +0 -30
 - package/lib/v2/gxmzu/ai.js +0 -18
 - package/lib/v2/gxmzu/maintainer.js +0 -4
 - package/lib/v2/gxmzu/radar.js +0 -21
 - package/lib/v2/gxmzu/router.js +0 -4
 - package/lib/v2/gxmzu/utils/index.js +0 -55
 - package/lib/v2/gxmzu/yjs.js +0 -18
 - package/lib/v2/gz-cmc/index.js +0 -137
 - package/lib/v2/gz-cmc/maintainer.js +0 -3
 - package/lib/v2/gz-cmc/radar.js +0 -12
 - package/lib/v2/gz-cmc/router.js +0 -3
 - package/lib/v2/gzdaily/app.js +0 -53
 - package/lib/v2/gzdaily/maintainer.js +0 -3
 - package/lib/v2/gzdaily/radar.js +0 -12
 - package/lib/v2/gzdaily/router.js +0 -3
 - package/lib/v2/gzh360/category.js +0 -8
 - package/lib/v2/gzh360/gzh.js +0 -18
 - package/lib/v2/gzh360/maintainer.js +0 -4
 - package/lib/v2/gzh360/radar.js +0 -19
 - package/lib/v2/gzh360/router.js +0 -4
 - package/lib/v2/gzh360/universal.js +0 -53
 - package/lib/v2/gzh360/utils.js +0 -62
 - package/lib/v2/gzhu/maintainer.js +0 -3
 - package/lib/v2/gzhu/radar.js +0 -13
 - package/lib/v2/gzhu/router.js +0 -3
 - package/lib/v2/gzhu/yjs.js +0 -31
 - package/lib/v2/hackernews/index.js +0 -112
 - package/lib/v2/hackernews/maintainer.js +0 -3
 - package/lib/v2/hackernews/radar.js +0 -13
 - package/lib/v2/hackernews/router.js +0 -3
 - package/lib/v2/hackertalk/index.js +0 -23
 - package/lib/v2/hackertalk/maintainer.js +0 -3
 - package/lib/v2/hackertalk/radar.js +0 -13
 - package/lib/v2/hackertalk/router.js +0 -3
 - package/lib/v2/hackmd/maintainer.js +0 -3
 - package/lib/v2/hackmd/profile.js +0 -24
 - package/lib/v2/hackmd/radar.js +0 -13
 - package/lib/v2/hackmd/router.js +0 -3
 - package/lib/v2/hafu/maintainer.js +0 -3
 - package/lib/v2/hafu/news.js +0 -15
 - package/lib/v2/hafu/radar.js +0 -23
 - package/lib/v2/hafu/router.js +0 -3
 - package/lib/v2/hafu/utils.js +0 -205
 - package/lib/v2/hakkatv/maintainer.js +0 -3
 - package/lib/v2/hakkatv/radar.js +0 -13
 - package/lib/v2/hakkatv/router.js +0 -3
 - package/lib/v2/hakkatv/type.js +0 -67
 - package/lib/v2/hameln/chapter.js +0 -59
 - package/lib/v2/hameln/maintainer.js +0 -3
 - package/lib/v2/hameln/radar.js +0 -13
 - package/lib/v2/hameln/router.js +0 -1
 - package/lib/v2/hashnode/blog.js +0 -62
 - package/lib/v2/hashnode/maintainer.js +0 -3
 - package/lib/v2/hashnode/radar.js +0 -13
 - package/lib/v2/hashnode/router.js +0 -3
 - package/lib/v2/hbr/maintainer.js +0 -3
 - package/lib/v2/hbr/radar.js +0 -13
 - package/lib/v2/hbr/router.js +0 -3
 - package/lib/v2/hbr/topic.js +0 -56
 - package/lib/v2/hdu/cs/notice.js +0 -54
 - package/lib/v2/hdu/cs/pg.js +0 -54
 - package/lib/v2/hdu/maintainer.js +0 -4
 - package/lib/v2/hdu/radar.js +0 -19
 - package/lib/v2/hdu/router.js +0 -5
 - package/lib/v2/hellobtc/information.js +0 -51
 - package/lib/v2/hellobtc/kepu.js +0 -64
 - package/lib/v2/hellobtc/maintainer.js +0 -6
 - package/lib/v2/hellobtc/news.js +0 -29
 - package/lib/v2/hellobtc/radar.js +0 -85
 - package/lib/v2/hellobtc/router.js +0 -6
 - package/lib/v2/hellobtc/topic.js +0 -43
 - package/lib/v2/hellogithub/index.js +0 -102
 - package/lib/v2/hellogithub/maintainer.js +0 -9
 - package/lib/v2/hellogithub/radar.js +0 -49
 - package/lib/v2/hellogithub/report.js +0 -56
 - package/lib/v2/hellogithub/router.js +0 -8
 - package/lib/v2/hellogithub/volume.js +0 -50
 - package/lib/v2/hex-rays/index.js +0 -47
 - package/lib/v2/hex-rays/maintainer.js +0 -3
 - package/lib/v2/hex-rays/radar.js +0 -13
 - package/lib/v2/hex-rays/router.js +0 -3
 - package/lib/v2/hit/hitgs.js +0 -46
 - package/lib/v2/hit/jwc.js +0 -60
 - package/lib/v2/hit/maintainer.js +0 -5
 - package/lib/v2/hit/radar.js +0 -29
 - package/lib/v2/hit/router.js +0 -6
 - package/lib/v2/hit/today.js +0 -59
 - package/lib/v2/hitsz/article.js +0 -41
 - package/lib/v2/hitsz/maintainer.js +0 -3
 - package/lib/v2/hitsz/radar.js +0 -13
 - package/lib/v2/hitsz/router.js +0 -3
 - package/lib/v2/hitwh/maintainer.js +0 -3
 - package/lib/v2/hitwh/radar.js +0 -13
 - package/lib/v2/hitwh/router.js +0 -3
 - package/lib/v2/hitwh/today.js +0 -52
 - package/lib/v2/hizu/index.js +0 -76
 - package/lib/v2/hizu/maintainer.js +0 -3
 - package/lib/v2/hizu/radar.js +0 -13
 - package/lib/v2/hizu/router.js +0 -3
 - package/lib/v2/hjedd/article.js +0 -27
 - package/lib/v2/hjedd/hot.js +0 -14
 - package/lib/v2/hjedd/latest.js +0 -14
 - package/lib/v2/hjedd/maintainer.js +0 -10
 - package/lib/v2/hjedd/news.js +0 -14
 - package/lib/v2/hjedd/notice.js +0 -14
 - package/lib/v2/hjedd/original.js +0 -14
 - package/lib/v2/hjedd/radar.js +0 -55
 - package/lib/v2/hjedd/router.js +0 -10
 - package/lib/v2/hjedd/templates/attachment.art +0 -7
 - package/lib/v2/hjedd/top.js +0 -14
 - package/lib/v2/hjedd/utils.js +0 -111
 - package/lib/v2/hk01/channel.js +0 -23
 - package/lib/v2/hk01/hot.js +0 -20
 - package/lib/v2/hk01/issue.js +0 -22
 - package/lib/v2/hk01/latest.js +0 -20
 - package/lib/v2/hk01/maintainer.js +0 -8
 - package/lib/v2/hk01/radar.js +0 -43
 - package/lib/v2/hk01/router.js +0 -8
 - package/lib/v2/hk01/tag.js +0 -22
 - package/lib/v2/hk01/utils.js +0 -43
 - package/lib/v2/hk01/zone.js +0 -23
 - package/lib/v2/hkej/index.js +0 -154
 - package/lib/v2/hkej/maintainer.js +0 -3
 - package/lib/v2/hkej/radar.js +0 -13
 - package/lib/v2/hkej/router.js +0 -3
 - package/lib/v2/hkepc/data.js +0 -62
 - package/lib/v2/hkepc/index.js +0 -97
 - package/lib/v2/hkepc/maintainer.js +0 -3
 - package/lib/v2/hkepc/radar.js +0 -19
 - package/lib/v2/hkepc/router.js +0 -3
 - package/lib/v2/hket/index.js +0 -122
 - package/lib/v2/hket/maintainer.js +0 -3
 - package/lib/v2/hket/radar.js +0 -45
 - package/lib/v2/hket/router.js +0 -3
 - package/lib/v2/hket/templates/description.art +0 -1
 - package/lib/v2/hket/templates/image.art +0 -1
 - package/lib/v2/hkjunkcall/index.js +0 -53
 - package/lib/v2/hkjunkcall/maintainer.js +0 -3
 - package/lib/v2/hkjunkcall/radar.js +0 -13
 - package/lib/v2/hkjunkcall/router.js +0 -3
 - package/lib/v2/hljucm/maintainer.js +0 -3
 - package/lib/v2/hljucm/radar.js +0 -13
 - package/lib/v2/hljucm/router.js +0 -3
 - package/lib/v2/hljucm/yjsy.js +0 -56
 - package/lib/v2/hnrb/index.js +0 -85
 - package/lib/v2/hnrb/maintainer.js +0 -3
 - package/lib/v2/hnrb/radar.js +0 -13
 - package/lib/v2/hnrb/router.js +0 -3
 - package/lib/v2/hongkong/chp.js +0 -103
 - package/lib/v2/hongkong/dh.js +0 -53
 - package/lib/v2/hongkong/maintainer.js +0 -4
 - package/lib/v2/hongkong/radar.js +0 -19
 - package/lib/v2/hongkong/router.js +0 -4
 - package/lib/v2/hotchina/index.js +0 -55
 - package/lib/v2/hotchina/maintainer.js +0 -5
 - package/lib/v2/hotchina/radar.js +0 -25
 - package/lib/v2/hotchina/router.js +0 -3
 - package/lib/v2/hotukdeals/hottest.js +0 -25
 - package/lib/v2/hotukdeals/index.js +0 -34
 - package/lib/v2/hotukdeals/maintainer.js +0 -4
 - package/lib/v2/hotukdeals/radar.js +0 -37
 - package/lib/v2/hotukdeals/router.js +0 -4
 - package/lib/v2/houxu/events.js +0 -37
 - package/lib/v2/houxu/index.js +0 -37
 - package/lib/v2/houxu/lives.js +0 -35
 - package/lib/v2/houxu/maintainer.js +0 -6
 - package/lib/v2/houxu/memory.js +0 -37
 - package/lib/v2/houxu/radar.js +0 -31
 - package/lib/v2/houxu/router.js +0 -8
 - package/lib/v2/hrbeu/gx/card.js +0 -42
 - package/lib/v2/hrbeu/gx/list.js +0 -65
 - package/lib/v2/hrbeu/job/bigemploy.js +0 -25
 - package/lib/v2/hrbeu/job/calendar.js +0 -46
 - package/lib/v2/hrbeu/job/list.js +0 -65
 - package/lib/v2/hrbeu/maintainer.js +0 -9
 - package/lib/v2/hrbeu/radar.js +0 -81
 - package/lib/v2/hrbeu/router.js +0 -10
 - package/lib/v2/hrbeu/uae/list.js +0 -57
 - package/lib/v2/hrbeu/ugs/news.js +0 -98
 - package/lib/v2/hrbeu/yjsy/list.js +0 -57
 - package/lib/v2/hrbust/jwzx.js +0 -36
 - package/lib/v2/hrbust/maintainer.js +0 -3
 - package/lib/v2/hrbust/radar.js +0 -13
 - package/lib/v2/hrbust/router.js +0 -3
 - package/lib/v2/hrbust/templates/description.art +0 -1
 - package/lib/v2/hrbust/utils.js +0 -71
 - package/lib/v2/huangz/index.js +0 -29
 - package/lib/v2/huangz/maintainer.js +0 -3
 - package/lib/v2/huangz/radar.js +0 -13
 - package/lib/v2/huangz/router.js +0 -3
 - package/lib/v2/huanqiu/index.js +0 -72
 - package/lib/v2/huanqiu/maintainer.js +0 -3
 - package/lib/v2/huanqiu/radar.js +0 -13
 - package/lib/v2/huanqiu/router.js +0 -3
 - package/lib/v2/hunanpea/maintainer.js +0 -3
 - package/lib/v2/hunanpea/radar.js +0 -13
 - package/lib/v2/hunanpea/router.js +0 -3
 - package/lib/v2/hunanpea/rsks.js +0 -42
 - package/lib/v2/hupu/all.js +0 -73
 - package/lib/v2/hupu/bbs.js +0 -85
 - package/lib/v2/hupu/index.js +0 -80
 - package/lib/v2/hupu/maintainer.js +0 -7
 - package/lib/v2/hupu/radar.js +0 -35
 - package/lib/v2/hupu/router.js +0 -7
 - package/lib/v2/hust/aia/news.js +0 -26
 - package/lib/v2/hust/aia/notice.js +0 -29
 - package/lib/v2/hust/maintainer.js +0 -7
 - package/lib/v2/hust/radar.js +0 -27
 - package/lib/v2/hust/router.js +0 -7
 - package/lib/v2/hust/yjs.js +0 -27
 - package/lib/v2/huxiu/article.js +0 -33
 - package/lib/v2/huxiu/author.js +0 -36
 - package/lib/v2/huxiu/briefColumn.js +0 -41
 - package/lib/v2/huxiu/collection.js +0 -39
 - package/lib/v2/huxiu/maintainer.js +0 -8
 - package/lib/v2/huxiu/moment.js +0 -39
 - package/lib/v2/huxiu/radar.js +0 -47
 - package/lib/v2/huxiu/router.js +0 -9
 - package/lib/v2/huxiu/search.js +0 -40
 - package/lib/v2/huxiu/tag.js +0 -38
 - package/lib/v2/huxiu/templates/brief.art +0 -22
 - package/lib/v2/huxiu/templates/img.art +0 -3
 - package/lib/v2/huxiu/templates/moment.art +0 -16
 - package/lib/v2/huxiu/templates/video.art +0 -7
 - package/lib/v2/huxiu/utils.js +0 -154
 - package/lib/v2/hyqss/index.js +0 -89
 - package/lib/v2/hyqss/maintainer.js +0 -4
 - package/lib/v2/hyqss/radar.js +0 -22
 - package/lib/v2/hyqss/router.js +0 -3
 - package/lib/v2/icac/maintainer.js +0 -3
 - package/lib/v2/icac/news.js +0 -46
 - package/lib/v2/icac/radar.js +0 -13
 - package/lib/v2/icac/router.js +0 -3
 - package/lib/v2/icac/utils.js +0 -17
 - package/lib/v2/idolypride/maintainer.js +0 -3
 - package/lib/v2/idolypride/news.js +0 -29
 - package/lib/v2/idolypride/radar.js +0 -13
 - package/lib/v2/idolypride/router.js +0 -3
 - package/lib/v2/ieee/earlyaccess.js +0 -77
 - package/lib/v2/ieee/journal.js +0 -78
 - package/lib/v2/ieee/maintainer.js +0 -5
 - package/lib/v2/ieee/radar.js +0 -25
 - package/lib/v2/ieee/recent.js +0 -95
 - package/lib/v2/ieee/router.js +0 -7
 - package/lib/v2/ieee/templates/description.art +0 -11
 - package/lib/v2/ieee-security/maintainer.js +0 -3
 - package/lib/v2/ieee-security/radar.js +0 -13
 - package/lib/v2/ieee-security/router.js +0 -3
 - package/lib/v2/ieee-security/sp.js +0 -36
 - package/lib/v2/ielts/index.js +0 -64
 - package/lib/v2/ielts/maintainer.js +0 -3
 - package/lib/v2/ielts/radar.js +0 -13
 - package/lib/v2/ielts/router.js +0 -3
 - package/lib/v2/ifeng/feng.js +0 -71
 - package/lib/v2/ifeng/maintainer.js +0 -4
 - package/lib/v2/ifeng/news.js +0 -54
 - package/lib/v2/ifeng/radar.js +0 -18
 - package/lib/v2/ifeng/router.js +0 -4
 - package/lib/v2/ifeng/utils.js +0 -28
 - package/lib/v2/ifi-audio/download.js +0 -34
 - package/lib/v2/ifi-audio/maintainer.js +0 -3
 - package/lib/v2/ifi-audio/radar.js +0 -11
 - package/lib/v2/ifi-audio/router.js +0 -3
 - package/lib/v2/iguoguo/index.js +0 -75
 - package/lib/v2/iguoguo/maintainer.js +0 -3
 - package/lib/v2/iguoguo/radar.js +0 -11
 - package/lib/v2/iguoguo/router.js +0 -3
 - package/lib/v2/iiilab/index.js +0 -24
 - package/lib/v2/iiilab/maintainer.js +0 -3
 - package/lib/v2/iiilab/radar.js +0 -13
 - package/lib/v2/iiilab/router.js +0 -3
 - package/lib/v2/ikea/cn/family_offers.js +0 -70
 - package/lib/v2/ikea/cn/low_price.js +0 -22
 - package/lib/v2/ikea/cn/new.js +0 -39
 - package/lib/v2/ikea/cn/utils.js +0 -42
 - package/lib/v2/ikea/gb/new.js +0 -54
 - package/lib/v2/ikea/gb/offer.js +0 -69
 - package/lib/v2/ikea/maintainer.js +0 -7
 - package/lib/v2/ikea/radar.js +0 -42
 - package/lib/v2/ikea/router.js +0 -7
 - package/lib/v2/imagemagick/changelog.js +0 -46
 - package/lib/v2/imagemagick/maintainer.js +0 -3
 - package/lib/v2/imagemagick/radar.js +0 -13
 - package/lib/v2/imagemagick/router.js +0 -3
 - package/lib/v2/independent/maintainer.js +0 -3
 - package/lib/v2/independent/ps5-stock-uk.js +0 -27
 - package/lib/v2/independent/radar.js +0 -13
 - package/lib/v2/independent/router.js +0 -3
 - package/lib/v2/indiansinkuwait/latest.js +0 -43
 - package/lib/v2/indiansinkuwait/maintainer.js +0 -3
 - package/lib/v2/indiansinkuwait/radar.js +0 -13
 - package/lib/v2/indiansinkuwait/router.js +0 -3
 - package/lib/v2/inewsweek/index.js +0 -53
 - package/lib/v2/inewsweek/maintainer.js +0 -3
 - package/lib/v2/inewsweek/radar.js +0 -13
 - package/lib/v2/inewsweek/router.js +0 -3
 - package/lib/v2/infoq/maintainer.js +0 -4
 - package/lib/v2/infoq/radar.js +0 -19
 - package/lib/v2/infoq/recommend.js +0 -25
 - package/lib/v2/infoq/router.js +0 -4
 - package/lib/v2/infoq/topic.js +0 -42
 - package/lib/v2/infoq/utils.js +0 -111
 - package/lib/v2/informs/index.js +0 -74
 - package/lib/v2/informs/maintainer.js +0 -3
 - package/lib/v2/informs/radar.js +0 -109
 - package/lib/v2/informs/router.js +0 -3
 - package/lib/v2/inoreader/index.js +0 -46
 - package/lib/v2/inoreader/maintainer.js +0 -4
 - package/lib/v2/inoreader/radar.js +0 -23
 - package/lib/v2/inoreader/router.js +0 -4
 - package/lib/v2/inoreader/rss.js +0 -47
 - package/lib/v2/instagram/common-utils.js +0 -59
 - package/lib/v2/instagram/maintainer.js +0 -4
 - package/lib/v2/instagram/private-api/index.js +0 -94
 - package/lib/v2/instagram/private-api/utils.js +0 -37
 - package/lib/v2/instagram/radar.js +0 -19
 - package/lib/v2/instagram/router.js +0 -4
 - package/lib/v2/instagram/templates/images.art +0 -5
 - package/lib/v2/instagram/templates/video.art +0 -5
 - package/lib/v2/instagram/web-api/index.js +0 -70
 - package/lib/v2/instagram/web-api/utils.js +0 -99
 - package/lib/v2/instructables/maintainer.js +0 -3
 - package/lib/v2/instructables/projects.js +0 -56
 - package/lib/v2/instructables/radar.js +0 -19
 - package/lib/v2/instructables/router.js +0 -3
 - package/lib/v2/iqiyi/album.js +0 -62
 - package/lib/v2/iqiyi/maintainer.js +0 -4
 - package/lib/v2/iqiyi/radar.js +0 -24
 - package/lib/v2/iqiyi/router.js +0 -4
 - package/lib/v2/iqiyi/video.js +0 -43
 - package/lib/v2/iqnew/latest.js +0 -57
 - package/lib/v2/iqnew/maintainer.js +0 -3
 - package/lib/v2/iqnew/radar.js +0 -13
 - package/lib/v2/iqnew/router.js +0 -3
 - package/lib/v2/iresearch/maintainer.js +0 -4
 - package/lib/v2/iresearch/radar.js +0 -19
 - package/lib/v2/iresearch/report.js +0 -60
 - package/lib/v2/iresearch/router.js +0 -4
 - package/lib/v2/iresearch/weekly.js +0 -39
 - package/lib/v2/islander/maintainer.js +0 -4
 - package/lib/v2/islander/radar.js +0 -19
 - package/lib/v2/islander/router.js +0 -4
 - package/lib/v2/islander/search.js +0 -33
 - package/lib/v2/islander/top30event.js +0 -28
 - package/lib/v2/issuehunt/funded.js +0 -28
 - package/lib/v2/issuehunt/maintainer.js +0 -3
 - package/lib/v2/issuehunt/radar.js +0 -13
 - package/lib/v2/issuehunt/router.js +0 -3
 - package/lib/v2/itch/devlog.js +0 -66
 - package/lib/v2/itch/index.js +0 -56
 - package/lib/v2/itch/maintainer.js +0 -5
 - package/lib/v2/itch/posts.js +0 -41
 - package/lib/v2/itch/radar.js +0 -28
 - package/lib/v2/itch/router.js +0 -5
 - package/lib/v2/ithome/index.js +0 -85
 - package/lib/v2/ithome/maintainer.js +0 -7
 - package/lib/v2/ithome/radar.js +0 -120
 - package/lib/v2/ithome/ranking.js +0 -69
 - package/lib/v2/ithome/router.js +0 -7
 - package/lib/v2/ithome/tag.js +0 -48
 - package/lib/v2/ithome/tw/feeds.js +0 -38
 - package/lib/v2/ithome/zt.js +0 -62
 - package/lib/v2/iwara/index.js +0 -43
 - package/lib/v2/iwara/maintainer.js +0 -4
 - package/lib/v2/iwara/radar.js +0 -25
 - package/lib/v2/iwara/router.js +0 -4
 - package/lib/v2/iwara/subscriptions.js +0 -49
 - package/lib/v2/iwara/templates/subscriptions.art +0 -1
 - package/lib/v2/ixigua/maintainer.js +0 -3
 - package/lib/v2/ixigua/radar.js +0 -13
 - package/lib/v2/ixigua/router.js +0 -3
 - package/lib/v2/ixigua/userVideo.js +0 -40
 - package/lib/v2/jandan/index.js +0 -31
 - package/lib/v2/jandan/maintainer.js +0 -4
 - package/lib/v2/jandan/radar.js +0 -19
 - package/lib/v2/jandan/router.js +0 -4
 - package/lib/v2/jandan/section.js +0 -48
 - package/lib/v2/javbus/index.js +0 -170
 - package/lib/v2/javbus/maintainer.js +0 -37
 - package/lib/v2/javbus/radar.js +0 -149
 - package/lib/v2/javbus/router.js +0 -3
 - package/lib/v2/javdb/actors.js +0 -20
 - package/lib/v2/javdb/index.js +0 -32
 - package/lib/v2/javdb/maintainer.js +0 -10
 - package/lib/v2/javdb/makers.js +0 -21
 - package/lib/v2/javdb/radar.js +0 -49
 - package/lib/v2/javdb/rankings.js +0 -12
 - package/lib/v2/javdb/router.js +0 -10
 - package/lib/v2/javdb/search.js +0 -26
 - package/lib/v2/javdb/series.js +0 -21
 - package/lib/v2/javdb/tags.js +0 -12
 - package/lib/v2/javdb/utils.js +0 -79
 - package/lib/v2/javlibrary/bestrated.js +0 -9
 - package/lib/v2/javlibrary/bestreviews.js +0 -9
 - package/lib/v2/javlibrary/genre.js +0 -10
 - package/lib/v2/javlibrary/maintainer.js +0 -11
 - package/lib/v2/javlibrary/mostwanted.js +0 -9
 - package/lib/v2/javlibrary/newentries.js +0 -8
 - package/lib/v2/javlibrary/newrelease.js +0 -9
 - package/lib/v2/javlibrary/radar.js +0 -79
 - package/lib/v2/javlibrary/router.js +0 -19
 - package/lib/v2/javlibrary/star.js +0 -10
 - package/lib/v2/javlibrary/update.js +0 -8
 - package/lib/v2/javlibrary/user.js +0 -10
 - package/lib/v2/javlibrary/utils.js +0 -98
 - package/lib/v2/jd/maintainer.js +0 -3
 - package/lib/v2/jd/price.js +0 -42
 - package/lib/v2/jd/radar.js +0 -13
 - package/lib/v2/jd/router.js +0 -3
 - package/lib/v2/jewishmuseum/exhibitions.js +0 -16
 - package/lib/v2/jewishmuseum/maintainer.js +0 -3
 - package/lib/v2/jewishmuseum/radar.js +0 -11
 - package/lib/v2/jewishmuseum/router.js +0 -3
 - package/lib/v2/jiaoliudao/index.js +0 -35
 - package/lib/v2/jiaoliudao/maintainer.js +0 -3
 - package/lib/v2/jiaoliudao/radar.js +0 -13
 - package/lib/v2/jiaoliudao/router.js +0 -3
 - package/lib/v2/jiemian/list.js +0 -60
 - package/lib/v2/jiemian/maintainer.js +0 -4
 - package/lib/v2/jiemian/radar.js +0 -19
 - package/lib/v2/jiemian/router.js +0 -4
 - package/lib/v2/jike/maintainer.js +0 -5
 - package/lib/v2/jike/radar.js +0 -34
 - package/lib/v2/jike/router.js +0 -5
 - package/lib/v2/jike/topic.js +0 -42
 - package/lib/v2/jike/topicText.js +0 -21
 - package/lib/v2/jike/user.js +0 -158
 - package/lib/v2/jike/utils.js +0 -197
 - package/lib/v2/jin10/index.js +0 -58
 - package/lib/v2/jin10/maintainer.js +0 -3
 - package/lib/v2/jin10/radar.js +0 -13
 - package/lib/v2/jin10/router.js +0 -3
 - package/lib/v2/jisilu/index.js +0 -90
 - package/lib/v2/jisilu/maintainer.js +0 -3
 - package/lib/v2/jisilu/radar.js +0 -25
 - package/lib/v2/jisilu/router.js +0 -3
 - package/lib/v2/jornada/index.js +0 -59
 - package/lib/v2/jornada/maintainer.js +0 -3
 - package/lib/v2/jornada/radar.js +0 -13
 - package/lib/v2/jornada/router.js +0 -3
 - package/lib/v2/jou/home.js +0 -18
 - package/lib/v2/jou/maintainer.js +0 -4
 - package/lib/v2/jou/radar.js +0 -21
 - package/lib/v2/jou/router.js +0 -6
 - package/lib/v2/jou/utils/index.js +0 -60
 - package/lib/v2/jou/yz.js +0 -18
 - package/lib/v2/jseea/maintainer.js +0 -3
 - package/lib/v2/jseea/news.js +0 -64
 - package/lib/v2/jseea/radar.js +0 -13
 - package/lib/v2/jseea/router.js +0 -3
 - package/lib/v2/juejin/books.js +0 -30
 - package/lib/v2/juejin/category.js +0 -39
 - package/lib/v2/juejin/collection.js +0 -26
 - package/lib/v2/juejin/column.js +0 -31
 - package/lib/v2/juejin/favorites.js +0 -39
 - package/lib/v2/juejin/maintainer.js +0 -13
 - package/lib/v2/juejin/news.js +0 -25
 - package/lib/v2/juejin/pins.js +0 -67
 - package/lib/v2/juejin/posts.js +0 -25
 - package/lib/v2/juejin/radar.js +0 -61
 - package/lib/v2/juejin/router.js +0 -13
 - package/lib/v2/juejin/shares.js +0 -26
 - package/lib/v2/juejin/tag.js +0 -40
 - package/lib/v2/juejin/trending.js +0 -79
 - package/lib/v2/juejin/utils.js +0 -56
 - package/lib/v2/jump/discount.js +0 -120
 - package/lib/v2/jump/maintainer.js +0 -3
 - package/lib/v2/jump/radar.js +0 -13
 - package/lib/v2/jump/router.js +0 -3
 - package/lib/v2/kakuyomu/episode.js +0 -54
 - package/lib/v2/kakuyomu/maintainer.js +0 -3
 - package/lib/v2/kakuyomu/radar.js +0 -13
 - package/lib/v2/kakuyomu/router.js +0 -1
 - package/lib/v2/kbs/maintainer.js +0 -4
 - package/lib/v2/kbs/news.js +0 -67
 - package/lib/v2/kbs/radar.js +0 -19
 - package/lib/v2/kbs/router.js +0 -4
 - package/lib/v2/kbs/today.js +0 -56
 - package/lib/v2/kcna/maintainer.js +0 -3
 - package/lib/v2/kcna/news.js +0 -81
 - package/lib/v2/kcna/radar.js +0 -61
 - package/lib/v2/kcna/router.js +0 -3
 - package/lib/v2/kcna/utils.js +0 -64
 - package/lib/v2/ke/maintainer.js +0 -3
 - package/lib/v2/ke/radar.js +0 -13
 - package/lib/v2/ke/results.js +0 -36
 - package/lib/v2/ke/router.js +0 -3
 - package/lib/v2/keep/maintainer.js +0 -3
 - package/lib/v2/keep/radar.js +0 -13
 - package/lib/v2/keep/router.js +0 -3
 - package/lib/v2/keep/user.js +0 -57
 - package/lib/v2/kemono/index.js +0 -103
 - package/lib/v2/kemono/maintainer.js +0 -4
 - package/lib/v2/kemono/radar.js +0 -13
 - package/lib/v2/kemono/router.js +0 -3
 - package/lib/v2/kimlaw/maintainer.js +0 -3
 - package/lib/v2/kimlaw/radar.js +0 -13
 - package/lib/v2/kimlaw/router.js +0 -3
 - package/lib/v2/kimlaw/thesis.js +0 -44
 - package/lib/v2/knowmedia/index.js +0 -38
 - package/lib/v2/knowmedia/maintainer.js +0 -3
 - package/lib/v2/knowmedia/radar.js +0 -31
 - package/lib/v2/knowmedia/router.js +0 -3
 - package/lib/v2/knowmedia/templates/desc.art +0 -3
 - package/lib/v2/kuaidi100/index.js +0 -47
 - package/lib/v2/kuaidi100/maintainer.js +0 -4
 - package/lib/v2/kuaidi100/radar.js +0 -25
 - package/lib/v2/kuaidi100/router.js +0 -4
 - package/lib/v2/kuaidi100/supported_company.js +0 -16
 - package/lib/v2/kuaidi100/utils.js +0 -258
 - package/lib/v2/kunchengblog/essay.js +0 -50
 - package/lib/v2/kunchengblog/maintainer.js +0 -3
 - package/lib/v2/kunchengblog/radar.js +0 -13
 - package/lib/v2/kunchengblog/router.js +0 -3
 - package/lib/v2/kuwaitlocal/index.js +0 -47
 - package/lib/v2/kuwaitlocal/maintainer.js +0 -4
 - package/lib/v2/kuwaitlocal/radar.js +0 -19
 - package/lib/v2/kuwaitlocal/router.js +0 -3
 - package/lib/v2/kyodonews/index.js +0 -123
 - package/lib/v2/kyodonews/maintainer.js +0 -3
 - package/lib/v2/kyodonews/radar.js +0 -33
 - package/lib/v2/kyodonews/router.js +0 -3
 - package/lib/v2/lang/maintainer.js +0 -3
 - package/lib/v2/lang/radar.js +0 -13
 - package/lib/v2/lang/room.js +0 -40
 - package/lib/v2/lang/router.js +0 -3
 - package/lib/v2/lanqiao/author.js +0 -61
 - package/lib/v2/lanqiao/courses.js +0 -62
 - package/lib/v2/lanqiao/maintainer.js +0 -5
 - package/lib/v2/lanqiao/questions.js +0 -52
 - package/lib/v2/lanqiao/radar.js +0 -25
 - package/lib/v2/lanqiao/router.js +0 -5
 - package/lib/v2/lanqiao/utils.js +0 -12
 - package/lib/v2/laohu8/maintainer.js +0 -3
 - package/lib/v2/laohu8/personal.js +0 -32
 - package/lib/v2/laohu8/radar.js +0 -13
 - package/lib/v2/laohu8/router.js +0 -3
 - package/lib/v2/latepost/index.js +0 -62
 - package/lib/v2/latepost/maintainer.js +0 -3
 - package/lib/v2/latepost/radar.js +0 -13
 - package/lib/v2/latepost/router.js +0 -3
 - package/lib/v2/lativ/index.js +0 -42
 - package/lib/v2/lativ/maintainer.js +0 -3
 - package/lib/v2/lativ/radar.js +0 -13
 - package/lib/v2/lativ/router.js +0 -3
 - package/lib/v2/lativ/templates/detail.art +0 -9
 - package/lib/v2/layer3/maintainer.js +0 -3
 - package/lib/v2/layer3/quests.js +0 -37
 - package/lib/v2/layer3/radar.js +0 -13
 - package/lib/v2/layer3/router.js +0 -3
 - package/lib/v2/layer3/templates/description.art +0 -24
 - package/lib/v2/layoffs/index.js +0 -134
 - package/lib/v2/layoffs/maintainer.js +0 -3
 - package/lib/v2/layoffs/radar.js +0 -13
 - package/lib/v2/layoffs/router.js +0 -3
 - package/lib/v2/learnblockchain/maintainer.js +0 -3
 - package/lib/v2/learnblockchain/posts.js +0 -43
 - package/lib/v2/learnblockchain/radar.js +0 -19
 - package/lib/v2/learnblockchain/router.js +0 -3
 - package/lib/v2/learnku/maintainer.js +0 -3
 - package/lib/v2/learnku/radar.js +0 -13
 - package/lib/v2/learnku/router.js +0 -3
 - package/lib/v2/learnku/topic.js +0 -72
 - package/lib/v2/leetcode/articles.js +0 -80
 - package/lib/v2/leetcode/dailyquestion-cn.js +0 -115
 - package/lib/v2/leetcode/dailyquestion-en.js +0 -116
 - package/lib/v2/leetcode/dailyquestion-solution-cn.js +0 -183
 - package/lib/v2/leetcode/dailyquestion-solution-en.js +0 -213
 - package/lib/v2/leetcode/maintainer.js +0 -6
 - package/lib/v2/leetcode/radar.js +0 -62
 - package/lib/v2/leetcode/router.js +0 -7
 - package/lib/v2/leiphone/index.js +0 -25
 - package/lib/v2/leiphone/maintainer.js +0 -5
 - package/lib/v2/leiphone/newsflash.js +0 -19
 - package/lib/v2/leiphone/radar.js +0 -25
 - package/lib/v2/leiphone/router.js +0 -4
 - package/lib/v2/leiphone/utils.js +0 -41
 - package/lib/v2/lever/index.js +0 -28
 - package/lib/v2/lever/maintainer.js +0 -3
 - package/lib/v2/lever/radar.js +0 -13
 - package/lib/v2/lever/router.js +0 -3
 - package/lib/v2/lfsyd/home.js +0 -42
 - package/lib/v2/lfsyd/maintainer.js +0 -7
 - package/lib/v2/lfsyd/old_home.js +0 -29
 - package/lib/v2/lfsyd/radar.js +0 -39
 - package/lib/v2/lfsyd/router.js +0 -6
 - package/lib/v2/lfsyd/tag.js +0 -64
 - package/lib/v2/lfsyd/user.js +0 -48
 - package/lib/v2/lfsyd/utils.js +0 -103
 - package/lib/v2/lianxh/index.js +0 -61
 - package/lib/v2/lianxh/maintainer.js +0 -3
 - package/lib/v2/lianxh/radar.js +0 -13
 - package/lib/v2/lianxh/router.js +0 -3
 - package/lib/v2/line/maintainer.js +0 -4
 - package/lib/v2/line/publisher.js +0 -53
 - package/lib/v2/line/radar.js +0 -19
 - package/lib/v2/line/router.js +0 -4
 - package/lib/v2/line/today.js +0 -44
 - package/lib/v2/line/utils.js +0 -43
 - package/lib/v2/linkedin/cn/index.js +0 -13
 - package/lib/v2/linkedin/cn/renderer.js +0 -179
 - package/lib/v2/linkedin/cn/utils.js +0 -122
 - package/lib/v2/linkedin/jobs.js +0 -44
 - package/lib/v2/linkedin/maintainer.js +0 -4
 - package/lib/v2/linkedin/models.js +0 -15
 - package/lib/v2/linkedin/radar.js +0 -36
 - package/lib/v2/linkedin/router.js +0 -4
 - package/lib/v2/linkedin/utils.js +0 -121
 - package/lib/v2/linkresearcher/index.js +0 -68
 - package/lib/v2/linkresearcher/maintainer.js +0 -3
 - package/lib/v2/linkresearcher/radar.js +0 -19
 - package/lib/v2/linkresearcher/router.js +0 -3
 - package/lib/v2/linovelib/maintainer.js +0 -3
 - package/lib/v2/linovelib/novel.js +0 -33
 - package/lib/v2/linovelib/radar.js +0 -13
 - package/lib/v2/linovelib/router.js +0 -3
 - package/lib/v2/literotica/category.js +0 -55
 - package/lib/v2/literotica/maintainer.js +0 -4
 - package/lib/v2/literotica/new.js +0 -59
 - package/lib/v2/literotica/radar.js +0 -19
 - package/lib/v2/literotica/router.js +0 -4
 - package/lib/v2/liulinblog/itnews.js +0 -23
 - package/lib/v2/liulinblog/kuaixun.js +0 -17
 - package/lib/v2/liulinblog/maintainer.js +0 -4
 - package/lib/v2/liulinblog/radar.js +0 -33
 - package/lib/v2/liulinblog/router.js +0 -4
 - package/lib/v2/liulinblog/utils.js +0 -42
 - package/lib/v2/lkong/forum.js +0 -55
 - package/lib/v2/lkong/maintainer.js +0 -4
 - package/lib/v2/lkong/query.js +0 -82
 - package/lib/v2/lkong/radar.js +0 -19
 - package/lib/v2/lkong/router.js +0 -4
 - package/lib/v2/lkong/thread.js +0 -57
 - package/lib/v2/lofter/maintainer.js +0 -4
 - package/lib/v2/lofter/radar.js +0 -17
 - package/lib/v2/lofter/router.js +0 -4
 - package/lib/v2/lofter/tag.js +0 -59
 - package/lib/v2/lofter/user.js +0 -61
 - package/lib/v2/logonews/index.js +0 -76
 - package/lib/v2/logonews/maintainer.js +0 -8
 - package/lib/v2/logonews/radar.js +0 -43
 - package/lib/v2/logonews/router.js +0 -5
 - package/lib/v2/loltw/maintainer.js +0 -3
 - package/lib/v2/loltw/news.js +0 -36
 - package/lib/v2/loltw/radar.js +0 -13
 - package/lib/v2/loltw/router.js +0 -3
 - package/lib/v2/lovelive-anime/maintainer.js +0 -5
 - package/lib/v2/lovelive-anime/news.js +0 -56
 - package/lib/v2/lovelive-anime/radar.js +0 -31
 - package/lib/v2/lovelive-anime/router.js +0 -5
 - package/lib/v2/lovelive-anime/schedules.js +0 -56
 - package/lib/v2/lovelive-anime/topics.js +0 -84
 - package/lib/v2/luogu/contest.js +0 -72
 - package/lib/v2/luogu/daily.js +0 -33
 - package/lib/v2/luogu/maintainer.js +0 -6
 - package/lib/v2/luogu/radar.js +0 -31
 - package/lib/v2/luogu/router.js +0 -6
 - package/lib/v2/luogu/userBlog.js +0 -48
 - package/lib/v2/luogu/userFeed.js +0 -30
 - package/lib/v2/lvv2/maintainer.js +0 -4
 - package/lib/v2/lvv2/news.js +0 -75
 - package/lib/v2/lvv2/radar.js +0 -79
 - package/lib/v2/lvv2/router.js +0 -4
 - package/lib/v2/lvv2/top.js +0 -77
 - package/lib/v2/lxixsxa/discography.js +0 -54
 - package/lib/v2/lxixsxa/information.js +0 -48
 - package/lib/v2/lxixsxa/jsonpHelper.js +0 -19
 - package/lib/v2/lxixsxa/maintainer.js +0 -4
 - package/lib/v2/lxixsxa/radar.js +0 -36
 - package/lib/v2/lxixsxa/router.js +0 -4
 - package/lib/v2/macfilos/blog.js +0 -61
 - package/lib/v2/macfilos/maintainer.js +0 -3
 - package/lib/v2/macfilos/radar.js +0 -13
 - package/lib/v2/macfilos/router.js +0 -3
 - package/lib/v2/macmenubar/maintainer.js +0 -3
 - package/lib/v2/macmenubar/radar.js +0 -13
 - package/lib/v2/macmenubar/recently.js +0 -47
 - package/lib/v2/macmenubar/router.js +0 -3
 - package/lib/v2/magazinelib/latest-magazine.js +0 -55
 - package/lib/v2/magazinelib/maintainer.js +0 -3
 - package/lib/v2/magazinelib/radar.js +0 -19
 - package/lib/v2/magazinelib/router.js +0 -3
 - package/lib/v2/mangadex/index.js +0 -73
 - package/lib/v2/mangadex/maintainer.js +0 -3
 - package/lib/v2/mangadex/radar.js +0 -13
 - package/lib/v2/mangadex/router.js +0 -3
 - package/lib/v2/manhuagui/comic.js +0 -114
 - package/lib/v2/manhuagui/maintainer.js +0 -6
 - package/lib/v2/manhuagui/radar.js +0 -33
 - package/lib/v2/manhuagui/router.js +0 -5
 - package/lib/v2/manhuagui/subscribe.js +0 -54
 - package/lib/v2/mcachicago/exhibitions.js +0 -17
 - package/lib/v2/mcachicago/maintainer.js +0 -3
 - package/lib/v2/mcachicago/radar.js +0 -11
 - package/lib/v2/mcachicago/router.js +0 -3
 - package/lib/v2/mckinsey/cn/categoryMap.js +0 -79
 - package/lib/v2/mckinsey/cn/index.js +0 -37
 - package/lib/v2/mckinsey/maintainer.js +0 -3
 - package/lib/v2/mckinsey/radar.js +0 -12
 - package/lib/v2/mckinsey/router.js +0 -3
 - package/lib/v2/mclaren/index.js +0 -96
 - package/lib/v2/mclaren/maintainer.js +0 -3
 - package/lib/v2/mclaren/radar.js +0 -29
 - package/lib/v2/mclaren/router.js +0 -3
 - package/lib/v2/mclaren/templates/desc.art +0 -6
 - package/lib/v2/mdpi/journal.js +0 -65
 - package/lib/v2/mdpi/maintainer.js +0 -3
 - package/lib/v2/mdpi/radar.js +0 -13
 - package/lib/v2/mdpi/router.js +0 -3
 - package/lib/v2/medsci/index.js +0 -67
 - package/lib/v2/medsci/maintainer.js +0 -3
 - package/lib/v2/medsci/radar.js +0 -13
 - package/lib/v2/medsci/router.js +0 -3
 - package/lib/v2/meituclub/latest.js +0 -41
 - package/lib/v2/meituclub/maintainer.js +0 -3
 - package/lib/v2/meituclub/radar.js +0 -13
 - package/lib/v2/meituclub/router.js +0 -3
 - package/lib/v2/meituclub/templates/description.art +0 -1
 - package/lib/v2/meteor/boards.js +0 -11
 - package/lib/v2/meteor/index.js +0 -45
 - package/lib/v2/meteor/maintainer.js +0 -4
 - package/lib/v2/meteor/radar.js +0 -19
 - package/lib/v2/meteor/router.js +0 -4
 - package/lib/v2/meteor/utils.js +0 -90
 - package/lib/v2/metmuseum/exhibitions.js +0 -31
 - package/lib/v2/metmuseum/maintainer.js +0 -3
 - package/lib/v2/metmuseum/radar.js +0 -11
 - package/lib/v2/metmuseum/router.js +0 -3
 - package/lib/v2/mihoyo/bbs.js +0 -63
 - package/lib/v2/mihoyo/maintainer.js +0 -4
 - package/lib/v2/mihoyo/radar.js +0 -50
 - package/lib/v2/mihoyo/router.js +0 -4
 - package/lib/v2/mihoyo/ys/news.js +0 -81
 - package/lib/v2/mindmeister/example.js +0 -44
 - package/lib/v2/mindmeister/maintainer.js +0 -3
 - package/lib/v2/mindmeister/radar.js +0 -13
 - package/lib/v2/mindmeister/router.js +0 -3
 - package/lib/v2/minecraft/maintainer.js +0 -3
 - package/lib/v2/minecraft/radar.js +0 -13
 - package/lib/v2/minecraft/router.js +0 -3
 - package/lib/v2/minecraft/version.js +0 -34
 - package/lib/v2/mingpao/index.js +0 -89
 - package/lib/v2/mingpao/maintainer.js +0 -3
 - package/lib/v2/mingpao/radar.js +0 -36
 - package/lib/v2/mingpao/router.js +0 -3
 - package/lib/v2/mingpao/templates/fancybox.art +0 -7
 - package/lib/v2/miris/blog.js +0 -19
 - package/lib/v2/miris/maintainer.js +0 -3
 - package/lib/v2/miris/radar.js +0 -11
 - package/lib/v2/miris/router.js +0 -3
 - package/lib/v2/mirror/index.js +0 -41
 - package/lib/v2/mirror/maintainer.js +0 -3
 - package/lib/v2/mirror/radar.js +0 -17
 - package/lib/v2/mirror/router.js +0 -3
 - package/lib/v2/misskey/featured-notes.js +0 -29
 - package/lib/v2/misskey/maintainer.js +0 -3
 - package/lib/v2/misskey/radar.js +0 -35
 - package/lib/v2/misskey/router.js +0 -3
 - package/lib/v2/misskey/utils.js +0 -31
 - package/lib/v2/mixcloud/index.js +0 -130
 - package/lib/v2/mixcloud/maintainer.js +0 -3
 - package/lib/v2/mixcloud/queries.js +0 -1520
 - package/lib/v2/mixcloud/radar.js +0 -37
 - package/lib/v2/mixcloud/router.js +0 -3
 - package/lib/v2/mobilism/forums.js +0 -75
 - package/lib/v2/mobilism/maintainer.js +0 -4
 - package/lib/v2/mobilism/portal.js +0 -54
 - package/lib/v2/mobilism/radar.js +0 -23
 - package/lib/v2/mobilism/router.js +0 -4
 - package/lib/v2/modelscope/community.js +0 -55
 - package/lib/v2/modelscope/datasets.js +0 -55
 - package/lib/v2/modelscope/maintainer.js +0 -6
 - package/lib/v2/modelscope/models.js +0 -45
 - package/lib/v2/modelscope/radar.js +0 -33
 - package/lib/v2/modelscope/router.js +0 -6
 - package/lib/v2/modelscope/studios.js +0 -57
 - package/lib/v2/mohw/clarification.js +0 -50
 - package/lib/v2/mohw/maintainer.js +0 -3
 - package/lib/v2/mohw/radar.js +0 -13
 - package/lib/v2/mohw/router.js +0 -3
 - package/lib/v2/mox/index.js +0 -57
 - package/lib/v2/mox/maintainer.js +0 -3
 - package/lib/v2/mox/radar.js +0 -13
 - package/lib/v2/mox/router.js +0 -3
 - package/lib/v2/mpaypass/main.js +0 -69
 - package/lib/v2/mpaypass/maintainer.js +0 -4
 - package/lib/v2/mpaypass/news.js +0 -39
 - package/lib/v2/mpaypass/radar.js +0 -19
 - package/lib/v2/mpaypass/router.js +0 -4
 - package/lib/v2/mrdx/daily.js +0 -79
 - package/lib/v2/mrdx/maintainer.js +0 -3
 - package/lib/v2/mrdx/radar.js +0 -13
 - package/lib/v2/mrdx/router.js +0 -3
 - package/lib/v2/mrdx/utils.js +0 -17
 - package/lib/v2/mtime/maintainer.js +0 -3
 - package/lib/v2/mtime/news.js +0 -52
 - package/lib/v2/mtime/radar.js +0 -13
 - package/lib/v2/mtime/router.js +0 -3
 - package/lib/v2/mvm/index.js +0 -58
 - package/lib/v2/mvm/maintainer.js +0 -3
 - package/lib/v2/mvm/radar.js +0 -13
 - package/lib/v2/mvm/router.js +0 -3
 - package/lib/v2/mydrivers/index.js +0 -110
 - package/lib/v2/mydrivers/maintainer.js +0 -3
 - package/lib/v2/mydrivers/radar.js +0 -13
 - package/lib/v2/mydrivers/router.js +0 -3
 - package/lib/v2/myfigurecollection/activity.js +0 -63
 - package/lib/v2/myfigurecollection/index.js +0 -82
 - package/lib/v2/myfigurecollection/maintainer.js +0 -4
 - package/lib/v2/myfigurecollection/radar.js +0 -44
 - package/lib/v2/myfigurecollection/router.js +0 -4
 - package/lib/v2/mygopen/index.js +0 -29
 - package/lib/v2/mygopen/maintainer.js +0 -3
 - package/lib/v2/mygopen/radar.js +0 -13
 - package/lib/v2/mygopen/router.js +0 -3
 - package/lib/v2/mysql/maintainer.js +0 -3
 - package/lib/v2/mysql/radar.js +0 -13
 - package/lib/v2/mysql/release.js +0 -62
 - package/lib/v2/mysql/router.js +0 -3
 - package/lib/v2/natgeo/dailyphoto.js +0 -32
 - package/lib/v2/natgeo/dailyselection.js +0 -41
 - package/lib/v2/natgeo/maintainer.js +0 -5
 - package/lib/v2/natgeo/natgeo.js +0 -56
 - package/lib/v2/natgeo/radar.js +0 -24
 - package/lib/v2/natgeo/router.js +0 -5
 - package/lib/v2/nature/cover.js +0 -77
 - package/lib/v2/nature/highlight.js +0 -22
 - package/lib/v2/nature/maintainer.js +0 -8
 - package/lib/v2/nature/news-and-comment.js +0 -37
 - package/lib/v2/nature/news.js +0 -30
 - package/lib/v2/nature/radar.js +0 -37
 - package/lib/v2/nature/research.js +0 -39
 - package/lib/v2/nature/router.js +0 -8
 - package/lib/v2/nature/siteindex.js +0 -48
 - package/lib/v2/nature/utils.js +0 -980
 - package/lib/v2/nautil/maintainer.js +0 -3
 - package/lib/v2/nautil/radar.js +0 -13
 - package/lib/v2/nautil/router.js +0 -3
 - package/lib/v2/nautil/topics.js +0 -57
 - package/lib/v2/nbd/article.js +0 -50
 - package/lib/v2/nbd/index.js +0 -52
 - package/lib/v2/nbd/maintainer.js +0 -4
 - package/lib/v2/nbd/radar.js +0 -19
 - package/lib/v2/nbd/router.js +0 -4
 - package/lib/v2/nber/index.js +0 -48
 - package/lib/v2/nber/maintainer.js +0 -4
 - package/lib/v2/nber/radar.js +0 -19
 - package/lib/v2/nber/router.js +0 -4
 - package/lib/v2/ncepu/maintainer.js +0 -3
 - package/lib/v2/ncepu/master/masterinfo.js +0 -78
 - package/lib/v2/ncepu/radar.js +0 -25
 - package/lib/v2/ncepu/router.js +0 -3
 - package/lib/v2/ncwu/maintainer.js +0 -3
 - package/lib/v2/ncwu/notice.js +0 -27
 - package/lib/v2/ncwu/radar.js +0 -13
 - package/lib/v2/ncwu/router.js +0 -3
 - package/lib/v2/ndss-symposium/maintainer.js +0 -3
 - package/lib/v2/ndss-symposium/ndss.js +0 -80
 - package/lib/v2/ndss-symposium/radar.js +0 -13
 - package/lib/v2/ndss-symposium/router.js +0 -3
 - package/lib/v2/neatdownloadmanager/download.js +0 -50
 - package/lib/v2/neatdownloadmanager/maintainer.js +0 -3
 - package/lib/v2/neatdownloadmanager/radar.js +0 -13
 - package/lib/v2/neatdownloadmanager/router.js +0 -3
 - package/lib/v2/neea/index.js +0 -110
 - package/lib/v2/neea/jlpt.js +0 -52
 - package/lib/v2/neea/maintainer.js +0 -4
 - package/lib/v2/neea/radar.js +0 -13
 - package/lib/v2/neea/router.js +0 -4
 - package/lib/v2/neu/bmie.js +0 -94
 - package/lib/v2/neu/maintainer.js +0 -4
 - package/lib/v2/neu/news.js +0 -44
 - package/lib/v2/neu/radar.js +0 -21
 - package/lib/v2/neu/router.js +0 -4
 - package/lib/v2/newmuseum/exhibitions.js +0 -27
 - package/lib/v2/newmuseum/maintainer.js +0 -3
 - package/lib/v2/newmuseum/radar.js +0 -11
 - package/lib/v2/newmuseum/router.js +0 -3
 - package/lib/v2/newrank/douyin.js +0 -63
 - package/lib/v2/newrank/maintainer.js +0 -4
 - package/lib/v2/newrank/radar.js +0 -15
 - package/lib/v2/newrank/router.js +0 -4
 - package/lib/v2/newrank/utils.js +0 -112
 - package/lib/v2/newrank/wechat.js +0 -65
 - package/lib/v2/news/maintainer.js +0 -3
 - package/lib/v2/news/radar.js +0 -13
 - package/lib/v2/news/router.js +0 -3
 - package/lib/v2/news/whxw.js +0 -67
 - package/lib/v2/newsmarket/index.js +0 -63
 - package/lib/v2/newsmarket/maintainer.js +0 -3
 - package/lib/v2/newsmarket/radar.js +0 -13
 - package/lib/v2/newsmarket/router.js +0 -3
 - package/lib/v2/newzmz/index.js +0 -79
 - package/lib/v2/newzmz/maintainer.js +0 -4
 - package/lib/v2/newzmz/radar.js +0 -19
 - package/lib/v2/newzmz/router.js +0 -4
 - package/lib/v2/newzmz/view.js +0 -42
 - package/lib/v2/nextapple/maintainer.js +0 -3
 - package/lib/v2/nextapple/radar.js +0 -13
 - package/lib/v2/nextapple/realtime.js +0 -44
 - package/lib/v2/nextapple/router.js +0 -3
 - package/lib/v2/nga/forum.js +0 -71
 - package/lib/v2/nga/maintainer.js +0 -4
 - package/lib/v2/nga/post.js +0 -127
 - package/lib/v2/nga/radar.js +0 -39
 - package/lib/v2/nga/router.js +0 -4
 - package/lib/v2/ngocn2/index.js +0 -56
 - package/lib/v2/ngocn2/maintainer.js +0 -3
 - package/lib/v2/ngocn2/radar.js +0 -13
 - package/lib/v2/ngocn2/router.js +0 -3
 - package/lib/v2/nhentai/maintainer.js +0 -4
 - package/lib/v2/nhentai/other.js +0 -30
 - package/lib/v2/nhentai/radar.js +0 -19
 - package/lib/v2/nhentai/router.js +0 -4
 - package/lib/v2/nhentai/search.js +0 -23
 - package/lib/v2/nhentai/util.js +0 -146
 - package/lib/v2/nhk/maintainer.js +0 -4
 - package/lib/v2/nhk/news.js +0 -41
 - package/lib/v2/nhk/news_web_easy.js +0 -44
 - package/lib/v2/nhk/radar.js +0 -19
 - package/lib/v2/nhk/router.js +0 -4
 - package/lib/v2/nifd/maintainer.js +0 -3
 - package/lib/v2/nifd/radar.js +0 -117
 - package/lib/v2/nifd/research.js +0 -52
 - package/lib/v2/nifd/router.js +0 -3
 - package/lib/v2/nikkei/asia/index.js +0 -53
 - package/lib/v2/nikkei/cn/index.js +0 -91
 - package/lib/v2/nikkei/index.js +0 -36
 - package/lib/v2/nikkei/maintainer.js +0 -6
 - package/lib/v2/nikkei/news.js +0 -90
 - package/lib/v2/nikkei/radar.js +0 -59
 - package/lib/v2/nikkei/router.js +0 -7
 - package/lib/v2/nintendo/direct.js +0 -31
 - package/lib/v2/nintendo/eshop_cn.js +0 -44
 - package/lib/v2/nintendo/eshop_hk.js +0 -79
 - package/lib/v2/nintendo/eshop_jp.js +0 -34
 - package/lib/v2/nintendo/eshop_us.js +0 -32
 - package/lib/v2/nintendo/maintainer.js +0 -7
 - package/lib/v2/nintendo/news.js +0 -23
 - package/lib/v2/nintendo/news_china.js +0 -35
 - package/lib/v2/nintendo/radar.js +0 -70
 - package/lib/v2/nintendo/router.js +0 -10
 - package/lib/v2/nintendo/system-update.js +0 -38
 - package/lib/v2/nintendo/utils.js +0 -170
 - package/lib/v2/nippon/index.js +0 -31
 - package/lib/v2/nippon/maintainer.js +0 -3
 - package/lib/v2/nippon/radar.js +0 -13
 - package/lib/v2/nippon/router.js +0 -3
 - package/lib/v2/njglyy/maintainer.js +0 -3
 - package/lib/v2/njglyy/radar.js +0 -13
 - package/lib/v2/njglyy/router.js +0 -3
 - package/lib/v2/njglyy/utils/index.js +0 -50
 - package/lib/v2/njglyy/ygbjypx.js +0 -18
 - package/lib/v2/njit/jwc.js +0 -92
 - package/lib/v2/njit/maintainer.js +0 -4
 - package/lib/v2/njit/radar.js +0 -21
 - package/lib/v2/njit/router.js +0 -4
 - package/lib/v2/njit/tzgg.js +0 -74
 - package/lib/v2/njnu/ceai/ceai.js +0 -44
 - package/lib/v2/njnu/ceai/utils.js +0 -55
 - package/lib/v2/njnu/jwc/jwc.js +0 -43
 - package/lib/v2/njnu/jwc/utils.js +0 -59
 - package/lib/v2/njnu/maintainer.js +0 -4
 - package/lib/v2/njnu/radar.js +0 -21
 - package/lib/v2/njnu/router.js +0 -4
 - package/lib/v2/nju/admission.js +0 -41
 - package/lib/v2/nju/dafls.js +0 -39
 - package/lib/v2/nju/exchangesys.js +0 -46
 - package/lib/v2/nju/gra.js +0 -31
 - package/lib/v2/nju/hosptial.js +0 -41
 - package/lib/v2/nju/hqjt.js +0 -39
 - package/lib/v2/nju/itsc.js +0 -46
 - package/lib/v2/nju/jjc.js +0 -42
 - package/lib/v2/nju/jw.js +0 -59
 - package/lib/v2/nju/maintainer.js +0 -15
 - package/lib/v2/nju/radar.js +0 -124
 - package/lib/v2/nju/rczp.js +0 -48
 - package/lib/v2/nju/router.js +0 -15
 - package/lib/v2/nju/scit.js +0 -36
 - package/lib/v2/nju/zbb.js +0 -81
 - package/lib/v2/nju/zcc.js +0 -46
 - package/lib/v2/njucm/grabs.js +0 -18
 - package/lib/v2/njucm/maintainer.js +0 -3
 - package/lib/v2/njucm/radar.js +0 -13
 - package/lib/v2/njucm/router.js +0 -3
 - package/lib/v2/njucm/utils/index.js +0 -47
 - package/lib/v2/njupt/jwc.js +0 -90
 - package/lib/v2/njupt/maintainer.js +0 -3
 - package/lib/v2/njupt/radar.js +0 -20
 - package/lib/v2/njupt/router.js +0 -3
 - package/lib/v2/njust/cwc.js +0 -39
 - package/lib/v2/njust/dgxg.js +0 -40
 - package/lib/v2/njust/eo.js +0 -50
 - package/lib/v2/njust/eoe.js +0 -39
 - package/lib/v2/njust/gs.js +0 -41
 - package/lib/v2/njust/jwc.js +0 -41
 - package/lib/v2/njust/maintainer.js +0 -8
 - package/lib/v2/njust/radar.js +0 -110
 - package/lib/v2/njust/router.js +0 -8
 - package/lib/v2/njust/utils.js +0 -35
 - package/lib/v2/njxzc/home.js +0 -26
 - package/lib/v2/njxzc/lib.js +0 -26
 - package/lib/v2/njxzc/maintainer.js +0 -4
 - package/lib/v2/njxzc/radar.js +0 -21
 - package/lib/v2/njxzc/router.js +0 -6
 - package/lib/v2/njxzc/utils/index.js +0 -48
 - package/lib/v2/nltimes/maintainer.js +0 -3
 - package/lib/v2/nltimes/news.js +0 -89
 - package/lib/v2/nltimes/radar.js +0 -19
 - package/lib/v2/nltimes/router.js +0 -3
 - package/lib/v2/nmbxd1/forum.js +0 -58
 - package/lib/v2/nmbxd1/maintainer.js +0 -3
 - package/lib/v2/nmbxd1/radar.js +0 -13
 - package/lib/v2/nmbxd1/router.js +0 -3
 - package/lib/v2/nmbxd1/templates/description.art +0 -65
 - package/lib/v2/nmtv/column.js +0 -53
 - package/lib/v2/nmtv/maintainer.js +0 -3
 - package/lib/v2/nmtv/radar.js +0 -13
 - package/lib/v2/nmtv/router.js +0 -3
 - package/lib/v2/nodejs/blog.js +0 -60
 - package/lib/v2/nodejs/maintainer.js +0 -3
 - package/lib/v2/nodejs/radar.js +0 -13
 - package/lib/v2/nodejs/router.js +0 -3
 - package/lib/v2/nogizaka46/blog.js +0 -29
 - package/lib/v2/nogizaka46/maintainer.js +0 -4
 - package/lib/v2/nogizaka46/news.js +0 -33
 - package/lib/v2/nogizaka46/radar.js +0 -21
 - package/lib/v2/nogizaka46/router.js +0 -4
 - package/lib/v2/now/maintainer.js +0 -3
 - package/lib/v2/now/news.js +0 -66
 - package/lib/v2/now/radar.js +0 -13
 - package/lib/v2/now/router.js +0 -3
 - package/lib/v2/nowcoder/discuss.js +0 -57
 - package/lib/v2/nowcoder/experience.js +0 -48
 - package/lib/v2/nowcoder/jobcenter.js +0 -57
 - package/lib/v2/nowcoder/maintainer.js +0 -7
 - package/lib/v2/nowcoder/radar.js +0 -40
 - package/lib/v2/nowcoder/recommend.js +0 -20
 - package/lib/v2/nowcoder/router.js +0 -7
 - package/lib/v2/nowcoder/schedule.js +0 -32
 - package/lib/v2/npm/maintainer.js +0 -3
 - package/lib/v2/npm/package.js +0 -45
 - package/lib/v2/npm/radar.js +0 -13
 - package/lib/v2/npm/router.js +0 -3
 - package/lib/v2/ntdtv/channel.js +0 -44
 - package/lib/v2/ntdtv/maintainer.js +0 -3
 - package/lib/v2/ntdtv/radar.js +0 -13
 - package/lib/v2/ntdtv/router.js +0 -3
 - package/lib/v2/nua/dc.js +0 -63
 - package/lib/v2/nua/gra.js +0 -21
 - package/lib/v2/nua/index.js +0 -22
 - package/lib/v2/nua/lib.js +0 -39
 - package/lib/v2/nua/maintainer.js +0 -7
 - package/lib/v2/nua/radar.js +0 -45
 - package/lib/v2/nua/router.js +0 -7
 - package/lib/v2/nua/sxw.js +0 -22
 - package/lib/v2/nua/utils.js +0 -75
 - package/lib/v2/nuaa/college/cae.js +0 -79
 - package/lib/v2/nuaa/college/cs.js +0 -78
 - package/lib/v2/nuaa/jwc/jwc.js +0 -76
 - package/lib/v2/nuaa/maintainer.js +0 -6
 - package/lib/v2/nuaa/radar.js +0 -29
 - package/lib/v2/nuaa/router.js +0 -6
 - package/lib/v2/nuaa/utils/pypasswaf.js +0 -22
 - package/lib/v2/nuaa/yjsy/yjsy.js +0 -74
 - package/lib/v2/nuist/bulletin.js +0 -61
 - package/lib/v2/nuist/cas.js +0 -71
 - package/lib/v2/nuist/jwc.js +0 -43
 - package/lib/v2/nuist/library/lib.js +0 -43
 - package/lib/v2/nuist/maintainer.js +0 -10
 - package/lib/v2/nuist/radar.js +0 -69
 - package/lib/v2/nuist/router.js +0 -10
 - package/lib/v2/nuist/scs.js +0 -49
 - package/lib/v2/nuist/sese.js +0 -45
 - package/lib/v2/nuist/xgc.js +0 -49
 - package/lib/v2/nuist/yjs.js +0 -60
 - package/lib/v2/nyaa/main.js +0 -50
 - package/lib/v2/nyaa/maintainer.js +0 -9
 - package/lib/v2/nyaa/radar.js +0 -47
 - package/lib/v2/nyaa/router.js +0 -9
 - package/lib/v2/nytimes/author.js +0 -43
 - package/lib/v2/nytimes/book.js +0 -71
 - package/lib/v2/nytimes/daily_briefing_chinese.js +0 -67
 - package/lib/v2/nytimes/index.js +0 -110
 - package/lib/v2/nytimes/maintainer.js +0 -6
 - package/lib/v2/nytimes/radar.js +0 -31
 - package/lib/v2/nytimes/router.js +0 -6
 - package/lib/v2/nytimes/utils.js +0 -108
 - package/lib/v2/oceanengine/arithmeticIndex.js +0 -145
 - package/lib/v2/oceanengine/maintainer.js +0 -3
 - package/lib/v2/oceanengine/radar.js +0 -13
 - package/lib/v2/oceanengine/router.js +0 -3
 - package/lib/v2/odaily/activity.js +0 -47
 - package/lib/v2/odaily/maintainer.js +0 -6
 - package/lib/v2/odaily/newsflash.js +0 -26
 - package/lib/v2/odaily/post.js +0 -63
 - package/lib/v2/odaily/radar.js +0 -60
 - package/lib/v2/odaily/router.js +0 -6
 - package/lib/v2/odaily/user.js +0 -53
 - package/lib/v2/odaily/utils.js +0 -3
 - package/lib/v2/oilchem/index.js +0 -66
 - package/lib/v2/oilchem/maintainer.js +0 -3
 - package/lib/v2/oilchem/radar.js +0 -11
 - package/lib/v2/oilchem/router.js +0 -3
 - package/lib/v2/oilchem/routes.js +0 -671
 - package/lib/v2/oncc/index.js +0 -83
 - package/lib/v2/oncc/maintainer.js +0 -4
 - package/lib/v2/oncc/money18.js +0 -115
 - package/lib/v2/oncc/radar.js +0 -45
 - package/lib/v2/oncc/router.js +0 -4
 - package/lib/v2/oo-software/changelog.js +0 -40
 - package/lib/v2/oo-software/maintainer.js +0 -3
 - package/lib/v2/oo-software/radar.js +0 -13
 - package/lib/v2/oo-software/router.js +0 -3
 - package/lib/v2/openai/blog.js +0 -97
 - package/lib/v2/openai/chatgpt.js +0 -98
 - package/lib/v2/openai/maintainer.js +0 -3
 - package/lib/v2/openai/radar.js +0 -27
 - package/lib/v2/openai/router.js +0 -4
 - package/lib/v2/openwrt/maintainer.js +0 -3
 - package/lib/v2/openwrt/radar.js +0 -13
 - package/lib/v2/openwrt/releases.js +0 -25
 - package/lib/v2/openwrt/router.js +0 -3
 - package/lib/v2/orcid/index.js +0 -54
 - package/lib/v2/orcid/maintainer.js +0 -3
 - package/lib/v2/orcid/radar.js +0 -13
 - package/lib/v2/orcid/router.js +0 -3
 - package/lib/v2/oreno3d/get_sec_page_data.js +0 -75
 - package/lib/v2/oreno3d/main.js +0 -157
 - package/lib/v2/oreno3d/maintainer.js +0 -7
 - package/lib/v2/oreno3d/radar.js +0 -52
 - package/lib/v2/oreno3d/router.js +0 -7
 - package/lib/v2/oschina/maintainer.js +0 -6
 - package/lib/v2/oschina/news.js +0 -93
 - package/lib/v2/oschina/radar.js +0 -33
 - package/lib/v2/oschina/router.js +0 -6
 - package/lib/v2/oschina/topic.js +0 -53
 - package/lib/v2/oschina/user.js +0 -50
 - package/lib/v2/oshwhub/explore.js +0 -116
 - package/lib/v2/oshwhub/maintainer.js +0 -3
 - package/lib/v2/oshwhub/radar.js +0 -16
 - package/lib/v2/oshwhub/router.js +0 -3
 - package/lib/v2/ouc/it-postgraduate.js +0 -27
 - package/lib/v2/ouc/it.js +0 -43
 - package/lib/v2/ouc/maintainer.js +0 -5
 - package/lib/v2/ouc/radar.js +0 -27
 - package/lib/v2/ouc/router.js +0 -5
 - package/lib/v2/ouc/yjs.js +0 -27
 - package/lib/v2/oup/index.js +0 -53
 - package/lib/v2/oup/maintainer.js +0 -3
 - package/lib/v2/oup/radar.js +0 -13
 - package/lib/v2/oup/router.js +0 -3
 - package/lib/v2/outagereport/index.js +0 -51
 - package/lib/v2/outagereport/maintainer.js +0 -3
 - package/lib/v2/outagereport/radar.js +0 -13
 - package/lib/v2/outagereport/router.js +0 -3
 - package/lib/v2/panewslab/author.js +0 -48
 - package/lib/v2/panewslab/index.js +0 -63
 - package/lib/v2/panewslab/maintainer.js +0 -8
 - package/lib/v2/panewslab/news.js +0 -28
 - package/lib/v2/panewslab/radar.js +0 -31
 - package/lib/v2/panewslab/router.js +0 -8
 - package/lib/v2/panewslab/topic.js +0 -48
 - package/lib/v2/paradigm/maintainer.js +0 -3
 - package/lib/v2/paradigm/radar.js +0 -13
 - package/lib/v2/paradigm/router.js +0 -3
 - package/lib/v2/paradigm/writing.js +0 -44
 - package/lib/v2/patagonia/maintainer.js +0 -3
 - package/lib/v2/patagonia/new-arrivals.js +0 -61
 - package/lib/v2/patagonia/radar.js +0 -23
 - package/lib/v2/patagonia/router.js +0 -3
 - package/lib/v2/penguin-random-house/articles.js +0 -27
 - package/lib/v2/penguin-random-house/maintainer.js +0 -4
 - package/lib/v2/penguin-random-house/radar.js +0 -19
 - package/lib/v2/penguin-random-house/router.js +0 -4
 - package/lib/v2/penguin-random-house/thereaddown.js +0 -27
 - package/lib/v2/penguin-random-house/utils.js +0 -119
 - package/lib/v2/people/index.js +0 -87
 - package/lib/v2/people/liuyan.js +0 -54
 - package/lib/v2/people/maintainer.js +0 -6
 - package/lib/v2/people/radar.js +0 -21
 - package/lib/v2/people/router.js +0 -6
 - package/lib/v2/people/xjpjh.js +0 -68
 - package/lib/v2/peopo/maintainer.js +0 -3
 - package/lib/v2/peopo/radar.js +0 -13
 - package/lib/v2/peopo/router.js +0 -3
 - package/lib/v2/peopo/topic.js +0 -46
 - package/lib/v2/phoronix/index.js +0 -107
 - package/lib/v2/phoronix/maintainer.js +0 -3
 - package/lib/v2/phoronix/radar.js +0 -13
 - package/lib/v2/phoronix/router.js +0 -3
 - package/lib/v2/pianyuan/app.js +0 -34
 - package/lib/v2/pianyuan/maintainer.js +0 -4
 - package/lib/v2/pianyuan/radar.js +0 -13
 - package/lib/v2/pianyuan/router.js +0 -4
 - package/lib/v2/pianyuan/search.js +0 -45
 - package/lib/v2/pianyuan/utils.js +0 -88
 - package/lib/v2/picnob/maintainer.js +0 -3
 - package/lib/v2/picnob/radar.js +0 -13
 - package/lib/v2/picnob/router.js +0 -3
 - package/lib/v2/picnob/templates/desc.art +0 -13
 - package/lib/v2/picnob/user.js +0 -61
 - package/lib/v2/picuki/maintainer.js +0 -3
 - package/lib/v2/picuki/profile.js +0 -190
 - package/lib/v2/picuki/radar.js +0 -13
 - package/lib/v2/picuki/router.js +0 -3
 - package/lib/v2/picuki/templates/video.art +0 -3
 - package/lib/v2/picuki/utils.js +0 -21
 - package/lib/v2/pikabu/community.js +0 -37
 - package/lib/v2/pikabu/maintainer.js +0 -5
 - package/lib/v2/pikabu/radar.js +0 -25
 - package/lib/v2/pikabu/router.js +0 -4
 - package/lib/v2/pikabu/templates/video.art +0 -8
 - package/lib/v2/pikabu/user.js +0 -46
 - package/lib/v2/pikabu/utils.js +0 -43
 - package/lib/v2/pincong/hot.js +0 -28
 - package/lib/v2/pincong/index.js +0 -34
 - package/lib/v2/pincong/maintainer.js +0 -5
 - package/lib/v2/pincong/radar.js +0 -35
 - package/lib/v2/pincong/router.js +0 -5
 - package/lib/v2/pincong/topic.js +0 -25
 - package/lib/v2/pincong/utils.js +0 -22
 - package/lib/v2/pingwest/maintainer.js +0 -5
 - package/lib/v2/pingwest/radar.js +0 -25
 - package/lib/v2/pingwest/router.js +0 -5
 - package/lib/v2/pingwest/status.js +0 -47
 - package/lib/v2/pingwest/tag.js +0 -43
 - package/lib/v2/pingwest/user.js +0 -59
 - package/lib/v2/pingwest/utils.js +0 -92
 - package/lib/v2/pixabay/maintainer.js +0 -3
 - package/lib/v2/pixabay/radar.js +0 -13
 - package/lib/v2/pixabay/router.js +0 -3
 - package/lib/v2/pixabay/search.js +0 -50
 - package/lib/v2/pixiv/api/getBookmarks.js +0 -23
 - package/lib/v2/pixiv/api/getIllustFollows.js +0 -20
 - package/lib/v2/pixiv/api/getIllusts.js +0 -22
 - package/lib/v2/pixiv/api/getRanking.js +0 -30
 - package/lib/v2/pixiv/api/getUserDetail.js +0 -27
 - package/lib/v2/pixiv/api/searchIllust.js +0 -24
 - package/lib/v2/pixiv/api/searchPopularIllust.js +0 -23
 - package/lib/v2/pixiv/bookmarks.js +0 -40
 - package/lib/v2/pixiv/constants.js +0 -8
 - package/lib/v2/pixiv/illustfollow.js +0 -34
 - package/lib/v2/pixiv/maintainer.js +0 -8
 - package/lib/v2/pixiv/novels.js +0 -44
 - package/lib/v2/pixiv/pixiv-got.js +0 -65
 - package/lib/v2/pixiv/radar.js +0 -43
 - package/lib/v2/pixiv/ranking.js +0 -92
 - package/lib/v2/pixiv/router.js +0 -8
 - package/lib/v2/pixiv/search.js +0 -51
 - package/lib/v2/pixiv/token.js +0 -86
 - package/lib/v2/pixiv/user.js +0 -38
 - package/lib/v2/pixiv/utils.js +0 -17
 - package/lib/v2/piyao/jrpy.js +0 -39
 - package/lib/v2/piyao/maintainer.js +0 -3
 - package/lib/v2/piyao/radar.js +0 -13
 - package/lib/v2/piyao/router.js +0 -3
 - package/lib/v2/pku/bbs/hot.js +0 -56
 - package/lib/v2/pku/cls/lecture.js +0 -25
 - package/lib/v2/pku/eecs.js +0 -64
 - package/lib/v2/pku/hr.js +0 -54
 - package/lib/v2/pku/maintainer.js +0 -13
 - package/lib/v2/pku/nsd.js +0 -69
 - package/lib/v2/pku/pkuyjs.js +0 -29
 - package/lib/v2/pku/radar.js +0 -150
 - package/lib/v2/pku/rccp/mzyt.js +0 -23
 - package/lib/v2/pku/router.js +0 -13
 - package/lib/v2/pku/scc/recruit.js +0 -58
 - package/lib/v2/pku/ss/admission.js +0 -15
 - package/lib/v2/pku/ss/common.js +0 -37
 - package/lib/v2/pku/ss/notice.js +0 -15
 - package/lib/v2/pku/ss/pg_admin.js +0 -15
 - package/lib/v2/pku/utils.js +0 -15
 - package/lib/v2/playno1/av.js +0 -41
 - package/lib/v2/playno1/maintainer.js +0 -4
 - package/lib/v2/playno1/radar.js +0 -21
 - package/lib/v2/playno1/router.js +0 -4
 - package/lib/v2/playno1/st.js +0 -36
 - package/lib/v2/playno1/utils.js +0 -32
 - package/lib/v2/plurk/anonymous.js +0 -23
 - package/lib/v2/plurk/hotlinks.js +0 -20
 - package/lib/v2/plurk/maintainer.js +0 -9
 - package/lib/v2/plurk/news.js +0 -23
 - package/lib/v2/plurk/radar.js +0 -56
 - package/lib/v2/plurk/router.js +0 -9
 - package/lib/v2/plurk/search.js +0 -27
 - package/lib/v2/plurk/top.js +0 -29
 - package/lib/v2/plurk/topic.js +0 -33
 - package/lib/v2/plurk/user.js +0 -31
 - package/lib/v2/plurk/utils.js +0 -56
 - package/lib/v2/pmthinking/index.js +0 -61
 - package/lib/v2/pmthinking/maintainer.js +0 -3
 - package/lib/v2/pmthinking/radar.js +0 -13
 - package/lib/v2/pmthinking/router.js +0 -3
 - package/lib/v2/pnas/index.js +0 -101
 - package/lib/v2/pnas/maintainer.js +0 -3
 - package/lib/v2/pnas/radar.js +0 -13
 - package/lib/v2/pnas/router.js +0 -3
 - package/lib/v2/polkadot/home.js +0 -34
 - package/lib/v2/polkadot/maintainer.js +0 -3
 - package/lib/v2/polkadot/radar.js +0 -13
 - package/lib/v2/polkadot/router.js +0 -3
 - package/lib/v2/polkaworld/home.js +0 -24
 - package/lib/v2/polkaworld/maintainer.js +0 -3
 - package/lib/v2/polkaworld/radar.js +0 -13
 - package/lib/v2/polkaworld/router.js +0 -3
 - package/lib/v2/postman/maintainer.js +0 -3
 - package/lib/v2/postman/radar.js +0 -13
 - package/lib/v2/postman/release-notes.js +0 -27
 - package/lib/v2/postman/router.js +0 -3
 - package/lib/v2/prestige-av/maintainer.js +0 -3
 - package/lib/v2/prestige-av/radar.js +0 -18
 - package/lib/v2/prestige-av/router.js +0 -3
 - package/lib/v2/prestige-av/series.js +0 -42
 - package/lib/v2/producthunt/maintainer.js +0 -3
 - package/lib/v2/producthunt/radar.js +0 -13
 - package/lib/v2/producthunt/router.js +0 -3
 - package/lib/v2/producthunt/today.js +0 -44
 - package/lib/v2/pts/curations.js +0 -44
 - package/lib/v2/pts/index.js +0 -68
 - package/lib/v2/pts/live.js +0 -49
 - package/lib/v2/pts/maintainer.js +0 -10
 - package/lib/v2/pts/projects.js +0 -44
 - package/lib/v2/pts/radar.js +0 -55
 - package/lib/v2/pts/router.js +0 -7
 - package/lib/v2/pubmed/maintainer.js +0 -3
 - package/lib/v2/pubmed/radar.js +0 -13
 - package/lib/v2/pubmed/router.js +0 -3
 - package/lib/v2/pubmed/trending.js +0 -58
 - package/lib/v2/putty/changes.js +0 -36
 - package/lib/v2/putty/maintainer.js +0 -3
 - package/lib/v2/putty/radar.js +0 -13
 - package/lib/v2/putty/router.js +0 -3
 - package/lib/v2/qbittorrent/maintainer.js +0 -3
 - package/lib/v2/qbittorrent/news.js +0 -59
 - package/lib/v2/qbittorrent/radar.js +0 -13
 - package/lib/v2/qbittorrent/router.js +0 -3
 - package/lib/v2/qdaily/index.js +0 -87
 - package/lib/v2/qdaily/maintainer.js +0 -3
 - package/lib/v2/qdaily/radar.js +0 -25
 - package/lib/v2/qdaily/router.js +0 -3
 - package/lib/v2/qdaily/templates/article.art +0 -5
 - package/lib/v2/qdu/jwc.js +0 -58
 - package/lib/v2/qdu/maintainer.js +0 -3
 - package/lib/v2/qdu/radar.js +0 -13
 - package/lib/v2/qdu/router.js +0 -3
 - package/lib/v2/qianp/maintainer.js +0 -3
 - package/lib/v2/qianp/news.js +0 -48
 - package/lib/v2/qianp/radar.js +0 -13
 - package/lib/v2/qianp/router.js +0 -3
 - package/lib/v2/qianzhan/column.js +0 -50
 - package/lib/v2/qianzhan/maintainer.js +0 -4
 - package/lib/v2/qianzhan/radar.js +0 -26
 - package/lib/v2/qianzhan/rank.js +0 -40
 - package/lib/v2/qianzhan/router.js +0 -4
 - package/lib/v2/qidian/author.js +0 -41
 - package/lib/v2/qidian/chapter.js +0 -37
 - package/lib/v2/qidian/forum.js +0 -39
 - package/lib/v2/qidian/free-next.js +0 -42
 - package/lib/v2/qidian/free.js +0 -45
 - package/lib/v2/qidian/maintainer.js +0 -7
 - package/lib/v2/qidian/radar.js +0 -41
 - package/lib/v2/qidian/router.js +0 -7
 - package/lib/v2/qidiantu/index.js +0 -87
 - package/lib/v2/qidiantu/maintainer.js +0 -4
 - package/lib/v2/qidiantu/radar.js +0 -19
 - package/lib/v2/qidiantu/router.js +0 -3
 - package/lib/v2/qingting/channel.js +0 -32
 - package/lib/v2/qingting/maintainer.js +0 -4
 - package/lib/v2/qingting/podcast.js +0 -77
 - package/lib/v2/qingting/radar.js +0 -19
 - package/lib/v2/qingting/router.js +0 -4
 - package/lib/v2/qipamaijia/index.js +0 -32
 - package/lib/v2/qipamaijia/maintainer.js +0 -3
 - package/lib/v2/qipamaijia/radar.js +0 -13
 - package/lib/v2/qipamaijia/router.js +0 -3
 - package/lib/v2/qiyoujiage/maintainer.js +0 -3
 - package/lib/v2/qiyoujiage/price.js +0 -28
 - package/lib/v2/qiyoujiage/radar.js +0 -13
 - package/lib/v2/qiyoujiage/router.js +0 -3
 - package/lib/v2/qlu/maintainer.js +0 -3
 - package/lib/v2/qlu/notice.js +0 -54
 - package/lib/v2/qlu/radar.js +0 -13
 - package/lib/v2/qlu/router.js +0 -3
 - package/lib/v2/qm120/maintainer.js +0 -3
 - package/lib/v2/qm120/news.js +0 -50
 - package/lib/v2/qm120/radar.js +0 -13
 - package/lib/v2/qm120/router.js +0 -3
 - package/lib/v2/qoo-app/apps/card.js +0 -38
 - package/lib/v2/qoo-app/apps/comment.js +0 -43
 - package/lib/v2/qoo-app/apps/note.js +0 -47
 - package/lib/v2/qoo-app/apps/post.js +0 -51
 - package/lib/v2/qoo-app/maintainer.js +0 -11
 - package/lib/v2/qoo-app/news.js +0 -41
 - package/lib/v2/qoo-app/notes/note.js +0 -43
 - package/lib/v2/qoo-app/notes/topic.js +0 -20
 - package/lib/v2/qoo-app/notes/user.js +0 -20
 - package/lib/v2/qoo-app/radar.js +0 -73
 - package/lib/v2/qoo-app/router.js +0 -11
 - package/lib/v2/qoo-app/user/appComment.js +0 -41
 - package/lib/v2/qoo-app/utils.js +0 -57
 - package/lib/v2/qq/ac/comic.js +0 -43
 - package/lib/v2/qq/ac/rank.js +0 -20
 - package/lib/v2/qq/ac/utils.js +0 -71
 - package/lib/v2/qq/fact/index.js +0 -61
 - package/lib/v2/qq/kg/cache.js +0 -28
 - package/lib/v2/qq/kg/reply.js +0 -21
 - package/lib/v2/qq/kg/user.js +0 -50
 - package/lib/v2/qq/live.js +0 -36
 - package/lib/v2/qq/maintainer.js +0 -8
 - package/lib/v2/qq/radar.js +0 -49
 - package/lib/v2/qq/router.js +0 -8
 - package/lib/v2/qq88/index.js +0 -60
 - package/lib/v2/qq88/maintainer.js +0 -3
 - package/lib/v2/qq88/radar.js +0 -13
 - package/lib/v2/qq88/router.js +0 -3
 - package/lib/v2/quicker/maintainer.js +0 -7
 - package/lib/v2/quicker/qa.js +0 -65
 - package/lib/v2/quicker/radar.js +0 -31
 - package/lib/v2/quicker/router.js +0 -7
 - package/lib/v2/quicker/share.js +0 -61
 - package/lib/v2/quicker/user.js +0 -62
 - package/lib/v2/quicker/versions.js +0 -36
 - package/lib/v2/qweather/3days.js +0 -46
 - package/lib/v2/qweather/maintainer.js +0 -4
 - package/lib/v2/qweather/now.js +0 -45
 - package/lib/v2/qweather/radar.js +0 -15
 - package/lib/v2/qweather/router.js +0 -4
 - package/lib/v2/qweather/templates/3days.art +0 -20
 - package/lib/v2/radio/album.js +0 -106
 - package/lib/v2/radio/index.js +0 -55
 - package/lib/v2/radio/maintainer.js +0 -5
 - package/lib/v2/radio/radar.js +0 -25
 - package/lib/v2/radio/router.js +0 -5
 - package/lib/v2/radio/zhibo.js +0 -73
 - package/lib/v2/radio-canada/latest.js +0 -43
 - package/lib/v2/radio-canada/maintainer.js +0 -3
 - package/lib/v2/radio-canada/radar.js +0 -13
 - package/lib/v2/radio-canada/router.js +0 -3
 - package/lib/v2/rarehistoricalphotos/index.js +0 -28
 - package/lib/v2/rarehistoricalphotos/maintainer.js +0 -3
 - package/lib/v2/rarehistoricalphotos/radar.js +0 -13
 - package/lib/v2/rarehistoricalphotos/router.js +0 -3
 - package/lib/v2/reactnewsletter/maintainer.js +0 -4
 - package/lib/v2/reactnewsletter/radar.js +0 -13
 - package/lib/v2/reactnewsletter/reactnewsletter.js +0 -25
 - package/lib/v2/reactnewsletter/router.js +0 -3
 - package/lib/v2/readhub/index.js +0 -106
 - package/lib/v2/readhub/maintainer.js +0 -3
 - package/lib/v2/readhub/radar.js +0 -13
 - package/lib/v2/readhub/router.js +0 -6
 - package/lib/v2/remnote/changelog.js +0 -33
 - package/lib/v2/remnote/maintainer.js +0 -3
 - package/lib/v2/remnote/radar.js +0 -13
 - package/lib/v2/remnote/router.js +0 -3
 - package/lib/v2/researchgate/maintainer.js +0 -3
 - package/lib/v2/researchgate/publications.js +0 -70
 - package/lib/v2/researchgate/radar.js +0 -13
 - package/lib/v2/researchgate/router.js +0 -3
 - package/lib/v2/reuters/common.js +0 -67
 - package/lib/v2/reuters/investigates.js +0 -39
 - package/lib/v2/reuters/maintainer.js +0 -6
 - package/lib/v2/reuters/migration_prompt.js +0 -3
 - package/lib/v2/reuters/radar.js +0 -19
 - package/lib/v2/reuters/router.js +0 -6
 - package/lib/v2/reuters/templates/description.art +0 -44
 - package/lib/v2/rfa/index.js +0 -51
 - package/lib/v2/rfa/maintainer.js +0 -3
 - package/lib/v2/rfa/radar.js +0 -13
 - package/lib/v2/rfa/router.js +0 -3
 - package/lib/v2/rfi/maintainer.js +0 -3
 - package/lib/v2/rfi/news.js +0 -49
 - package/lib/v2/rfi/radar.js +0 -13
 - package/lib/v2/rfi/router.js +0 -3
 - package/lib/v2/rodong/maintainer.js +0 -3
 - package/lib/v2/rodong/news.js +0 -45
 - package/lib/v2/rodong/radar.js +0 -13
 - package/lib/v2/rodong/router.js +0 -3
 - package/lib/v2/rsshub/maintainer.js +0 -4
 - package/lib/v2/rsshub/radar.js +0 -19
 - package/lib/v2/rsshub/router.js +0 -6
 - package/lib/v2/rsshub/routes.js +0 -69
 - package/lib/v2/rsshub/sponsors.js +0 -47
 - package/lib/v2/ruancan/category.js +0 -8
 - package/lib/v2/ruancan/index.js +0 -7
 - package/lib/v2/ruancan/maintainer.js +0 -6
 - package/lib/v2/ruancan/radar.js +0 -31
 - package/lib/v2/ruancan/router.js +0 -6
 - package/lib/v2/ruancan/search.js +0 -8
 - package/lib/v2/ruancan/user.js +0 -8
 - package/lib/v2/ruancan/utils.js +0 -66
 - package/lib/v2/ruc/hr.js +0 -58
 - package/lib/v2/ruc/maintainer.js +0 -3
 - package/lib/v2/ruc/radar.js +0 -13
 - package/lib/v2/ruc/router.js +0 -3
 - package/lib/v2/rustcc/jobs.js +0 -39
 - package/lib/v2/rustcc/maintainer.js +0 -3
 - package/lib/v2/rustcc/radar.js +0 -13
 - package/lib/v2/rustcc/router.js +0 -3
 - package/lib/v2/sakurazaka46/blog.js +0 -54
 - package/lib/v2/sakurazaka46/maintainer.js +0 -4
 - package/lib/v2/sakurazaka46/news.js +0 -51
 - package/lib/v2/sakurazaka46/radar.js +0 -19
 - package/lib/v2/sakurazaka46/router.js +0 -4
 - package/lib/v2/samsung/maintainer.js +0 -3
 - package/lib/v2/samsung/radar.js +0 -13
 - package/lib/v2/samsung/research/blog.js +0 -49
 - package/lib/v2/samsung/router.js +0 -3
 - package/lib/v2/saraba1st/digest.js +0 -79
 - package/lib/v2/saraba1st/maintainer.js +0 -4
 - package/lib/v2/saraba1st/radar.js +0 -25
 - package/lib/v2/saraba1st/router.js +0 -4
 - package/lib/v2/saraba1st/thread.js +0 -63
 - package/lib/v2/sass/gs/index.js +0 -55
 - package/lib/v2/sass/maintainer.js +0 -3
 - package/lib/v2/sass/radar.js +0 -13
 - package/lib/v2/sass/router.js +0 -3
 - package/lib/v2/scau/maintainer.js +0 -3
 - package/lib/v2/scau/radar.js +0 -13
 - package/lib/v2/scau/router.js +0 -3
 - package/lib/v2/scau/yjs.js +0 -27
 - package/lib/v2/science/cover.js +0 -69
 - package/lib/v2/science/current.js +0 -42
 - package/lib/v2/science/early.js +0 -33
 - package/lib/v2/science/maintainer.js +0 -5
 - package/lib/v2/science/radar.js +0 -25
 - package/lib/v2/science/router.js +0 -5
 - package/lib/v2/science/utils.js +0 -64
 - package/lib/v2/sciencedirect/journal.js +0 -69
 - package/lib/v2/sciencedirect/maintainer.js +0 -3
 - package/lib/v2/sciencedirect/radar.js +0 -13
 - package/lib/v2/sciencedirect/router.js +0 -3
 - package/lib/v2/sciencenet/blog.js +0 -61
 - package/lib/v2/sciencenet/maintainer.js +0 -4
 - package/lib/v2/sciencenet/radar.js +0 -19
 - package/lib/v2/sciencenet/router.js +0 -4
 - package/lib/v2/sciencenet/user.js +0 -65
 - package/lib/v2/scitation/journal.js +0 -58
 - package/lib/v2/scitation/maintainer.js +0 -4
 - package/lib/v2/scitation/radar.js +0 -19
 - package/lib/v2/scitation/router.js +0 -4
 - package/lib/v2/scitation/section.js +0 -76
 - package/lib/v2/scitation/utils.js +0 -29
 - package/lib/v2/scmp/index.js +0 -114
 - package/lib/v2/scmp/maintainer.js +0 -3
 - package/lib/v2/scmp/radar.js +0 -13
 - package/lib/v2/scmp/router.js +0 -3
 - package/lib/v2/scnu/cs/match.js +0 -36
 - package/lib/v2/scnu/jw.js +0 -33
 - package/lib/v2/scnu/library.js +0 -33
 - package/lib/v2/scnu/maintainer.js +0 -7
 - package/lib/v2/scnu/radar.js +0 -45
 - package/lib/v2/scnu/router.js +0 -7
 - package/lib/v2/scnu/ss.js +0 -28
 - package/lib/v2/scnu/yjs.js +0 -24
 - package/lib/v2/sctv/maintainer.js +0 -3
 - package/lib/v2/sctv/programme.js +0 -80
 - package/lib/v2/sctv/radar.js +0 -13
 - package/lib/v2/sctv/router.js +0 -3
 - package/lib/v2/scut/jwc/news.js +0 -117
 - package/lib/v2/scut/jwc/notice.js +0 -123
 - package/lib/v2/scut/jwc/school.js +0 -121
 - package/lib/v2/scut/maintainer.js +0 -8
 - package/lib/v2/scut/radar.js +0 -33
 - package/lib/v2/scut/router.js +0 -8
 - package/lib/v2/scut/scet/notice.js +0 -31
 - package/lib/v2/scut/seie/news_center.js +0 -52
 - package/lib/v2/scut/yjs.js +0 -30
 - package/lib/v2/scvtc/maintainer.js +0 -3
 - package/lib/v2/scvtc/radar.js +0 -13
 - package/lib/v2/scvtc/router.js +0 -3
 - package/lib/v2/scvtc/xygg.js +0 -40
 - package/lib/v2/sdu/cmse.js +0 -59
 - package/lib/v2/sdu/cs.js +0 -57
 - package/lib/v2/sdu/data.js +0 -110
 - package/lib/v2/sdu/epe.js +0 -55
 - package/lib/v2/sdu/extractor/index.js +0 -15
 - package/lib/v2/sdu/extractor/sdrj.js +0 -21
 - package/lib/v2/sdu/extractor/view.js +0 -21
 - package/lib/v2/sdu/extractor/wh/jwc.js +0 -24
 - package/lib/v2/sdu/extractor/wh/news.js +0 -21
 - package/lib/v2/sdu/maintainer.js +0 -9
 - package/lib/v2/sdu/mech.js +0 -60
 - package/lib/v2/sdu/radar.js +0 -159
 - package/lib/v2/sdu/router.js +0 -9
 - package/lib/v2/sdu/sc.js +0 -61
 - package/lib/v2/sdu/wh/jwc.js +0 -42
 - package/lib/v2/sdu/wh/news.js +0 -38
 - package/lib/v2/secnews/index.js +0 -27
 - package/lib/v2/secnews/maintainer.js +0 -3
 - package/lib/v2/secnews/radar.js +0 -13
 - package/lib/v2/secnews/router.js +0 -3
 - package/lib/v2/secrss/author.js +0 -24
 - package/lib/v2/secrss/category.js +0 -26
 - package/lib/v2/secrss/maintainer.js +0 -4
 - package/lib/v2/secrss/radar.js +0 -19
 - package/lib/v2/secrss/router.js +0 -4
 - package/lib/v2/seekingalpha/index.js +0 -56
 - package/lib/v2/seekingalpha/maintainer.js +0 -3
 - package/lib/v2/seekingalpha/radar.js +0 -13
 - package/lib/v2/seekingalpha/router.js +0 -3
 - package/lib/v2/segmentfault/blogs.js +0 -38
 - package/lib/v2/segmentfault/channel.js +0 -46
 - package/lib/v2/segmentfault/maintainer.js +0 -5
 - package/lib/v2/segmentfault/radar.js +0 -25
 - package/lib/v2/segmentfault/router.js +0 -5
 - package/lib/v2/segmentfault/user.js +0 -43
 - package/lib/v2/sehuatang/index.js +0 -131
 - package/lib/v2/sehuatang/maintainer.js +0 -7
 - package/lib/v2/sehuatang/radar.js +0 -19
 - package/lib/v2/sehuatang/router.js +0 -7
 - package/lib/v2/sensortower/blog.js +0 -69
 - package/lib/v2/sensortower/maintainer.js +0 -3
 - package/lib/v2/sensortower/radar.js +0 -13
 - package/lib/v2/sensortower/router.js +0 -3
 - package/lib/v2/setn/index.js +0 -100
 - package/lib/v2/setn/maintainer.js +0 -3
 - package/lib/v2/setn/radar.js +0 -53
 - package/lib/v2/setn/router.js +0 -3
 - package/lib/v2/shiep/index.js +0 -91
 - package/lib/v2/shiep/maintainer.js +0 -3
 - package/lib/v2/shiep/radar.js +0 -181
 - package/lib/v2/shiep/router.js +0 -3
 - package/lib/v2/shmeea/index.js +0 -44
 - package/lib/v2/shmeea/maintainer.js +0 -4
 - package/lib/v2/shmeea/radar.js +0 -19
 - package/lib/v2/shmeea/router.js +0 -4
 - package/lib/v2/shmeea/self-study.js +0 -61
 - package/lib/v2/shmtu/jwc.js +0 -57
 - package/lib/v2/shmtu/maintainer.js +0 -5
 - package/lib/v2/shmtu/portal.js +0 -81
 - package/lib/v2/shmtu/radar.js +0 -29
 - package/lib/v2/shmtu/router.js +0 -5
 - package/lib/v2/shmtu/www.js +0 -58
 - package/lib/v2/shopback/maintainer.js +0 -3
 - package/lib/v2/shopback/radar.js +0 -13
 - package/lib/v2/shopback/router.js +0 -3
 - package/lib/v2/shopback/store.js +0 -37
 - package/lib/v2/shoppingdesign/maintainer.js +0 -3
 - package/lib/v2/shoppingdesign/posts.js +0 -43
 - package/lib/v2/shoppingdesign/radar.js +0 -13
 - package/lib/v2/shoppingdesign/router.js +0 -3
 - package/lib/v2/shuiguopai/index.js +0 -76
 - package/lib/v2/shuiguopai/maintainer.js +0 -3
 - package/lib/v2/shuiguopai/radar.js +0 -13
 - package/lib/v2/shuiguopai/router.js +0 -3
 - package/lib/v2/shuiguopai/templates/description.art +0 -6
 - package/lib/v2/sicau/dky.js +0 -52
 - package/lib/v2/sicau/maintainer.js +0 -5
 - package/lib/v2/sicau/radar.js +0 -27
 - package/lib/v2/sicau/router.js +0 -5
 - package/lib/v2/sicau/yan.js +0 -52
 - package/lib/v2/sicau/zsjy.js +0 -53
 - package/lib/v2/sigsac/ccs.js +0 -57
 - package/lib/v2/sigsac/maintainer.js +0 -3
 - package/lib/v2/sigsac/radar.js +0 -13
 - package/lib/v2/sigsac/router.js +0 -3
 - package/lib/v2/simpleinfo/index.js +0 -50
 - package/lib/v2/simpleinfo/maintainer.js +0 -3
 - package/lib/v2/simpleinfo/radar.js +0 -19
 - package/lib/v2/simpleinfo/router.js +0 -3
 - package/lib/v2/sinchew/index.js +0 -68
 - package/lib/v2/sinchew/maintainer.js +0 -5
 - package/lib/v2/sinchew/radar.js +0 -25
 - package/lib/v2/sinchew/router.js +0 -4
 - package/lib/v2/sis001/forum.js +0 -62
 - package/lib/v2/sis001/maintainer.js +0 -3
 - package/lib/v2/sis001/radar.js +0 -13
 - package/lib/v2/sis001/router.js +0 -3
 - package/lib/v2/skysports/maintainer.js +0 -3
 - package/lib/v2/skysports/news.js +0 -55
 - package/lib/v2/skysports/radar.js +0 -13
 - package/lib/v2/skysports/router.js +0 -3
 - package/lib/v2/slowmist/maintainer.js +0 -3
 - package/lib/v2/slowmist/radar.js +0 -13
 - package/lib/v2/slowmist/router.js +0 -3
 - package/lib/v2/slowmist/slowmist.js +0 -39
 - package/lib/v2/smzdm/article.js +0 -43
 - package/lib/v2/smzdm/baoliao.js +0 -43
 - package/lib/v2/smzdm/haowen.js +0 -48
 - package/lib/v2/smzdm/haowen_fenlei.js +0 -56
 - package/lib/v2/smzdm/keyword.js +0 -42
 - package/lib/v2/smzdm/maintainer.js +0 -8
 - package/lib/v2/smzdm/radar.js +0 -48
 - package/lib/v2/smzdm/ranking.js +0 -56
 - package/lib/v2/smzdm/router.js +0 -8
 - package/lib/v2/snowpeak/maintainer.js +0 -3
 - package/lib/v2/snowpeak/radar.js +0 -13
 - package/lib/v2/snowpeak/router.js +0 -3
 - package/lib/v2/snowpeak/us-new-arrivals.js +0 -45
 - package/lib/v2/sobooks/date.js +0 -7
 - package/lib/v2/sobooks/index.js +0 -7
 - package/lib/v2/sobooks/maintainer.js +0 -5
 - package/lib/v2/sobooks/radar.js +0 -25
 - package/lib/v2/sobooks/router.js +0 -5
 - package/lib/v2/sobooks/tag.js +0 -7
 - package/lib/v2/sobooks/utils.js +0 -50
 - package/lib/v2/sohu/maintainer.js +0 -3
 - package/lib/v2/sohu/mp.js +0 -56
 - package/lib/v2/sohu/radar.js +0 -13
 - package/lib/v2/sohu/router.js +0 -3
 - package/lib/v2/solidot/_article.js +0 -50
 - package/lib/v2/solidot/main.js +0 -41
 - package/lib/v2/solidot/maintainer.js +0 -3
 - package/lib/v2/solidot/radar.js +0 -117
 - package/lib/v2/solidot/router.js +0 -3
 - package/lib/v2/sony/downloads.js +0 -47
 - package/lib/v2/sony/maintainer.js +0 -3
 - package/lib/v2/sony/radar.js +0 -13
 - package/lib/v2/sony/router.js +0 -3
 - package/lib/v2/soundofhope/channel.js +0 -42
 - package/lib/v2/soundofhope/maintainer.js +0 -3
 - package/lib/v2/soundofhope/radar.js +0 -13
 - package/lib/v2/soundofhope/router.js +0 -3
 - package/lib/v2/southcn/maintainer.js +0 -4
 - package/lib/v2/southcn/nfapp/column.js +0 -45
 - package/lib/v2/southcn/nfapp/reporter.js +0 -33
 - package/lib/v2/southcn/nfapp/utils.js +0 -23
 - package/lib/v2/southcn/radar.js +0 -12
 - package/lib/v2/southcn/router.js +0 -4
 - package/lib/v2/spotify/artist.js +0 -41
 - package/lib/v2/spotify/maintainer.js +0 -7
 - package/lib/v2/spotify/playlist.js +0 -31
 - package/lib/v2/spotify/radar.js +0 -37
 - package/lib/v2/spotify/router.js +0 -7
 - package/lib/v2/spotify/saved.js +0 -30
 - package/lib/v2/spotify/top.js +0 -24
 - package/lib/v2/spotify/utils.js +0 -62
 - package/lib/v2/springer/journal.js +0 -72
 - package/lib/v2/springer/maintainer.js +0 -3
 - package/lib/v2/springer/radar.js +0 -13
 - package/lib/v2/springer/router.js +0 -3
 - package/lib/v2/sputniknews/index.js +0 -94
 - package/lib/v2/sputniknews/maintainer.js +0 -3
 - package/lib/v2/sputniknews/radar.js +0 -13
 - package/lib/v2/sputniknews/router.js +0 -3
 - package/lib/v2/sse/convert.js +0 -39
 - package/lib/v2/sse/disclosure.js +0 -46
 - package/lib/v2/sse/inquire.js +0 -45
 - package/lib/v2/sse/lawandrules.js +0 -43
 - package/lib/v2/sse/maintainer.js +0 -7
 - package/lib/v2/sse/radar.js +0 -41
 - package/lib/v2/sse/renewal.js +0 -57
 - package/lib/v2/sse/router.js +0 -7
 - package/lib/v2/ssm/maintainer.js +0 -3
 - package/lib/v2/ssm/news.js +0 -38
 - package/lib/v2/ssm/radar.js +0 -13
 - package/lib/v2/ssm/router.js +0 -3
 - package/lib/v2/sspai/activity.js +0 -83
 - package/lib/v2/sspai/author.js +0 -57
 - package/lib/v2/sspai/bookmarks.js +0 -41
 - package/lib/v2/sspai/column.js +0 -62
 - package/lib/v2/sspai/index.js +0 -37
 - package/lib/v2/sspai/maintainer.js +0 -14
 - package/lib/v2/sspai/matrix.js +0 -38
 - package/lib/v2/sspai/radar.js +0 -81
 - package/lib/v2/sspai/router.js +0 -14
 - package/lib/v2/sspai/series.js +0 -46
 - package/lib/v2/sspai/seriesUpdate.js +0 -36
 - package/lib/v2/sspai/shortcutsGallery.js +0 -29
 - package/lib/v2/sspai/tag.js +0 -42
 - package/lib/v2/sspai/topic.js +0 -50
 - package/lib/v2/sspai/topics.js +0 -37
 - package/lib/v2/startuplatte/index.js +0 -56
 - package/lib/v2/startuplatte/maintainer.js +0 -3
 - package/lib/v2/startuplatte/radar.js +0 -13
 - package/lib/v2/startuplatte/router.js +0 -3
 - package/lib/v2/stcn/index.js +0 -64
 - package/lib/v2/stcn/maintainer.js +0 -3
 - package/lib/v2/stcn/radar.js +0 -13
 - package/lib/v2/stcn/router.js +0 -3
 - package/lib/v2/stdaily/digitalpaper.js +0 -125
 - package/lib/v2/stdaily/maintainer.js +0 -3
 - package/lib/v2/stdaily/radar.js +0 -11
 - package/lib/v2/stdaily/router.js +0 -3
 - package/lib/v2/stheadline/maintainer.js +0 -3
 - package/lib/v2/stheadline/radar.js +0 -13
 - package/lib/v2/stheadline/router.js +0 -3
 - package/lib/v2/stheadline/std/realtime.js +0 -46
 - package/lib/v2/storm/index.js +0 -57
 - package/lib/v2/storm/maintainer.js +0 -3
 - package/lib/v2/storm/radar.js +0 -13
 - package/lib/v2/storm/router.js +0 -3
 - package/lib/v2/stratechery/index.js +0 -20
 - package/lib/v2/stratechery/maintainer.js +0 -3
 - package/lib/v2/stratechery/radar.js +0 -11
 - package/lib/v2/stratechery/router.js +0 -3
 - package/lib/v2/studygolang/go.js +0 -5
 - package/lib/v2/studygolang/jobs.js +0 -7
 - package/lib/v2/studygolang/maintainer.js +0 -5
 - package/lib/v2/studygolang/radar.js +0 -25
 - package/lib/v2/studygolang/router.js +0 -5
 - package/lib/v2/studygolang/utils.js +0 -74
 - package/lib/v2/studygolang/weekly.js +0 -7
 - package/lib/v2/subhd/index.js +0 -79
 - package/lib/v2/subhd/maintainer.js +0 -4
 - package/lib/v2/subhd/radar.js +0 -19
 - package/lib/v2/subhd/router.js +0 -3
 - package/lib/v2/supchina/index.js +0 -67
 - package/lib/v2/supchina/maintainer.js +0 -4
 - package/lib/v2/supchina/podcasts.js +0 -66
 - package/lib/v2/supchina/radar.js +0 -19
 - package/lib/v2/supchina/router.js +0 -4
 - package/lib/v2/sustech/bidding.js +0 -34
 - package/lib/v2/sustech/maintainer.js +0 -5
 - package/lib/v2/sustech/newshub-zh.js +0 -39
 - package/lib/v2/sustech/radar.js +0 -29
 - package/lib/v2/sustech/router.js +0 -5
 - package/lib/v2/sustech/yjs.js +0 -29
 - package/lib/v2/swissinfo/index.js +0 -73
 - package/lib/v2/swissinfo/maintainer.js +0 -3
 - package/lib/v2/swissinfo/radar.js +0 -13
 - package/lib/v2/swissinfo/router.js +0 -3
 - package/lib/v2/swjtu/jtys/yjs.js +0 -55
 - package/lib/v2/swjtu/jwc.js +0 -67
 - package/lib/v2/swjtu/jyzpxx.js +0 -28
 - package/lib/v2/swjtu/maintainer.js +0 -6
 - package/lib/v2/swjtu/radar.js +0 -37
 - package/lib/v2/swjtu/router.js +0 -6
 - package/lib/v2/swjtu/utils.js +0 -33
 - package/lib/v2/swjtu/xg.js +0 -79
 - package/lib/v2/swpu/bgw.js +0 -58
 - package/lib/v2/swpu/cjxy.js +0 -53
 - package/lib/v2/swpu/dean.js +0 -59
 - package/lib/v2/swpu/dxy.js +0 -61
 - package/lib/v2/swpu/is.js +0 -53
 - package/lib/v2/swpu/maintainer.js +0 -8
 - package/lib/v2/swpu/radar.js +0 -43
 - package/lib/v2/swpu/router.js +0 -8
 - package/lib/v2/swpu/scs.js +0 -58
 - package/lib/v2/swpu/utils.js +0 -22
 - package/lib/v2/syosetu/chapter.js +0 -61
 - package/lib/v2/syosetu/maintainer.js +0 -3
 - package/lib/v2/syosetu/radar.js +0 -21
 - package/lib/v2/syosetu/router.js +0 -1
 - package/lib/v2/sysu/cse.js +0 -103
 - package/lib/v2/sysu/maintainer.js +0 -3
 - package/lib/v2/sysu/radar.js +0 -13
 - package/lib/v2/sysu/router.js +0 -3
 - package/lib/v2/szse/inquire.js +0 -41
 - package/lib/v2/szse/maintainer.js +0 -6
 - package/lib/v2/szse/notice.js +0 -73
 - package/lib/v2/szse/projectdynamic.js +0 -90
 - package/lib/v2/szse/radar.js +0 -33
 - package/lib/v2/szse/router.js +0 -6
 - package/lib/v2/szse/rule.js +0 -51
 - package/lib/v2/szu/maintainer.js +0 -3
 - package/lib/v2/szu/radar.js +0 -19
 - package/lib/v2/szu/router.js +0 -3
 - package/lib/v2/szu/yz/index.js +0 -51
 - package/lib/v2/szu/yz/utils.js +0 -74
 - package/lib/v2/taiwannews/hot.js +0 -52
 - package/lib/v2/taiwannews/maintainer.js +0 -3
 - package/lib/v2/taiwannews/radar.js +0 -13
 - package/lib/v2/taiwannews/router.js +0 -3
 - package/lib/v2/taobao/maintainer.js +0 -3
 - package/lib/v2/taobao/radar.js +0 -117
 - package/lib/v2/taobao/router.js +0 -3
 - package/lib/v2/taobao/zhongchou.js +0 -46
 - package/lib/v2/taoguba/blog.js +0 -84
 - package/lib/v2/taoguba/index.js +0 -82
 - package/lib/v2/taoguba/maintainer.js +0 -6
 - package/lib/v2/taoguba/radar.js +0 -19
 - package/lib/v2/taoguba/router.js +0 -6
 - package/lib/v2/taptap/changelog.js +0 -41
 - package/lib/v2/taptap/maintainer.js +0 -7
 - package/lib/v2/taptap/radar.js +0 -42
 - package/lib/v2/taptap/review.js +0 -131
 - package/lib/v2/taptap/router.js +0 -8
 - package/lib/v2/taptap/topic.js +0 -85
 - package/lib/v2/taptap/utils.js +0 -54
 - package/lib/v2/techcrunch/maintainer.js +0 -3
 - package/lib/v2/techcrunch/news.js +0 -38
 - package/lib/v2/techcrunch/radar.js +0 -13
 - package/lib/v2/techcrunch/router.js +0 -3
 - package/lib/v2/techflowpost/express.js +0 -33
 - package/lib/v2/techflowpost/index.js +0 -30
 - package/lib/v2/techflowpost/maintainer.js +0 -4
 - package/lib/v2/techflowpost/radar.js +0 -19
 - package/lib/v2/techflowpost/router.js +0 -5
 - package/lib/v2/telegram/blog.js +0 -35
 - package/lib/v2/telegram/channel.js +0 -605
 - package/lib/v2/telegram/maintainer.js +0 -5
 - package/lib/v2/telegram/radar.js +0 -35
 - package/lib/v2/telegram/router.js +0 -5
 - package/lib/v2/telegram/stickerpack.js +0 -26
 - package/lib/v2/tencent/cloud/column.js +0 -51
 - package/lib/v2/tencent/maintainer.js +0 -8
 - package/lib/v2/tencent/news/author.js +0 -44
 - package/lib/v2/tencent/news/coronavirus/data.js +0 -71
 - package/lib/v2/tencent/news/coronavirus/total.js +0 -34
 - package/lib/v2/tencent/news/coronavirus/utils.js +0 -17
 - package/lib/v2/tencent/pvp/newsindex.js +0 -64
 - package/lib/v2/tencent/qq/sdk/changelog.js +0 -56
 - package/lib/v2/tencent/radar.js +0 -89
 - package/lib/v2/tencent/router.js +0 -8
 - package/lib/v2/tesla/maintainer.js +0 -3
 - package/lib/v2/tesla/price/get-price.js +0 -25
 - package/lib/v2/tesla/price/index.js +0 -41
 - package/lib/v2/tesla/radar.js +0 -13
 - package/lib/v2/tesla/router.js +0 -3
 - package/lib/v2/test/index.js +0 -278
 - package/lib/v2/test/maintainer.js +0 -3
 - package/lib/v2/test/router.js +0 -3
 - package/lib/v2/theatlantic/maintainer.js +0 -3
 - package/lib/v2/theatlantic/news.js +0 -32
 - package/lib/v2/theatlantic/radar.js +0 -13
 - package/lib/v2/theatlantic/router.js +0 -3
 - package/lib/v2/theatlantic/utils.js +0 -54
 - package/lib/v2/thecatcity/index.js +0 -48
 - package/lib/v2/thecatcity/maintainer.js +0 -3
 - package/lib/v2/thecatcity/radar.js +0 -13
 - package/lib/v2/thecatcity/router.js +0 -3
 - package/lib/v2/thecatcity/termsMap.js +0 -30
 - package/lib/v2/thecover/channel.js +0 -66
 - package/lib/v2/thecover/maintainer.js +0 -3
 - package/lib/v2/thecover/radar.js +0 -13
 - package/lib/v2/thecover/router.js +0 -3
 - package/lib/v2/theinitium/full.js +0 -169
 - package/lib/v2/theinitium/maintainer.js +0 -6
 - package/lib/v2/theinitium/radar.js +0 -25
 - package/lib/v2/theinitium/router.js +0 -3
 - package/lib/v2/themoviedb/api-key.js +0 -23
 - package/lib/v2/themoviedb/collection.js +0 -21
 - package/lib/v2/themoviedb/episodes.js +0 -27
 - package/lib/v2/themoviedb/maintainer.js +0 -7
 - package/lib/v2/themoviedb/radar.js +0 -73
 - package/lib/v2/themoviedb/router.js +0 -7
 - package/lib/v2/themoviedb/seasons.js +0 -31
 - package/lib/v2/themoviedb/sheet.js +0 -45
 - package/lib/v2/themoviedb/trending.js +0 -24
 - package/lib/v2/themoviedb/utils.js +0 -34
 - package/lib/v2/thenewslens/index.js +0 -79
 - package/lib/v2/thenewslens/maintainer.js +0 -10
 - package/lib/v2/thenewslens/radar.js +0 -55
 - package/lib/v2/thenewslens/router.js +0 -3
 - package/lib/v2/thepaper/839studio/category.js +0 -40
 - package/lib/v2/thepaper/839studio/studio.js +0 -33
 - package/lib/v2/thepaper/channel.js +0 -26
 - package/lib/v2/thepaper/factpaper.js +0 -61
 - package/lib/v2/thepaper/featured.js +0 -18
 - package/lib/v2/thepaper/list.js +0 -27
 - package/lib/v2/thepaper/maintainer.js +0 -9
 - package/lib/v2/thepaper/radar.js +0 -48
 - package/lib/v2/thepaper/router.js +0 -9
 - package/lib/v2/thepaper/sidebar.js +0 -24
 - package/lib/v2/thepaper/utils.js +0 -78
 - package/lib/v2/theverge/index.js +0 -98
 - package/lib/v2/theverge/maintainer.js +0 -3
 - package/lib/v2/theverge/radar.js +0 -13
 - package/lib/v2/theverge/router.js +0 -3
 - package/lib/v2/thwiki/index.js +0 -32
 - package/lib/v2/thwiki/maintainer.js +0 -3
 - package/lib/v2/thwiki/radar.js +0 -13
 - package/lib/v2/thwiki/router.js +0 -3
 - package/lib/v2/tiktok/maintainer.js +0 -3
 - package/lib/v2/tiktok/radar.js +0 -13
 - package/lib/v2/tiktok/router.js +0 -3
 - package/lib/v2/tiktok/templates/user.art +0 -3
 - package/lib/v2/tiktok/user.js +0 -56
 - package/lib/v2/timednews/maintainer.js +0 -3
 - package/lib/v2/timednews/news.js +0 -106
 - package/lib/v2/timednews/radar.js +0 -57
 - package/lib/v2/timednews/router.js +0 -3
 - package/lib/v2/tingshuitz/changsha.js +0 -43
 - package/lib/v2/tingshuitz/dalian.js +0 -29
 - package/lib/v2/tingshuitz/dongguan.js +0 -34
 - package/lib/v2/tingshuitz/guangzhou.js +0 -23
 - package/lib/v2/tingshuitz/hangzhou.js +0 -34
 - package/lib/v2/tingshuitz/maintainer.js +0 -12
 - package/lib/v2/tingshuitz/nanjing.js +0 -33
 - package/lib/v2/tingshuitz/radar.js +0 -78
 - package/lib/v2/tingshuitz/router.js +0 -12
 - package/lib/v2/tingshuitz/wuhan.js +0 -32
 - package/lib/v2/tingshuitz/xian.js +0 -31
 - package/lib/v2/tingshuitz/xiaoshan.js +0 -34
 - package/lib/v2/tingshuitz/yangjiang.js +0 -29
 - package/lib/v2/tisi/index.js +0 -38
 - package/lib/v2/tisi/maintainer.js +0 -3
 - package/lib/v2/tisi/radar.js +0 -17
 - package/lib/v2/tisi/router.js +0 -3
 - package/lib/v2/tju/cic/index.js +0 -113
 - package/lib/v2/tju/maintainer.js +0 -6
 - package/lib/v2/tju/news/index.js +0 -135
 - package/lib/v2/tju/oaa/index.js +0 -112
 - package/lib/v2/tju/radar.js +0 -97
 - package/lib/v2/tju/router.js +0 -6
 - package/lib/v2/tju/yzb/index.js +0 -121
 - package/lib/v2/tokeninsight/blog.js +0 -52
 - package/lib/v2/tokeninsight/bulletin.js +0 -44
 - package/lib/v2/tokeninsight/maintainer.js +0 -5
 - package/lib/v2/tokeninsight/radar.js +0 -25
 - package/lib/v2/tokeninsight/report.js +0 -52
 - package/lib/v2/tokeninsight/router.js +0 -5
 - package/lib/v2/tongji/maintainer.js +0 -4
 - package/lib/v2/tongji/radar.js +0 -21
 - package/lib/v2/tongji/router.js +0 -4
 - package/lib/v2/tongji/sse/_article.js +0 -25
 - package/lib/v2/tongji/sse/notice.js +0 -46
 - package/lib/v2/tongji/yjs.js +0 -27
 - package/lib/v2/topys/index.js +0 -66
 - package/lib/v2/topys/maintainer.js +0 -3
 - package/lib/v2/topys/radar.js +0 -13
 - package/lib/v2/topys/router.js +0 -3
 - package/lib/v2/tradingview/blog.js +0 -60
 - package/lib/v2/tradingview/maintainer.js +0 -3
 - package/lib/v2/tradingview/radar.js +0 -13
 - package/lib/v2/tradingview/router.js +0 -3
 - package/lib/v2/tradingview/templates/description.art +0 -4
 - package/lib/v2/trending/allTrending.js +0 -196
 - package/lib/v2/trending/maintainer.js +0 -3
 - package/lib/v2/trending/radar.js +0 -35
 - package/lib/v2/trending/router.js +0 -3
 - package/lib/v2/tribalfootball/latest.js +0 -68
 - package/lib/v2/tribalfootball/maintainer.js +0 -3
 - package/lib/v2/tribalfootball/radar.js +0 -13
 - package/lib/v2/tribalfootball/router.js +0 -3
 - package/lib/v2/trow/maintainer.js +0 -3
 - package/lib/v2/trow/portal.js +0 -46
 - package/lib/v2/trow/radar.js +0 -13
 - package/lib/v2/trow/router.js +0 -3
 - package/lib/v2/tvb/maintainer.js +0 -3
 - package/lib/v2/tvb/news.js +0 -80
 - package/lib/v2/tvb/radar.js +0 -13
 - package/lib/v2/tvb/router.js +0 -3
 - package/lib/v2/twitter/api_fallback_common.js +0 -17
 - package/lib/v2/twitter/collection.js +0 -55
 - package/lib/v2/twitter/developer-api/search.js +0 -22
 - package/lib/v2/twitter/developer-api/user.js +0 -29
 - package/lib/v2/twitter/followings.js +0 -44
 - package/lib/v2/twitter/keyword.js +0 -5
 - package/lib/v2/twitter/likes.js +0 -22
 - package/lib/v2/twitter/list.js +0 -38
 - package/lib/v2/twitter/maintainer.js +0 -10
 - package/lib/v2/twitter/media.js +0 -7
 - package/lib/v2/twitter/radar.js +0 -73
 - package/lib/v2/twitter/router.js +0 -10
 - package/lib/v2/twitter/trends.js +0 -24
 - package/lib/v2/twitter/user.js +0 -5
 - package/lib/v2/twitter/utils.js +0 -450
 - package/lib/v2/twitter/web-api/media.js +0 -23
 - package/lib/v2/twitter/web-api/search.js +0 -16
 - package/lib/v2/twitter/web-api/twitter-api.js +0 -220
 - package/lib/v2/twitter/web-api/twitter-got.js +0 -91
 - package/lib/v2/twitter/web-api/user.js +0 -33
 - package/lib/v2/twreporter/category.js +0 -40
 - package/lib/v2/twreporter/fetch_article.js +0 -67
 - package/lib/v2/twreporter/maintainer.js +0 -5
 - package/lib/v2/twreporter/newest.js +0 -29
 - package/lib/v2/twreporter/photography.js +0 -46
 - package/lib/v2/twreporter/radar.js +0 -25
 - package/lib/v2/twreporter/router.js +0 -5
 - package/lib/v2/txrjy/fornumtopic.js +0 -72
 - package/lib/v2/txrjy/maintainer.js +0 -3
 - package/lib/v2/txrjy/radar.js +0 -17
 - package/lib/v2/txrjy/router.js +0 -3
 - package/lib/v2/tynu/maintainer.js +0 -3
 - package/lib/v2/tynu/radar.js +0 -13
 - package/lib/v2/tynu/router.js +0 -3
 - package/lib/v2/tynu/tynu.js +0 -39
 - package/lib/v2/typora/changelog-dev.js +0 -31
 - package/lib/v2/typora/changelog.js +0 -40
 - package/lib/v2/typora/maintainer.js +0 -4
 - package/lib/v2/typora/radar.js +0 -21
 - package/lib/v2/typora/router.js +0 -4
 - package/lib/v2/u3c3/index.js +0 -59
 - package/lib/v2/u3c3/maintainer.js +0 -3
 - package/lib/v2/u3c3/radar.js +0 -29
 - package/lib/v2/u3c3/router.js +0 -3
 - package/lib/v2/u9a9/index.js +0 -66
 - package/lib/v2/u9a9/maintainer.js +0 -4
 - package/lib/v2/u9a9/radar.js +0 -19
 - package/lib/v2/u9a9/router.js +0 -4
 - package/lib/v2/uber/blog.js +0 -58
 - package/lib/v2/uber/maintainer.js +0 -3
 - package/lib/v2/uber/radar.js +0 -13
 - package/lib/v2/uber/router.js +0 -3
 - package/lib/v2/ucas/ai.js +0 -28
 - package/lib/v2/ucas/index.js +0 -59
 - package/lib/v2/ucas/maintainer.js +0 -4
 - package/lib/v2/ucas/radar.js +0 -41
 - package/lib/v2/ucas/rader.js +0 -47
 - package/lib/v2/ucas/router.js +0 -4
 - package/lib/v2/uchicago/current.js +0 -80
 - package/lib/v2/uchicago/maintainer.js +0 -3
 - package/lib/v2/uchicago/radar.js +0 -13
 - package/lib/v2/uchicago/router.js +0 -3
 - package/lib/v2/udn/breaking-news.js +0 -85
 - package/lib/v2/udn/global/index.js +0 -67
 - package/lib/v2/udn/global/tag.js +0 -51
 - package/lib/v2/udn/maintainer.js +0 -5
 - package/lib/v2/udn/radar.js +0 -27
 - package/lib/v2/udn/router.js +0 -5
 - package/lib/v2/uestc/auto.js +0 -45
 - package/lib/v2/uestc/cqe.js +0 -60
 - package/lib/v2/uestc/gr.js +0 -48
 - package/lib/v2/uestc/jwc.js +0 -52
 - package/lib/v2/uestc/maintainer.js +0 -12
 - package/lib/v2/uestc/news.js +0 -51
 - package/lib/v2/uestc/radar.js +0 -69
 - package/lib/v2/uestc/router.js +0 -12
 - package/lib/v2/uestc/scse.js +0 -90
 - package/lib/v2/uestc/sice.js +0 -46
 - package/lib/v2/uestc/sise.js +0 -80
 - package/lib/v2/uibe/hr.js +0 -58
 - package/lib/v2/uibe/maintainer.js +0 -3
 - package/lib/v2/uibe/radar.js +0 -13
 - package/lib/v2/uibe/router.js +0 -3
 - package/lib/v2/ulapia/index.js +0 -47
 - package/lib/v2/ulapia/maintainer.js +0 -3
 - package/lib/v2/ulapia/radar.js +0 -55
 - package/lib/v2/ulapia/research.js +0 -38
 - package/lib/v2/ulapia/router.js +0 -4
 - package/lib/v2/unusualwhales/maintainer.js +0 -3
 - package/lib/v2/unusualwhales/news.js +0 -24
 - package/lib/v2/unusualwhales/radar.js +0 -13
 - package/lib/v2/unusualwhales/router.js +0 -3
 - package/lib/v2/upc/jsj.js +0 -77
 - package/lib/v2/upc/main.js +0 -72
 - package/lib/v2/upc/maintainer.js +0 -5
 - package/lib/v2/upc/radar.js +0 -53
 - package/lib/v2/upc/router.js +0 -5
 - package/lib/v2/upc/yjs.js +0 -28
 - package/lib/v2/uptimerobot/maintainer.js +0 -3
 - package/lib/v2/uptimerobot/radar.js +0 -13
 - package/lib/v2/uptimerobot/router.js +0 -3
 - package/lib/v2/uptimerobot/rss.js +0 -126
 - package/lib/v2/uraaka-joshi/maintainer.js +0 -4
 - package/lib/v2/uraaka-joshi/radar.js +0 -19
 - package/lib/v2/uraaka-joshi/router.js +0 -4
 - package/lib/v2/uraaka-joshi/uraaka-joshi-user.js +0 -105
 - package/lib/v2/uraaka-joshi/uraaka-joshi.js +0 -89
 - package/lib/v2/urbandictionary/maintainer.js +0 -3
 - package/lib/v2/urbandictionary/radar.js +0 -13
 - package/lib/v2/urbandictionary/random.js +0 -24
 - package/lib/v2/urbandictionary/router.js +0 -3
 - package/lib/v2/usenix/maintainer.js +0 -3
 - package/lib/v2/usenix/radar.js +0 -13
 - package/lib/v2/usenix/router.js +0 -3
 - package/lib/v2/usenix/usenix.js +0 -63
 - package/lib/v2/usepanda/index.js +0 -26
 - package/lib/v2/usepanda/maintainer.js +0 -3
 - package/lib/v2/usepanda/radar.js +0 -11
 - package/lib/v2/usepanda/router.js +0 -3
 - package/lib/v2/ustb/maintainer.js +0 -25
 - package/lib/v2/ustb/radar.js +0 -21
 - package/lib/v2/ustb/router.js +0 -4
 - package/lib/v2/ustb/yjsy/news.js +0 -464
 - package/lib/v2/ustb/yzxc/tzgg.js +0 -49
 - package/lib/v2/ustc/eeis.js +0 -59
 - package/lib/v2/ustc/gs.js +0 -59
 - package/lib/v2/ustc/index.js +0 -79
 - package/lib/v2/ustc/job.js +0 -193
 - package/lib/v2/ustc/jwc.js +0 -57
 - package/lib/v2/ustc/maintainer.js +0 -8
 - package/lib/v2/ustc/radar.js +0 -53
 - package/lib/v2/ustc/router.js +0 -8
 - package/lib/v2/ustc/sist.js +0 -59
 - package/lib/v2/usts/jwch.js +0 -56
 - package/lib/v2/usts/maintainer.js +0 -3
 - package/lib/v2/usts/radar.js +0 -25
 - package/lib/v2/usts/router.js +0 -3
 - package/lib/v2/uw/gix/news.js +0 -67
 - package/lib/v2/uw/maintainer.js +0 -3
 - package/lib/v2/uw/radar.js +0 -13
 - package/lib/v2/uw/router.js +0 -3
 - package/lib/v2/v1tx/index.js +0 -36
 - package/lib/v2/v1tx/maintainer.js +0 -4
 - package/lib/v2/v1tx/radar.js +0 -13
 - package/lib/v2/v1tx/router.js +0 -3
 - package/lib/v2/vcb-s/category.js +0 -51
 - package/lib/v2/vcb-s/index.js +0 -39
 - package/lib/v2/vcb-s/maintainer.js +0 -4
 - package/lib/v2/vcb-s/radar.js +0 -19
 - package/lib/v2/vcb-s/router.js +0 -4
 - package/lib/v2/verfghbw/maintainer.js +0 -3
 - package/lib/v2/verfghbw/press.js +0 -60
 - package/lib/v2/verfghbw/radar.js +0 -13
 - package/lib/v2/verfghbw/router.js +0 -3
 - package/lib/v2/verse/articles.js +0 -42
 - package/lib/v2/verse/maintainer.js +0 -3
 - package/lib/v2/verse/radar.js +0 -13
 - package/lib/v2/verse/router.js +0 -3
 - package/lib/v2/vimeo/category.js +0 -64
 - package/lib/v2/vimeo/channel.js +0 -72
 - package/lib/v2/vimeo/maintainer.js +0 -5
 - package/lib/v2/vimeo/radar.js +0 -33
 - package/lib/v2/vimeo/router.js +0 -5
 - package/lib/v2/vimeo/usr-videos.js +0 -76
 - package/lib/v2/vlive/index.js +0 -71
 - package/lib/v2/vlive/maintainer.js +0 -3
 - package/lib/v2/vlive/radar.js +0 -13
 - package/lib/v2/vlive/router.js +0 -3
 - package/lib/v2/vlive/templates/post.art +0 -8
 - package/lib/v2/vlive/templates/video.art +0 -3
 - package/lib/v2/vmware/flings.js +0 -59
 - package/lib/v2/vmware/maintainer.js +0 -3
 - package/lib/v2/vmware/radar.js +0 -13
 - package/lib/v2/vmware/router.js +0 -3
 - package/lib/v2/vocus/maintainer.js +0 -4
 - package/lib/v2/vocus/publication.js +0 -42
 - package/lib/v2/vocus/radar.js +0 -19
 - package/lib/v2/vocus/router.js +0 -4
 - package/lib/v2/vocus/user.js +0 -43
 - package/lib/v2/vocus/utils.js +0 -51
 - package/lib/v2/vom/featured.js +0 -50
 - package/lib/v2/vom/maintainer.js +0 -3
 - package/lib/v2/vom/radar.js +0 -13
 - package/lib/v2/vom/router.js +0 -3
 - package/lib/v2/wallhaven/index.js +0 -55
 - package/lib/v2/wallhaven/maintainer.js +0 -4
 - package/lib/v2/wallhaven/radar.js +0 -53
 - package/lib/v2/wallhaven/router.js +0 -4
 - package/lib/v2/wallpaperhub/index.js +0 -28
 - package/lib/v2/wallpaperhub/maintainer.js +0 -3
 - package/lib/v2/wallpaperhub/radar.js +0 -13
 - package/lib/v2/wallpaperhub/router.js +0 -3
 - package/lib/v2/wallstreetcn/hot.js +0 -56
 - package/lib/v2/wallstreetcn/live.js +0 -49
 - package/lib/v2/wallstreetcn/maintainer.js +0 -6
 - package/lib/v2/wallstreetcn/news.js +0 -76
 - package/lib/v2/wallstreetcn/radar.js +0 -25
 - package/lib/v2/wallstreetcn/router.js +0 -6
 - package/lib/v2/wangqiutiyu/anchor.js +0 -42
 - package/lib/v2/wangqiutiyu/maintainer.js +0 -3
 - package/lib/v2/wangqiutiyu/radar.js +0 -13
 - package/lib/v2/wangqiutiyu/router.js +0 -3
 - package/lib/v2/wanqu/maintainer.js +0 -3
 - package/lib/v2/wanqu/news.js +0 -27
 - package/lib/v2/wanqu/radar.js +0 -13
 - package/lib/v2/wanqu/router.js +0 -3
 - package/lib/v2/warthunder/maintainer.js +0 -3
 - package/lib/v2/warthunder/news.js +0 -49
 - package/lib/v2/warthunder/radar.js +0 -13
 - package/lib/v2/warthunder/router.js +0 -3
 - package/lib/v2/watchout/index.js +0 -51
 - package/lib/v2/watchout/maintainer.js +0 -3
 - package/lib/v2/watchout/radar.js +0 -13
 - package/lib/v2/watchout/router.js +0 -3
 - package/lib/v2/wdc/download.js +0 -37
 - package/lib/v2/wdc/maintainer.js +0 -3
 - package/lib/v2/wdc/radar.js +0 -13
 - package/lib/v2/wdc/router.js +0 -3
 - package/lib/v2/web3caff/index.js +0 -63
 - package/lib/v2/web3caff/maintainer.js +0 -3
 - package/lib/v2/web3caff/radar.js +0 -13
 - package/lib/v2/web3caff/router.js +0 -3
 - package/lib/v2/wechat/_README +0 -1
 - package/lib/v2/wechat/announce.js +0 -33
 - package/lib/v2/wechat/ce.js +0 -69
 - package/lib/v2/wechat/data258.js +0 -137
 - package/lib/v2/wechat/ershcimi.js +0 -35
 - package/lib/v2/wechat/feeddd.js +0 -38
 - package/lib/v2/wechat/feeds.js +0 -23
 - package/lib/v2/wechat/maintainer.js +0 -15
 - package/lib/v2/wechat/mp.js +0 -59
 - package/lib/v2/wechat/msgalbum.js +0 -41
 - package/lib/v2/wechat/radar.js +0 -104
 - package/lib/v2/wechat/router.js +0 -15
 - package/lib/v2/wechat/sogou.js +0 -58
 - package/lib/v2/wechat/tgchannel.js +0 -146
 - package/lib/v2/wechat/uread.js +0 -51
 - package/lib/v2/wechat/wechat2rss.js +0 -28
 - package/lib/v2/wechat/wxnmh.js +0 -46
 - package/lib/v2/weekendhk/maintainer.js +0 -4
 - package/lib/v2/weekendhk/posts.js +0 -29
 - package/lib/v2/weekendhk/radar.js +0 -13
 - package/lib/v2/weekendhk/router.js +0 -3
 - package/lib/v2/weibo/keyword.js +0 -55
 - package/lib/v2/weibo/maintainer.js +0 -8
 - package/lib/v2/weibo/oasis/user.js +0 -20
 - package/lib/v2/weibo/radar.js +0 -48
 - package/lib/v2/weibo/router.js +0 -8
 - package/lib/v2/weibo/search/hot.js +0 -35
 - package/lib/v2/weibo/super_index.js +0 -62
 - package/lib/v2/weibo/timeline.js +0 -162
 - package/lib/v2/weibo/user.js +0 -155
 - package/lib/v2/weibo/utils.js +0 -458
 - package/lib/v2/wenku8/chapter.js +0 -35
 - package/lib/v2/wenku8/index.js +0 -52
 - package/lib/v2/wenku8/maintainer.js +0 -5
 - package/lib/v2/wenku8/radar.js +0 -85
 - package/lib/v2/wenku8/router.js +0 -5
 - package/lib/v2/wenku8/volume.js +0 -52
 - package/lib/v2/wfdf/maintainer.js +0 -3
 - package/lib/v2/wfdf/news.js +0 -29
 - package/lib/v2/wfdf/radar.js +0 -13
 - package/lib/v2/wfdf/router.js +0 -3
 - package/lib/v2/wfu/jwc.js +0 -54
 - package/lib/v2/wfu/maintainer.js +0 -4
 - package/lib/v2/wfu/news.js +0 -96
 - package/lib/v2/wfu/radar.js +0 -21
 - package/lib/v2/wfu/router.js +0 -4
 - package/lib/v2/whitehouse/briefing-room.js +0 -50
 - package/lib/v2/whitehouse/maintainer.js +0 -4
 - package/lib/v2/whitehouse/ostp.js +0 -50
 - package/lib/v2/whitehouse/radar.js +0 -19
 - package/lib/v2/whitehouse/router.js +0 -4
 - package/lib/v2/who/maintainer.js +0 -5
 - package/lib/v2/who/news-room.js +0 -75
 - package/lib/v2/who/news.js +0 -42
 - package/lib/v2/who/radar.js +0 -25
 - package/lib/v2/who/router.js +0 -5
 - package/lib/v2/who/speeches.js +0 -45
 - package/lib/v2/whoscall/index.js +0 -55
 - package/lib/v2/whoscall/maintainer.js +0 -5
 - package/lib/v2/whoscall/radar.js +0 -25
 - package/lib/v2/whoscall/router.js +0 -3
 - package/lib/v2/wikinews/index.js +0 -43
 - package/lib/v2/wikinews/maintainer.js +0 -3
 - package/lib/v2/wikinews/radar.js +0 -13
 - package/lib/v2/wikinews/router.js +0 -4
 - package/lib/v2/wise/maintainer.js +0 -3
 - package/lib/v2/wise/pair.js +0 -65
 - package/lib/v2/wise/radar.js +0 -11
 - package/lib/v2/wise/router.js +0 -3
 - package/lib/v2/wizfile/index.js +0 -41
 - package/lib/v2/wizfile/maintainer.js +0 -3
 - package/lib/v2/wizfile/radar.js +0 -13
 - package/lib/v2/wizfile/router.js +0 -3
 - package/lib/v2/wnacg/index.js +0 -110
 - package/lib/v2/wnacg/maintainer.js +0 -5
 - package/lib/v2/wnacg/radar.js +0 -25
 - package/lib/v2/wnacg/router.js +0 -5
 - package/lib/v2/wnacg/templates/manga.art +0 -9
 - package/lib/v2/worldjournal/index.js +0 -60
 - package/lib/v2/worldjournal/maintainer.js +0 -3
 - package/lib/v2/worldjournal/radar.js +0 -13
 - package/lib/v2/worldjournal/router.js +0 -3
 - package/lib/v2/woshipm/bookmarks.js +0 -34
 - package/lib/v2/woshipm/latest.js +0 -27
 - package/lib/v2/woshipm/maintainer.js +0 -7
 - package/lib/v2/woshipm/popular.js +0 -33
 - package/lib/v2/woshipm/radar.js +0 -39
 - package/lib/v2/woshipm/router.js +0 -7
 - package/lib/v2/woshipm/user_article.js +0 -37
 - package/lib/v2/woshipm/utils.js +0 -21
 - package/lib/v2/woshipm/wen.js +0 -36
 - package/lib/v2/wp-china/maintainer.js +0 -3
 - package/lib/v2/wp-china/news.js +0 -56
 - package/lib/v2/wp-china/radar.js +0 -13
 - package/lib/v2/wp-china/router.js +0 -3
 - package/lib/v2/wsj/maintainer.js +0 -3
 - package/lib/v2/wsj/news.js +0 -51
 - package/lib/v2/wsj/radar.js +0 -21
 - package/lib/v2/wsj/router.js +0 -3
 - package/lib/v2/wsj/utils.js +0 -121
 - package/lib/v2/wsyu/maintainer.js +0 -3
 - package/lib/v2/wsyu/news.js +0 -85
 - package/lib/v2/wsyu/radar.js +0 -25
 - package/lib/v2/wsyu/router.js +0 -3
 - package/lib/v2/wxkol/maintainer.js +0 -3
 - package/lib/v2/wxkol/radar.js +0 -13
 - package/lib/v2/wxkol/router.js +0 -3
 - package/lib/v2/wxkol/show.js +0 -80
 - package/lib/v2/wyzxwk/article.js +0 -64
 - package/lib/v2/wyzxwk/maintainer.js +0 -3
 - package/lib/v2/wyzxwk/radar.js +0 -13
 - package/lib/v2/wyzxwk/router.js +0 -3
 - package/lib/v2/wzu/maintainer.js +0 -3
 - package/lib/v2/wzu/news.js +0 -84
 - package/lib/v2/wzu/radar.js +0 -11
 - package/lib/v2/wzu/router.js +0 -3
 - package/lib/v2/x6d/index.js +0 -59
 - package/lib/v2/x6d/maintainer.js +0 -3
 - package/lib/v2/x6d/radar.js +0 -13
 - package/lib/v2/x6d/router.js +0 -3
 - package/lib/v2/xaufe/jiaowu.js +0 -72
 - package/lib/v2/xaufe/maintainer.js +0 -3
 - package/lib/v2/xaufe/radar.js +0 -11
 - package/lib/v2/xaufe/router.js +0 -3
 - package/lib/v2/xaut/index.js +0 -72
 - package/lib/v2/xaut/jwc.js +0 -65
 - package/lib/v2/xaut/maintainer.js +0 -5
 - package/lib/v2/xaut/radar.js +0 -23
 - package/lib/v2/xaut/router.js +0 -5
 - package/lib/v2/xaut/rsc.js +0 -67
 - package/lib/v2/xiaohongshu/board.js +0 -30
 - package/lib/v2/xiaohongshu/maintainer.js +0 -5
 - package/lib/v2/xiaohongshu/radar.js +0 -25
 - package/lib/v2/xiaohongshu/router.js +0 -4
 - package/lib/v2/xiaohongshu/user.js +0 -30
 - package/lib/v2/xiaohongshu/util.js +0 -71
 - package/lib/v2/xiaomiyoupin/crowdfunding.js +0 -43
 - package/lib/v2/xiaomiyoupin/latest.js +0 -15
 - package/lib/v2/xiaomiyoupin/maintainer.js +0 -4
 - package/lib/v2/xiaomiyoupin/radar.js +0 -19
 - package/lib/v2/xiaomiyoupin/router.js +0 -4
 - package/lib/v2/xiaomiyoupin/utils.js +0 -21
 - package/lib/v2/xiaoyuzhou/maintainer.js +0 -4
 - package/lib/v2/xiaoyuzhou/pickup.js +0 -96
 - package/lib/v2/xiaoyuzhou/podcast.js +0 -36
 - package/lib/v2/xiaoyuzhou/radar.js +0 -19
 - package/lib/v2/xiaoyuzhou/router.js +0 -4
 - package/lib/v2/xiaozhuanlan/column.js +0 -52
 - package/lib/v2/xiaozhuanlan/maintainer.js +0 -3
 - package/lib/v2/xiaozhuanlan/radar.js +0 -13
 - package/lib/v2/xiaozhuanlan/router.js +0 -3
 - package/lib/v2/xidian/jwc.js +0 -54
 - package/lib/v2/xidian/maintainer.js +0 -3
 - package/lib/v2/xidian/radar.js +0 -13
 - package/lib/v2/xidian/router.js +0 -3
 - package/lib/v2/xjtu/2yuan/news.js +0 -61
 - package/lib/v2/xjtu/dean.js +0 -83
 - package/lib/v2/xjtu/dyyy/index.js +0 -44
 - package/lib/v2/xjtu/ee.js +0 -44
 - package/lib/v2/xjtu/gs/tzgg.js +0 -39
 - package/lib/v2/xjtu/international.js +0 -51
 - package/lib/v2/xjtu/job.js +0 -81
 - package/lib/v2/xjtu/maintainer.js +0 -10
 - package/lib/v2/xjtu/radar.js +0 -61
 - package/lib/v2/xjtu/router.js +0 -10
 - package/lib/v2/xjtu/std.js +0 -58
 - package/lib/v2/xkb/index.js +0 -54
 - package/lib/v2/xkb/maintainer.js +0 -3
 - package/lib/v2/xkb/radar.js +0 -13
 - package/lib/v2/xkb/router.js +0 -3
 - package/lib/v2/xkb/templates/description.art +0 -3
 - package/lib/v2/xmanhua/index.js +0 -74
 - package/lib/v2/xmanhua/maintainer.js +0 -3
 - package/lib/v2/xmanhua/radar.js +0 -13
 - package/lib/v2/xmanhua/router.js +0 -3
 - package/lib/v2/xmnn/epaper.js +0 -85
 - package/lib/v2/xmnn/maintainer.js +0 -3
 - package/lib/v2/xmnn/radar.js +0 -13
 - package/lib/v2/xmnn/router.js +0 -3
 - package/lib/v2/xsijishe/forum.js +0 -61
 - package/lib/v2/xsijishe/maintainer.js +0 -3
 - package/lib/v2/xsijishe/radar.js +0 -19
 - package/lib/v2/xsijishe/router.js +0 -3
 - package/lib/v2/xueqiu/column.js +0 -42
 - package/lib/v2/xueqiu/favorite.js +0 -38
 - package/lib/v2/xueqiu/fund.js +0 -50
 - package/lib/v2/xueqiu/hots.js +0 -45
 - package/lib/v2/xueqiu/maintainer.js +0 -12
 - package/lib/v2/xueqiu/radar.js +0 -72
 - package/lib/v2/xueqiu/router.js +0 -12
 - package/lib/v2/xueqiu/snb.js +0 -45
 - package/lib/v2/xueqiu/stock_comments.js +0 -45
 - package/lib/v2/xueqiu/stock_info.js +0 -72
 - package/lib/v2/xueqiu/today.js +0 -65
 - package/lib/v2/xueqiu/user.js +0 -75
 - package/lib/v2/xueqiu/user_stock.js +0 -48
 - package/lib/v2/xunhupay/index.js +0 -24
 - package/lib/v2/xunhupay/maintainer.js +0 -3
 - package/lib/v2/xunhupay/radar.js +0 -13
 - package/lib/v2/xunhupay/router.js +0 -3
 - package/lib/v2/xwlb/index.js +0 -40
 - package/lib/v2/xwlb/maintainer.js +0 -4
 - package/lib/v2/xwlb/radar.js +0 -13
 - package/lib/v2/xwlb/router.js +0 -4
 - package/lib/v2/xys/maintainer.js +0 -3
 - package/lib/v2/xys/new.js +0 -74
 - package/lib/v2/xys/radar.js +0 -13
 - package/lib/v2/xys/router.js +0 -3
 - package/lib/v2/xyzrank/index.js +0 -111
 - package/lib/v2/xyzrank/maintainer.js +0 -6
 - package/lib/v2/xyzrank/radar.js +0 -31
 - package/lib/v2/xyzrank/router.js +0 -3
 - package/lib/v2/yahoo/maintainer.js +0 -3
 - package/lib/v2/yahoo/news/index.js +0 -46
 - package/lib/v2/yahoo/radar.js +0 -13
 - package/lib/v2/yahoo/router.js +0 -3
 - package/lib/v2/yaohuo/index.js +0 -30
 - package/lib/v2/yaohuo/maintainer.js +0 -3
 - package/lib/v2/yaohuo/radar.js +0 -13
 - package/lib/v2/yaohuo/router.js +0 -3
 - package/lib/v2/ycwb/index.js +0 -82
 - package/lib/v2/ycwb/maintainer.js +0 -3
 - package/lib/v2/ycwb/radar.js +0 -12
 - package/lib/v2/ycwb/router.js +0 -3
 - package/lib/v2/yicai/author.js +0 -26
 - package/lib/v2/yicai/brief.js +0 -28
 - package/lib/v2/yicai/feed.js +0 -26
 - package/lib/v2/yicai/headline.js +0 -13
 - package/lib/v2/yicai/latest.js +0 -13
 - package/lib/v2/yicai/maintainer.js +0 -10
 - package/lib/v2/yicai/news.js +0 -39
 - package/lib/v2/yicai/radar.js +0 -55
 - package/lib/v2/yicai/router.js +0 -10
 - package/lib/v2/yicai/templates/description.art +0 -11
 - package/lib/v2/yicai/utils.js +0 -51
 - package/lib/v2/yicai/video.js +0 -39
 - package/lib/v2/yicai/vip.js +0 -26
 - package/lib/v2/ymgal/article.js +0 -61
 - package/lib/v2/ymgal/game.js +0 -41
 - package/lib/v2/ymgal/maintainer.js +0 -4
 - package/lib/v2/ymgal/radar.js +0 -31
 - package/lib/v2/ymgal/router.js +0 -4
 - package/lib/v2/yoasobi-music/info.js +0 -68
 - package/lib/v2/yoasobi-music/jsonpHelper.js +0 -19
 - package/lib/v2/yoasobi-music/live.js +0 -52
 - package/lib/v2/yoasobi-music/maintainer.js +0 -5
 - package/lib/v2/yoasobi-music/media.js +0 -59
 - package/lib/v2/yoasobi-music/radar.js +0 -31
 - package/lib/v2/yoasobi-music/router.js +0 -5
 - package/lib/v2/yomiuri/maintainer.js +0 -3
 - package/lib/v2/yomiuri/news.js +0 -129
 - package/lib/v2/yomiuri/radar.js +0 -13
 - package/lib/v2/yomiuri/router.js +0 -3
 - package/lib/v2/youku/channel.js +0 -56
 - package/lib/v2/youku/maintainer.js +0 -3
 - package/lib/v2/youku/radar.js +0 -13
 - package/lib/v2/youku/router.js +0 -3
 - package/lib/v2/youtube/channel.js +0 -39
 - package/lib/v2/youtube/charts.js +0 -97
 - package/lib/v2/youtube/community.js +0 -56
 - package/lib/v2/youtube/custom.js +0 -45
 - package/lib/v2/youtube/maintainer.js +0 -9
 - package/lib/v2/youtube/playlist.js +0 -33
 - package/lib/v2/youtube/radar.js +0 -51
 - package/lib/v2/youtube/router.js +0 -9
 - package/lib/v2/youtube/subscriptions.js +0 -56
 - package/lib/v2/youtube/user.js +0 -47
 - package/lib/v2/youtube/utils.js +0 -143
 - package/lib/v2/youzhiyouxing/maintainer.js +0 -3
 - package/lib/v2/youzhiyouxing/materials.js +0 -56
 - package/lib/v2/youzhiyouxing/radar.js +0 -73
 - package/lib/v2/youzhiyouxing/router.js +0 -3
 - package/lib/v2/yunspe/maintainer.js +0 -3
 - package/lib/v2/yunspe/newsflash.js +0 -42
 - package/lib/v2/yunspe/radar.js +0 -13
 - package/lib/v2/yunspe/router.js +0 -3
 - package/lib/v2/yuque/book.js +0 -93
 - package/lib/v2/yuque/maintainer.js +0 -3
 - package/lib/v2/yuque/radar.js +0 -13
 - package/lib/v2/yuque/router.js +0 -3
 - package/lib/v2/yuque/utils.js +0 -50
 - package/lib/v2/yxdown/maintainer.js +0 -4
 - package/lib/v2/yxdown/news.js +0 -57
 - package/lib/v2/yxdown/radar.js +0 -19
 - package/lib/v2/yxdown/recommend.js +0 -54
 - package/lib/v2/yxdown/router.js +0 -4
 - package/lib/v2/yxdown/utils.js +0 -17
 - package/lib/v2/yxdzqb/index.js +0 -53
 - package/lib/v2/yxdzqb/maintainer.js +0 -3
 - package/lib/v2/yxdzqb/radar.js +0 -13
 - package/lib/v2/yxdzqb/router.js +0 -3
 - package/lib/v2/yxrb/home.js +0 -61
 - package/lib/v2/yxrb/maintainer.js +0 -3
 - package/lib/v2/yxrb/radar.js +0 -13
 - package/lib/v2/yxrb/router.js +0 -3
 - package/lib/v2/yyets/article.js +0 -45
 - package/lib/v2/yyets/maintainer.js +0 -4
 - package/lib/v2/yyets/radar.js +0 -19
 - package/lib/v2/yyets/router.js +0 -4
 - package/lib/v2/yyets/today.js +0 -37
 - package/lib/v2/yystv/category.js +0 -65
 - package/lib/v2/yystv/docs.js +0 -34
 - package/lib/v2/yystv/maintainer.js +0 -4
 - package/lib/v2/yystv/radar.js +0 -49
 - package/lib/v2/yystv/router.js +0 -4
 - package/lib/v2/zagg/maintainer.js +0 -3
 - package/lib/v2/zagg/new-arrivals.js +0 -52
 - package/lib/v2/zagg/radar.js +0 -16
 - package/lib/v2/zagg/router.js +0 -3
 - package/lib/v2/zaker/index.js +0 -65
 - package/lib/v2/zaker/maintainer.js +0 -3
 - package/lib/v2/zaker/radar.js +0 -19
 - package/lib/v2/zaker/router.js +0 -3
 - package/lib/v2/zaobao/index.js +0 -17
 - package/lib/v2/zaobao/interactive.js +0 -15
 - package/lib/v2/zaobao/maintainer.js +0 -6
 - package/lib/v2/zaobao/radar.js +0 -28
 - package/lib/v2/zaobao/realtime.js +0 -30
 - package/lib/v2/zaobao/router.js +0 -6
 - package/lib/v2/zaobao/util.js +0 -178
 - package/lib/v2/zaobao/znews.js +0 -32
 - package/lib/v2/zaozao/article.js +0 -36
 - package/lib/v2/zaozao/maintainer.js +0 -3
 - package/lib/v2/zaozao/radar.js +0 -13
 - package/lib/v2/zaozao/router.js +0 -3
 - package/lib/v2/zcmu/jwc/index.js +0 -41
 - package/lib/v2/zcmu/maintainer.js +0 -4
 - package/lib/v2/zcmu/radar.js +0 -87
 - package/lib/v2/zcmu/router.js +0 -4
 - package/lib/v2/zcmu/yxy/index.js +0 -42
 - package/lib/v2/zcool/discover.js +0 -152
 - package/lib/v2/zcool/locations.js +0 -6829
 - package/lib/v2/zcool/maintainer.js +0 -7
 - package/lib/v2/zcool/radar.js +0 -55
 - package/lib/v2/zcool/router.js +0 -5
 - package/lib/v2/zcool/top.js +0 -51
 - package/lib/v2/zcool/user.js +0 -52
 - package/lib/v2/zcool/utils.js +0 -14
 - package/lib/v2/zhangyoubao/index.js +0 -42
 - package/lib/v2/zhangyoubao/maintainer.js +0 -3
 - package/lib/v2/zhangyoubao/radar.js +0 -13
 - package/lib/v2/zhangyoubao/router.js +0 -3
 - package/lib/v2/zhangyoubao/templates/article.art +0 -1
 - package/lib/v2/zhibo8/forum.js +0 -46
 - package/lib/v2/zhibo8/luxiang.js +0 -38
 - package/lib/v2/zhibo8/maintainer.js +0 -6
 - package/lib/v2/zhibo8/more.js +0 -77
 - package/lib/v2/zhibo8/post.js +0 -49
 - package/lib/v2/zhibo8/radar.js +0 -35
 - package/lib/v2/zhibo8/router.js +0 -6
 - package/lib/v2/zhihu/activities.js +0 -142
 - package/lib/v2/zhihu/answers.js +0 -63
 - package/lib/v2/zhihu/bookstore/newest.js +0 -30
 - package/lib/v2/zhihu/collection.js +0 -77
 - package/lib/v2/zhihu/daily.js +0 -80
 - package/lib/v2/zhihu/daily_section.js +0 -49
 - package/lib/v2/zhihu/execlib/x-zse-96_v3.js +0 -122
 - package/lib/v2/zhihu/hot.js +0 -38
 - package/lib/v2/zhihu/hotlist.js +0 -47
 - package/lib/v2/zhihu/maintainer.js +0 -19
 - package/lib/v2/zhihu/pin/daily.js +0 -18
 - package/lib/v2/zhihu/pin/hotlist.js +0 -18
 - package/lib/v2/zhihu/pin/people.js +0 -19
 - package/lib/v2/zhihu/pin/utils.js +0 -68
 - package/lib/v2/zhihu/posts.js +0 -53
 - package/lib/v2/zhihu/question.js +0 -80
 - package/lib/v2/zhihu/radar.js +0 -107
 - package/lib/v2/zhihu/router.js +0 -19
 - package/lib/v2/zhihu/timeline.js +0 -100
 - package/lib/v2/zhihu/topic.js +0 -68
 - package/lib/v2/zhihu/utils.js +0 -48
 - package/lib/v2/zhihu/weekly.js +0 -31
 - package/lib/v2/zhihu/zhuanlan.js +0 -92
 - package/lib/v2/zhitongcaijing/index.js +0 -118
 - package/lib/v2/zhitongcaijing/maintainer.js +0 -3
 - package/lib/v2/zhitongcaijing/radar.js +0 -17
 - package/lib/v2/zhitongcaijing/router.js +0 -3
 - package/lib/v2/zhiy/letter.js +0 -34
 - package/lib/v2/zhiy/maintainer.js +0 -4
 - package/lib/v2/zhiy/post.js +0 -69
 - package/lib/v2/zhiy/radar.js +0 -19
 - package/lib/v2/zhiy/router.js +0 -4
 - package/lib/v2/zhiy/utils.js +0 -13
 - package/lib/v2/zhubai/index.js +0 -33
 - package/lib/v2/zhubai/maintainer.js +0 -3
 - package/lib/v2/zhubai/radar.js +0 -12
 - package/lib/v2/zhubai/router.js +0 -3
 - package/lib/v2/zjgtjy/index.js +0 -46
 - package/lib/v2/zjgtjy/maintainer.js +0 -3
 - package/lib/v2/zjgtjy/radar.js +0 -31
 - package/lib/v2/zjgtjy/router.js +0 -3
 - package/lib/v2/zjol/maintainer.js +0 -3
 - package/lib/v2/zjol/paper.js +0 -88
 - package/lib/v2/zjol/radar.js +0 -61
 - package/lib/v2/zjol/router.js +0 -3
 - package/lib/v2/zju/career/index.js +0 -43
 - package/lib/v2/zju/cst/custom.js +0 -45
 - package/lib/v2/zju/cst/index.js +0 -90
 - package/lib/v2/zju/grs/index.js +0 -44
 - package/lib/v2/zju/list.js +0 -66
 - package/lib/v2/zju/maintainer.js +0 -8
 - package/lib/v2/zju/physics/index.js +0 -52
 - package/lib/v2/zju/radar.js +0 -139
 - package/lib/v2/zju/router.js +0 -8
 - package/lib/v2/zodgame/forum.js +0 -54
 - package/lib/v2/zodgame/maintainer.js +0 -3
 - package/lib/v2/zodgame/radar.js +0 -18
 - package/lib/v2/zodgame/router.js +0 -3
 - package/lib/v2/zodgame/templates/forum.art +0 -1
 - package/lib/v2/zooTeam/blog.js +0 -32
 - package/lib/v2/zooTeam/maintainer.js +0 -4
 - package/lib/v2/zooTeam/radar.js +0 -21
 - package/lib/v2/zooTeam/router.js +0 -4
 - package/lib/v2/zooTeam/weekly.js +0 -34
 - package/lib/v2/zotero/maintainer.js +0 -3
 - package/lib/v2/zotero/radar.js +0 -13
 - package/lib/v2/zotero/router.js +0 -3
 - package/lib/v2/zotero/versions.js +0 -36
 - package/lib/v2/zuel/maintainer.js +0 -3
 - package/lib/v2/zuel/notice.js +0 -52
 - package/lib/v2/zuel/radar.js +0 -13
 - package/lib/v2/zuel/router.js +0 -3
 - package/lib/v2/zuvio/boards.js +0 -14
 - package/lib/v2/zuvio/maintainer.js +0 -4
 - package/lib/v2/zuvio/radar.js +0 -13
 - package/lib/v2/zuvio/router.js +0 -4
 - package/lib/v2/zuvio/student5.js +0 -58
 - package/lib/v2/zuvio/utils.js +0 -61
 - package/lib/v2/zuzhirenshi/index.js +0 -87
 - package/lib/v2/zuzhirenshi/maintainer.js +0 -3
 - package/lib/v2/zuzhirenshi/radar.js +0 -13
 - package/lib/v2/zuzhirenshi/router.js +0 -3
 - package/lib/v2/zyshow/index.js +0 -46
 - package/lib/v2/zyshow/maintainer.js +0 -3
 - package/lib/v2/zyshow/radar.js +0 -17
 - package/lib/v2/zyshow/router.js +0 -3
 - package/lib/v2router.js +0 -17
 - package/lib/views/atom.art +0 -86
 - package/lib/views/error.art +0 -61
 - package/lib/views/json.js +0 -46
 - package/lib/views/rss.art +0 -60
 - package/lib/views/welcome.art +0 -114
 - /package/lib/{favicon.png → assets/favicon.png} +0 -0
 - /package/lib/{v2 → routes}/12306/templates/train.art +0 -0
 - /package/lib/{v2 → routes}/163/templates/ds.art +0 -0
 - /package/lib/{v2 → routes}/163/templates/dy.art +0 -0
 - /package/lib/{v2 → routes}/163/templates/exclusive.art +0 -0
 - /package/lib/{v2 → routes}/163/templates/music/djradio-content.art +0 -0
 - /package/lib/{v2 → routes}/163/templates/music/playlist.art +0 -0
 - /package/lib/{v2 → routes}/163/templates/music/userevents.art +0 -0
 - /package/lib/{v2 → routes}/163/templates/music/userplaylist.art +0 -0
 - /package/lib/{v2 → routes}/163/templates/music/userplayrecords.art +0 -0
 - /package/lib/{v2 → routes}/163/templates/open.art +0 -0
 - /package/lib/{v2 → routes}/1point3acres/templates/image.art +0 -0
 - /package/lib/{v2 → routes}/1point3acres/templates/offer.art +0 -0
 - /package/lib/{v2 → routes}/2048/templates/download.art +0 -0
 - /package/lib/{v2 → routes}/500px/templates/tribeSet.art +0 -0
 - /package/lib/{v2 → routes}/500px/templates/user.art +0 -0
 - /package/lib/{v2 → routes}/591/templates/house.art +0 -0
 - /package/lib/{v2 → routes}/78dm/templates/image.art +0 -0
 - /package/lib/{v2 → routes}/7mmtv/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/91porn/templates/index.art +0 -0
 - /package/lib/{v2 → routes}/95mm/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/acs/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/aeaweb/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/aicaijing/templates/description.art +0 -0
 - /package/lib/{v2/scitation → routes/aip}/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/aljazeera/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/amazon/templates/software-description.art +0 -0
 - /package/lib/{v2 → routes}/apnews/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/app-center/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/arcteryx/templates/product-description.art +0 -0
 - /package/lib/{v2 → routes}/arcteryx/templates/regear-product-description.art +0 -0
 - /package/lib/{v2 → routes}/asus/templates/bios.art +0 -0
 - /package/lib/{v2 → routes}/baidu/templates/forum.art +0 -0
 - /package/lib/{v2 → routes}/baidu/templates/gushitong.art +0 -0
 - /package/lib/{v2 → routes}/baidu/templates/post.art +0 -0
 - /package/lib/{v2 → routes}/baidu/templates/top.art +0 -0
 - /package/lib/{v2 → routes}/bandcamp/templates/weekly.art +0 -0
 - /package/lib/{v2 → routes}/bangumi/templates/online/image.art +0 -0
 - /package/lib/{v2 → routes}/bangumi/templates/tv/ep.art +0 -0
 - /package/lib/{v2 → routes}/bangumi/templates/tv/today.art +0 -0
 - /package/lib/{v2 → routes}/baozimh/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/bdys/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/bgmlist/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/bloomberg/templates/audio_media.art +0 -0
 - /package/lib/{v2 → routes}/bloomberg/templates/lede_media.art +0 -0
 - /package/lib/{v2 → routes}/bloomberg/templates/video_media.art +0 -0
 - /package/lib/{v2 → routes}/btzj/templates/torrents.art +0 -0
 - /package/lib/{v2/agirls → routes/caai}/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/caareviews/templates/utils.art +0 -0
 - /package/lib/{v2 → routes}/cahkms/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/cankaoxiaoxi/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/cartoonmad/templates/chapter.art +0 -0
 - /package/lib/{v2 → routes}/ccf/templates/ccfcv/description.art +0 -0
 - /package/lib/{v2/caai/templates → routes/ccf/templates/tfbd}/description.art +0 -0
 - /package/lib/{v2 → routes}/cde/templates/xxgk/breakthroughCure.art +0 -0
 - /package/lib/{v2 → routes}/cde/templates/xxgk/cliniCal.art +0 -0
 - /package/lib/{v2 → routes}/cde/templates/xxgk/priorityApproval.art +0 -0
 - /package/lib/{v2 → routes}/cdzjryb/templates/projectList.art +0 -0
 - /package/lib/{v2 → routes}/cebbank/templates/allDes.art +0 -0
 - /package/lib/{v2 → routes}/cebbank/templates/historyDes.art +0 -0
 - /package/lib/{v2 → routes}/chaincatcher/templates/home.art +0 -0
 - /package/lib/{v2 → routes}/changba/templates/work_description.art +0 -0
 - /package/lib/{v2 → routes}/chaoxing/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/chinadegrees/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/cngal/templates/entry-description.art +0 -0
 - /package/lib/{v2 → routes}/cngal/templates/weekly-description.art +0 -0
 - /package/lib/{v2 → routes}/cnjxol/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/cnki/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/cntv/templates/column.art +0 -0
 - /package/lib/{v2 → routes}/codeforces/templates/contest.art +0 -0
 - /package/lib/{v2 → routes}/comicskingdom/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/creative-comic/templates/chapter.art +0 -0
 - /package/lib/{v2 → routes}/cztv/templates/daily.art +0 -0
 - /package/lib/{v2 → routes}/cztv/templates/zjxwlb.art +0 -0
 - /package/lib/{v2 → routes}/dcfever/templates/trading.art +0 -0
 - /package/lib/{v2 → routes}/dedao/templates/knowledge.art +0 -0
 - /package/lib/{v2 → routes}/dedao/templates/user.art +0 -0
 - /package/lib/{v2 → routes}/diershoubing/templates/news.art +0 -0
 - /package/lib/{v2 → routes}/discord/templates/message.art +0 -0
 - /package/lib/{v2 → routes}/dlsite/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/douban/templates/explore.art +0 -0
 - /package/lib/{v2 → routes}/douban/templates/list_description.art +0 -0
 - /package/lib/{v2 → routes}/douban/templates/weekly_best.art +0 -0
 - /package/lib/{v2 → routes}/douyin/templates/cover.art +0 -0
 - /package/lib/{v2 → routes}/douyin/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/douyin/templates/iframe.art +0 -0
 - /package/lib/{v2 → routes}/douyu/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/dushu/fuzhou/templates/message.art +0 -0
 - /package/lib/{v2 → routes}/e-hentai/templates/images.art +0 -0
 - /package/lib/{v2 → routes}/ecnu/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/elsevier/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/eprice/templates/image.art +0 -0
 - /package/lib/{v2 → routes}/fastbull/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/feng/templates/deleted.art +0 -0
 - /package/lib/{v2 → routes}/feng/templates/img.art +0 -0
 - /package/lib/{v2 → routes}/ff14/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/fffdm/templates/manhua.art +0 -0
 - /package/lib/{v2 → routes}/firefox/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/fisher-spb/templates/image.art +0 -0
 - /package/lib/{v2 → routes}/fisher-spb/templates/video.art +0 -0
 - /package/lib/{v2 → routes}/focustaiwan/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/fosshub/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/furstar/templates/author.art +0 -0
 - /package/lib/{v2 → routes}/furstar/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/gameapps/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/gcores/templates/content.art +0 -0
 - /package/lib/{v2 → routes}/gelonghui/templates/live.art +0 -0
 - /package/lib/{v2 → routes}/geocaching/templates/blogs.art +0 -0
 - /package/lib/{v2 → routes}/gettr/templates/post.art +0 -0
 - /package/lib/{v2 → routes}/github/templates/comments-description.art +0 -0
 - /package/lib/{v2 → routes}/github/templates/trending-description.art +0 -0
 - /package/lib/{v2 → routes}/gitpod/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/google/templates/fonts.art +0 -0
 - /package/lib/{v2 → routes}/google/templates/news.art +0 -0
 - /package/lib/{v2 → routes}/gov/cmse/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/gov/csrc/templates/attachment.art +0 -0
 - /package/lib/{v2 → routes}/gov/general/templates/zcjdpt.art +0 -0
 - /package/lib/{v2 → routes}/gov/guangdong/tqyb/templates/sncsyjxh.art +0 -0
 - /package/lib/{v2 → routes}/gov/guangdong/tqyb/templates/tfxtq.art +0 -0
 - /package/lib/{v2/gov/shanghai → routes/gov/sh}/rsj/templates/ksxm.art +0 -0
 - /package/lib/{v2 → routes}/gov/sichuan/deyang/templates/govPublicInfo.art +0 -0
 - /package/lib/{v2 → routes}/gov/sichuan/deyang/templates/mztoday.art +0 -0
 - /package/lib/{v2 → routes}/gov/stats/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/guduodata/templates/daily.art +0 -0
 - /package/lib/{v2 → routes}/gumroad/templates/products.art +0 -0
 - /package/lib/{v2/gz-cmc → routes/gzdaily}/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/hafu/templates/hafu.art +0 -0
 - /package/lib/{v2 → routes}/hashnode/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/hellogithub/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/hellogithub/templates/report.art +0 -0
 - /package/lib/{v2 → routes}/hellogithub/templates/volume.art +0 -0
 - /package/lib/{v2 → routes}/hk01/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/hkej/templates/articleImg.art +0 -0
 - /package/lib/{v2 → routes}/hkej/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/houxu/templates/events.art +0 -0
 - /package/lib/{v2 → routes}/houxu/templates/lives.art +0 -0
 - /package/lib/{v2 → routes}/houxu/templates/memory.art +0 -0
 - /package/lib/{v2/ccf/templates/tfbd → routes/hrbust/templates}/description.art +0 -0
 - /package/lib/{v2 → routes}/hupu/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/hupu/templates/match.art +0 -0
 - /package/lib/{v2 → routes}/ifeng/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/ikea/templates/cn/product.art +0 -0
 - /package/lib/{v2 → routes}/ikea/templates/new.art +0 -0
 - /package/lib/{v2 → routes}/ikea/templates/offer.art +0 -0
 - /package/lib/{v2 → routes}/informs/templates/content.art +0 -0
 - /package/lib/{v2 → routes}/iqiyi/templates/album.art +0 -0
 - /package/lib/{v2 → routes}/iresearch/templates/report.art +0 -0
 - /package/lib/{v2 → routes}/iresearch/templates/weekly.art +0 -0
 - /package/lib/{v2 → routes}/itch/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/ixigua/templates/userVideo.art +0 -0
 - /package/lib/{v2 → routes}/jandan/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/javbus/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/javlibrary/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/jd/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/jin10/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/jump/templates/discount.art +0 -0
 - /package/lib/{v2 → routes}/kcna/templates/news.art +0 -0
 - /package/lib/{v2 → routes}/keep/templates/user.art +0 -0
 - /package/lib/{v2 → routes}/kemono/templates/discord.art +0 -0
 - /package/lib/{v2 → routes}/kyodonews/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/lang/templates/room.art +0 -0
 - /package/lib/{v2 → routes}/lanqiao/templates/courseDesc.art +0 -0
 - /package/lib/{v2 → routes}/learnku/templates/topic.art +0 -0
 - /package/lib/{v2 → routes}/leetcode/templates/question-description.art +0 -0
 - /package/lib/{v2 → routes}/lfsyd/templates/card.art +0 -0
 - /package/lib/{v2 → routes}/lfsyd/templates/video.art +0 -0
 - /package/lib/{v2 → routes}/linkedin/templates/cn/posting.art +0 -0
 - /package/lib/{v2 → routes}/lkong/templates/content.art +0 -0
 - /package/lib/{v2 → routes}/lkong/templates/quote.art +0 -0
 - /package/lib/{v2 → routes}/logonews/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/loltw/templates/news.art +0 -0
 - /package/lib/{v2 → routes}/lovelive-anime/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/lovelive-anime/templates/scheduleDesc.art +0 -0
 - /package/lib/{v2 → routes}/lvv2/templates/outlink.art +0 -0
 - /package/lib/{v2 → routes}/lxixsxa/templates/disco.art +0 -0
 - /package/lib/{v2 → routes}/lxixsxa/templates/info.art +0 -0
 - /package/lib/{v2 → routes}/magazinelib/templates/magazine-description.art +0 -0
 - /package/lib/{v2 → routes}/manhuagui/templates/manga.art +0 -0
 - /package/lib/{v2 → routes}/meteor/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/mihoyo/templates/description.art +0 -0
 - /package/lib/{v2/pmthinking/templates/description.art → routes/mihoyo/templates/ys.art} +0 -0
 - /package/lib/{v2 → routes}/mindmeister/templates/image.art +0 -0
 - /package/lib/{v2 → routes}/mingpao/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/misskey/templates/note.art +0 -0
 - /package/lib/{v2 → routes}/modelscope/templates/community.art +0 -0
 - /package/lib/{v2 → routes}/modelscope/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/myfigurecollection/templates/activity.art +0 -0
 - /package/lib/{v2 → routes}/myfigurecollection/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/natgeo/templates/dailyPhoto.art +0 -0
 - /package/lib/{v2 → routes}/nautil/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/nber/template/description.art +0 -0
 - /package/lib/{v2 → routes}/nhentai/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/nhk/templates/news.art +0 -0
 - /package/lib/{v2 → routes}/nikkei/templates/news.art +0 -0
 - /package/lib/{v2 → routes}/nintendo/templates/direct.art +0 -0
 - /package/lib/{v2 → routes}/nintendo/templates/eshop_cn.art +0 -0
 - /package/lib/{v2 → routes}/nintendo/templates/eshop_hk.art +0 -0
 - /package/lib/{v2 → routes}/nintendo/templates/eshop_jp.art +0 -0
 - /package/lib/{v2 → routes}/nintendo/templates/eshop_us.art +0 -0
 - /package/lib/{v2 → routes}/nmtv/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/npm/templates/package.art +0 -0
 - /package/lib/{v2 → routes}/nytimes/templates/image.art +0 -0
 - /package/lib/{v2 → routes}/oceanengine/templates/content.art +0 -0
 - /package/lib/{v2/ycwb → routes/oeeee}/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/oncc/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/oncc/templates/money18.art +0 -0
 - /package/lib/{v2 → routes}/openai/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/orcid/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/oreno3d/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/oshwhub/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/oup/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/patagonia/templates/product-description.art +0 -0
 - /package/lib/{v2 → routes}/penguin-random-house/templates/articleHeader.art +0 -0
 - /package/lib/{v2 → routes}/penguin-random-house/templates/book.art +0 -0
 - /package/lib/{v2 → routes}/picuki/templates/post.art +0 -0
 - /package/lib/{v2 → routes}/pixabay/templates/img.art +0 -0
 - /package/lib/{v2 → routes}/pnas/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/producthunt/templates/descImg.art +0 -0
 - /package/lib/{v2 → routes}/pts/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/pts/templates/live.art +0 -0
 - /package/lib/{v2 → routes}/pubmed/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/qidian/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/qoo-app/templates/comment.art +0 -0
 - /package/lib/{v2 → routes}/qoo-app/templates/note.art +0 -0
 - /package/lib/{v2 → routes}/qq/ac/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/qq/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/qweather/templates/now.art +0 -0
 - /package/lib/{v2 → routes}/radio/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/saraba1st/templates/digest.art +0 -0
 - /package/lib/{v2 → routes}/science/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/science/templates/cover.art +0 -0
 - /package/lib/{v2 → routes}/sctv/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/sensortower/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/shiep/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/shmtu/templates/portal.art +0 -0
 - /package/lib/{v2 → routes}/simpleinfo/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/sinchew/templates/images.art +0 -0
 - /package/lib/{v2 → routes}/snowpeak/templates/new-arrivals.art +0 -0
 - /package/lib/{v2 → routes}/sony/templates/software-description.art +0 -0
 - /package/lib/{v2 → routes}/southcn/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/sse/templates/inquire.art +0 -0
 - /package/lib/{v2 → routes}/sse/templates/renewal.art +0 -0
 - /package/lib/{v2 → routes}/ssm/templates/news.art +0 -0
 - /package/lib/{v2 → routes}/stdaily/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/swjtu/templates/job_desc.art +0 -0
 - /package/lib/{v2 → routes}/swjtu/templates/job_detail.art +0 -0
 - /package/lib/{v2 → routes}/szse/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/szse/templates/inquire.art +0 -0
 - /package/lib/{v2 → routes}/taobao/templates/zhongchou.art +0 -0
 - /package/lib/{v2 → routes}/taptap/templates/imagePost.art +0 -0
 - /package/lib/{v2 → routes}/taptap/templates/videoPost.art +0 -0
 - /package/lib/{v2 → routes}/telegram/templates/video.art +0 -0
 - /package/lib/{v2 → routes}/tencent/templates/coronavirus/chinaTotal.art +0 -0
 - /package/lib/{v2 → routes}/tencent/templates/coronavirus/data.art +0 -0
 - /package/lib/{v2 → routes}/theatlantic/templates/article-description.art +0 -0
 - /package/lib/{v2 → routes}/themoviedb/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/thenewslens/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/thepaper/templates/factpaper.art +0 -0
 - /package/lib/{v2 → routes}/thepaper/templates/image_detail.art +0 -0
 - /package/lib/{v2 → routes}/thepaper/templates/video_detail.art +0 -0
 - /package/lib/{v2 → routes}/trending/templates/content.art +0 -0
 - /package/lib/{v2 → routes}/tribalfootball/templates/plus_header.art +0 -0
 - /package/lib/{v2 → routes}/tvb/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/txrjy/templates/fornumtopic.art +0 -0
 - /package/lib/{v2 → routes}/udn/templates/figure.art +0 -0
 - /package/lib/{v2 → routes}/uptimerobot/templates/rss.art +0 -0
 - /package/lib/{v2 → routes}/urbandictionary/templates/definition.art +0 -0
 - /package/lib/{v2 → routes}/vcb-s/templates/post.art +0 -0
 - /package/lib/{v2 → routes}/vimeo/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/wallpaperhub/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/wallstreetcn/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/warthunder/templates/description.art +0 -0
 - /package/lib/{v2/gzh360 → routes/wechat}/_README +0 -0
 - /package/lib/{v2 → routes}/wise/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/wsj/templates/article-description.art +0 -0
 - /package/lib/{v2 → routes}/xiaomiyoupin/templates/goods.art +0 -0
 - /package/lib/{v2 → routes}/xjtu/templates/attachments.art +0 -0
 - /package/lib/{v2 → routes}/xjtu/templates/std.art +0 -0
 - /package/lib/{v2/gzdaily → routes/xkb}/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/xueqiu/templates/comments_description.art +0 -0
 - /package/lib/{v2 → routes}/xys/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/xyzrank/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/ymgal/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/yoasobi-music/templates/info.art +0 -0
 - /package/lib/{v2 → routes}/yoasobi-music/templates/live.art +0 -0
 - /package/lib/{v2 → routes}/yoasobi-music/templates/media.art +0 -0
 - /package/lib/{v2 → routes}/youku/templates/channel.art +0 -0
 - /package/lib/{v2 → routes}/youtube/templates/community.art +0 -0
 - /package/lib/{v2 → routes}/youtube/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/yxdzqb/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/zagg/templates/new-arrivals.art +0 -0
 - /package/lib/{v2 → routes}/zaobao/templates/zaobao.art +0 -0
 - /package/lib/{v2 → routes}/zcool/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/zcool/templates/work.art +0 -0
 - /package/lib/{v2 → routes}/zhitongcaijing/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/zhiy/templates/post.art +0 -0
 - /package/lib/{v2 → routes}/zuvio/templates/img.art +0 -0
 - /package/lib/{v2 → routes}/zuvio/templates/link.art +0 -0
 - /package/lib/{v2 → routes}/zuvio/templates/ref_article.art +0 -0
 - /package/lib/{v2 → routes}/zuvio/templates/rss.art +0 -0
 - /package/lib/{v2 → routes}/zuvio/templates/youtube.art +0 -0
 - /package/lib/{v2 → routes}/zyshow/templates/description.art +0 -0
 - /package/lib/{routes → routes-deprecated}/199it/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/aflcio/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/algocasts/all.js +0 -0
 - /package/lib/{routes → routes-deprecated}/allpoetry/order.js +0 -0
 - /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/fresh.js +0 -0
 - /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/top.js +0 -0
 - /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/updated.js +0 -0
 - /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/anime1/anime.js +0 -0
 - /package/lib/{routes → routes-deprecated}/anime1/search.js +0 -0
 - /package/lib/{routes → routes-deprecated}/anytxt/release-notes.js +0 -0
 - /package/lib/{routes → routes-deprecated}/aqicn/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/arxiv/query.js +0 -0
 - /package/lib/{routes → routes-deprecated}/asml/press-releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/av01/actor.js +0 -0
 - /package/lib/{routes → routes-deprecated}/av01/tag.js +0 -0
 - /package/lib/{routes → routes-deprecated}/bahamut/creation.js +0 -0
 - /package/lib/{routes → routes-deprecated}/banyuetan/byt.js +0 -0
 - /package/lib/{routes/blogs/jingwei_link.js → routes-deprecated/blogs/jingwei-link.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/blogs/leemeng.js +0 -0
 - /package/lib/{routes → routes-deprecated}/blogs/wang54.js +0 -0
 - /package/lib/{routes → routes-deprecated}/bookwalkertw/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/bsblog123/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/cbndata/information.js +0 -0
 - /package/lib/{routes → routes-deprecated}/centbrowser/history.js +0 -0
 - /package/lib/{routes → routes-deprecated}/checkra1n/releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chinadaily/english.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chinafile/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chouti/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chuapp/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chuhaibiji/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/clb/commentary.js +0 -0
 - /package/lib/{routes → routes-deprecated}/cninfo/announcement.js +0 -0
 - /package/lib/{routes → routes-deprecated}/coolbuy/newest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/cowlevel/element.js +0 -0
 - /package/lib/{routes → routes-deprecated}/creaders/headline.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ctei/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ctfhub/search.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ctfhub/upcoming.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dailyart/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/daodu/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dbaplus/activity.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dbaplus/tab.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dcinside/board.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dekudeals/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/deloitte/industries.js +0 -0
 - /package/lib/{routes/dgtle/whale_rank.js → routes-deprecated/dgtle/whale-rank.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/dgtle/whale.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ditto/changes.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dw/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dykszx/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dytt/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ebb/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/etoland/board.js +0 -0
 - /package/lib/{routes → routes-deprecated}/europapress/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/eztv/imdb.js +0 -0
 - /package/lib/{routes → routes-deprecated}/fanfou/trends.js +0 -0
 - /package/lib/{routes → routes-deprecated}/fgo/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/fnal/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/browse.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/commissions.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/favorites.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/gallery.js +0 -0
 - /package/lib/{routes/furaffinity/journal_comments.js → routes-deprecated/furaffinity/journal-comments.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/journals.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/scraps.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/search.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/shouts.js +0 -0
 - /package/lib/{routes/furaffinity/submission_comments.js → routes-deprecated/furaffinity/submission-comments.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/watchers.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/watching.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gab/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/game4399/forum.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gameres/hot.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gameres/list.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gameres/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gamersky/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gaoqing/latest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/geekpark/breakingnews.js +0 -0
 - /package/lib/{routes → routes-deprecated}/geektime/column.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gitlab/common.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gnn/gnn.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/caict/bps.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/caict/caictgd.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/caict/qwsj.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/chongqing/ljxq/dwgk.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/city/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/province/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/shanxi/rst.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/shuju/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/statecouncil/briefing.js +0 -0
 - /package/lib/{routes → routes-deprecated}/grandchallenge/challenges.js +0 -0
 - /package/lib/{routes → routes-deprecated}/grandchallenge/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/guardian/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gushiwen/recommend.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hainanu/ssszs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hanime/video.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hatena/anonymous_diary/archive.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hentai-cosplays/porn-images-xxx.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hentaimama/videos.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hko/weather.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hudongba/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ichunqiu/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/iciba/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/icity/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ieee/author.js +0 -0
 - /package/lib/{routes/interesting-sky/astronomical_events.js → routes-deprecated/interesting-sky/astronomical-events.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/interesting-sky/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/interesting-sky/recent-interesting.js +0 -0
 - /package/lib/{routes → routes-deprecated}/invisionapp/inside-design.js +0 -0
 - /package/lib/{routes → routes-deprecated}/iplay/home.js +0 -0
 - /package/lib/{routes → routes-deprecated}/itslaw/judgements.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kaoyan/kaoyan.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kchuhai/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kenshin/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/keyakizaka46/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/keyakizaka46/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kingarthur/index.js +0 -0
 - /package/lib/{routes/konachan/post_popular_recent.js → routes-deprecated/konachan/post-popular-recent.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/kongfz/people.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kotaku/story.js +0 -0
 - /package/lib/{routes → routes-deprecated}/lagou/jobs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/laosiji/hot.js +0 -0
 - /package/lib/{routes → routes-deprecated}/latexstudio/home.js +0 -0
 - /package/lib/{routes → routes-deprecated}/letterboxd/followingdiary.js +0 -0
 - /package/lib/{routes → routes-deprecated}/letterboxd/userdiary.js +0 -0
 - /package/lib/{routes → routes-deprecated}/lizhi/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/lolapp/recommend.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ltaaa/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mafengwo/ziyouxing.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mamibuy/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/manhuadb/comics.js +0 -0
 - /package/lib/{routes → routes-deprecated}/manictime/releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/maoyan/hot.js +0 -0
 - /package/lib/{routes → routes-deprecated}/maoyan/upcoming.js +0 -0
 - /package/lib/{routes → routes-deprecated}/marginnote/tag.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mathpix/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mathunion/fields-medal.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mcbbs/forum.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mcbbs/post.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mcbbs/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/meipai/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/meipai/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/melon/chart.js +0 -0
 - /package/lib/{routes → routes-deprecated}/micmicidol/latest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/micmicidol/parse.js +0 -0
 - /package/lib/{routes → routes-deprecated}/micmicidol/search.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mofish/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mofish/templates/description.art +0 -0
 - /package/lib/{routes → routes-deprecated}/monotype/article.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mubu/explore.js +0 -0
 - /package/lib/{routes → routes-deprecated}/muchong/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nace/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/navisec/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nosetime/comment.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nosetime/home.js +0 -0
 - /package/lib/{routes → routes-deprecated}/now/rank.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nvidia/webdriverupdate.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nwpu/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ofweek/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/onejav/one.js +0 -0
 - /package/lib/{routes → routes-deprecated}/onenotegem/release.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ornl/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/paidai/bbs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/paidai/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/paidai/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/parcel/hermesuk.js +0 -0
 - /package/lib/{routes → routes-deprecated}/patchwork.kernel.org/cache.js +0 -0
 - /package/lib/{routes → routes-deprecated}/phrack/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/polimi/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/proletar/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/psnine/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/psnine/node.js +0 -0
 - /package/lib/{routes → routes-deprecated}/qnap/release-notes.js +0 -0
 - /package/lib/{routes → routes-deprecated}/qttabbar/change-log.js +0 -0
 - /package/lib/{routes → routes-deprecated}/queshu/book.js +0 -0
 - /package/lib/{routes → routes-deprecated}/queshu/sale.js +0 -0
 - /package/lib/{routes → routes-deprecated}/qzcea/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/rf/article.js +0 -0
 - /package/lib/{routes → routes-deprecated}/rmlt/idea.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ruby-china/constants.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ruby-china/jobs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ruby-china/topics.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ruby-china/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/samsungmembers/latest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/secshi/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/security/pulses.js +0 -0
 - /package/lib/{routes → routes-deprecated}/semiconductors/latest-news.js +0 -0
 - /package/lib/{routes/sesame/release_notes.js → routes-deprecated/sesame/release-notes.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/simonsfoundation/recommend.js +0 -0
 - /package/lib/{routes → routes-deprecated}/simpread/notice.js +0 -0
 - /package/lib/{routes → routes-deprecated}/siren/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/sketch/beta.js +0 -0
 - /package/lib/{routes → routes-deprecated}/soul/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/soundcloud/tracks.js +0 -0
 - /package/lib/{routes → routes-deprecated}/souyun/today.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ssydt/article.js +0 -0
 - /package/lib/{routes → routes-deprecated}/steam/steamgifts/discussions.js +0 -0
 - /package/lib/{routes → routes-deprecated}/sznews/press.js +0 -0
 - /package/lib/{routes → routes-deprecated}/sznews/ranking.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tanchinese/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/technologyreview/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tencent/qcloud/mlvb/changelog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/announce.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/question.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/pay/announce.js +0 -0
 - /package/lib/{routes → routes-deprecated}/testerhome/newest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/thebrain/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/thunderbird/release.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tingdiantz/nanjing.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tingshen/tingshen.js +0 -0
 - /package/lib/{routes → routes-deprecated}/titsguru/category.js +0 -0
 - /package/lib/{routes → routes-deprecated}/titsguru/daily.js +0 -0
 - /package/lib/{routes → routes-deprecated}/titsguru/home.js +0 -0
 - /package/lib/{routes → routes-deprecated}/topbook/overview.js +0 -0
 - /package/lib/{routes → routes-deprecated}/topbook/today.js +0 -0
 - /package/lib/{routes → routes-deprecated}/trakt/collection.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ui-cn/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/uisdc/hangye.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/csnews.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/ecenews.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/eceseminar.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/ipoevents.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/ipostories.js +0 -0
 - /package/lib/{routes → routes-deprecated}/un/scveto.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ahau/cs_news/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ahau/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ahau/main/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/bwu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cczu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cczu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqu/news/jzyg.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqust/jw.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqust/lib.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-libnews.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cug/graduate.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cug/undergraduate.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cug/xgxy.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dgut/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dgut/xsc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dlmu/grs/zsgz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dpu/jiaowu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dpu/wlfw/news.js +0 -0
 - /package/lib/{routes/universities/fzu/news_min.js → routes-deprecated/universities/fzu/news-min.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/fzu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/gdou/jwc/jwtz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/gzmtu/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/gzmtu/tsg/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hbut/cs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hbut/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/henu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hfut/tzgg.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hnust/art/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hnust/chem/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hnust/computer/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hnust/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hubu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jgsu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jlbtc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jlbtc/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jlbtc/kyc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jlu/oa.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jnu/xysx/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ju/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/lyu/news/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/mit/csail/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/mit/ocw-top.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/nchu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/nku/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/context.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/context.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/scu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/scu/xg.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/csggxy.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/kjxy.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/tyyjkxy.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/tzgg.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/xsc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/thu/career.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/wzbc/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/xmu/aero.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/xynu/zkb/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ynu/grs/qttz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ynu/grs/zytz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ynu/home/main.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ynu/jwc/zytz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zjgsu/gsgg/scripts.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zjgsu/tzgg/scripts.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zjgsu/xszq/scripts.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zzuli/campus/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zzuli/yjsc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/us/cia/foia-annual-report.js +0 -0
 - /package/lib/{routes → routes-deprecated}/us/treasury/press-releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/us/ustr/press-releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/vgn/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/vocus/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/vscode/marketplace.js +0 -0
 - /package/lib/{routes → routes-deprecated}/vulture/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wainao/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wegene/newest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wenxuecity/bbs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wenxuecity/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wenxuecity/hot.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wenxuecity/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wikipedia/mainland.js +0 -0
 - /package/lib/{routes → routes-deprecated}/worldhappiness/archive.js +0 -0
 - /package/lib/{routes → routes-deprecated}/worldhappiness/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/x410/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xclient/app.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xiachufang/popular.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xiachufang/user/cooked.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xiachufang/user/created.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xiaomieu/releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xinwenlianbo/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xmind/mindmap.js +0 -0
 - /package/lib/{routes/xuetangx/course_info.js → routes-deprecated/xuetangx/course-info.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/yahoo-author/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/yidoutang/case.js +0 -0
 - /package/lib/{routes → routes-deprecated}/yidoutang/guide.js +0 -0
 - /package/lib/{routes → routes-deprecated}/yidoutang/mtest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/youzan/goods.js +0 -0
 - /package/lib/{routes → routes-deprecated}/yuanliao/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/zhimap/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/zongheng/chapter.js +0 -0
 
    
        package/lib/router.js
    CHANGED
    
    | 
         @@ -1,3 +1,4 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // eslint-disable-next-line n/no-extraneous-require
         
     | 
| 
       1 
2 
     | 
    
         
             
            const Router = require('@koa/router');
         
     | 
| 
       2 
3 
     | 
    
         
             
            const router = new Router();
         
     | 
| 
       3 
4 
     | 
    
         | 
| 
         @@ -16,309 +17,79 @@ const lazyloadRouteHandler = (routeHandlerPath) => (ctx) => { 
     | 
|
| 
       16 
17 
     | 
    
         | 
| 
       17 
18 
     | 
    
         
             
            // Deprecated: DO NOT ADD ANY NEW ROUTES HERE
         
     | 
| 
       18 
19 
     | 
    
         | 
| 
       19 
     | 
    
         
            -
            // RSSHub migrated to v2
         
     | 
| 
       20 
     | 
    
         
            -
            // router.get('/rsshub/rss', lazyloadRouteHandler('./routes/rsshub/routes')); // 弃用
         
     | 
| 
       21 
     | 
    
         
            -
            // router.get('/rsshub/routes', lazyloadRouteHandler('./routes/rsshub/routes'));
         
     | 
| 
       22 
     | 
    
         
            -
            // router.get('/rsshub/sponsors', lazyloadRouteHandler('./routes/rsshub/sponsors'));
         
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
            // 1draw
         
     | 
| 
       25 
     | 
    
         
            -
            router.get('/1draw', lazyloadRouteHandler('./routes/1draw/index'));
         
     | 
| 
       26 
     | 
    
         
            -
             
     | 
| 
       27 
     | 
    
         
            -
            // quicker
         
     | 
| 
       28 
     | 
    
         
            -
            // router.get('/quicker/qa', lazyloadRouteHandler('./routes/quicker/qa.js'));
         
     | 
| 
       29 
     | 
    
         
            -
            // router.get('/quicker/update', lazyloadRouteHandler('./routes/quicker/update.js'));
         
     | 
| 
       30 
     | 
    
         
            -
            // router.get('/quicker/user/action/:uid/:person', lazyloadRouteHandler('./routes/quicker/person.js'));
         
     | 
| 
       31 
     | 
    
         
            -
            // router.get('/quicker/user/:uid/:person', lazyloadRouteHandler('./routes/quicker/person.js'));
         
     | 
| 
       32 
     | 
    
         
            -
             
     | 
| 
       33 
20 
     | 
    
         
             
            // Benedict Evans
         
     | 
| 
       34 
21 
     | 
    
         
             
            router.get('/benedictevans', lazyloadRouteHandler('./routes/benedictevans/recent.js'));
         
     | 
| 
       35 
22 
     | 
    
         | 
| 
       36 
     | 
    
         
            -
            // bangumi
         
     | 
| 
       37 
     | 
    
         
            -
            // router.get('/bangumi/calendar/today', lazyloadRouteHandler('./routes/bangumi/calendar/today'));
         
     | 
| 
       38 
     | 
    
         
            -
            // router.get('/bangumi/subject/:id/:type', lazyloadRouteHandler('./routes/bangumi/subject'));
         
     | 
| 
       39 
     | 
    
         
            -
            // router.get('/bangumi/person/:id', lazyloadRouteHandler('./routes/bangumi/person'));
         
     | 
| 
       40 
     | 
    
         
            -
            // router.get('/bangumi/topic/:id', lazyloadRouteHandler('./routes/bangumi/group/reply'));
         
     | 
| 
       41 
     | 
    
         
            -
            // router.get('/bangumi/group/:id', lazyloadRouteHandler('./routes/bangumi/group/topic'));
         
     | 
| 
       42 
     | 
    
         
            -
            // router.get('/bangumi/subject/:id', lazyloadRouteHandler('./routes/bangumi/subject'));
         
     | 
| 
       43 
     | 
    
         
            -
            // router.get('/bangumi/user/blog/:id', lazyloadRouteHandler('./routes/bangumi/user/blog'));
         
     | 
| 
       44 
     | 
    
         
            -
             
     | 
| 
       45 
     | 
    
         
            -
            // 報導者 migrated to v2
         
     | 
| 
       46 
     | 
    
         
            -
            // router.get('/twreporter/newest', lazyloadRouteHandler('./routes/twreporter/newest'));
         
     | 
| 
       47 
     | 
    
         
            -
            // router.get('/twreporter/photography', lazyloadRouteHandler('./routes/twreporter/photography'));
         
     | 
| 
       48 
     | 
    
         
            -
            // router.get('/twreporter/category/:cid', lazyloadRouteHandler('./routes/twreporter/category'));
         
     | 
| 
       49 
     | 
    
         
            -
             
     | 
| 
       50 
     | 
    
         
            -
            // 微博 migrated to v2
         
     | 
| 
       51 
     | 
    
         
            -
            // router.get('/weibo/user/:uid/:routeParams?', lazyloadRouteHandler('./routes/weibo/user'));
         
     | 
| 
       52 
     | 
    
         
            -
            // router.get('/weibo/keyword/:keyword/:routeParams?', lazyloadRouteHandler('./routes/weibo/keyword'));
         
     | 
| 
       53 
     | 
    
         
            -
            // router.get('/weibo/search/hot', lazyloadRouteHandler('./routes/weibo/search/hot'));
         
     | 
| 
       54 
     | 
    
         
            -
            // router.get('/weibo/super_index/:id/:type?/:routeParams?', lazyloadRouteHandler('./routes/weibo/super_index'));
         
     | 
| 
       55 
     | 
    
         
            -
            // router.get('/weibo/oasis/user/:userid', lazyloadRouteHandler('./routes/weibo/oasis/user'));
         
     | 
| 
       56 
     | 
    
         
            -
             
     | 
| 
       57 
     | 
    
         
            -
            // 贴吧 migrated to v2
         
     | 
| 
       58 
     | 
    
         
            -
            // router.get('/tieba/forum/:kw', lazyloadRouteHandler('./routes/tieba/forum'));
         
     | 
| 
       59 
     | 
    
         
            -
            // router.get('/tieba/forum/good/:kw/:cid?', lazyloadRouteHandler('./routes/tieba/forum'));
         
     | 
| 
       60 
     | 
    
         
            -
            // router.get('/tieba/post/:id', lazyloadRouteHandler('./routes/tieba/post'));
         
     | 
| 
       61 
     | 
    
         
            -
            // router.get('/tieba/post/lz/:id', lazyloadRouteHandler('./routes/tieba/post'));
         
     | 
| 
       62 
     | 
    
         
            -
            // router.get('/tieba/user/:uid', lazyloadRouteHandler('./routes/tieba/user'));
         
     | 
| 
       63 
     | 
    
         
            -
             
     | 
| 
       64 
     | 
    
         
            -
            // 网易云音乐
         
     | 
| 
       65 
     | 
    
         
            -
            // router.get('/ncm/playlist/:id', lazyloadRouteHandler('./routes/ncm/playlist'));
         
     | 
| 
       66 
     | 
    
         
            -
            // router.get('/ncm/user/playlist/:uid', lazyloadRouteHandler('./routes/ncm/userplaylist'));
         
     | 
| 
       67 
     | 
    
         
            -
            // router.get('/ncm/artist/:id', lazyloadRouteHandler('./routes/ncm/artist'));
         
     | 
| 
       68 
     | 
    
         
            -
            // router.get('/ncm/djradio/:id', lazyloadRouteHandler('./routes/ncm/djradio'));
         
     | 
| 
       69 
     | 
    
         
            -
            // router.get('/ncm/user/playrecords/:uid/:type?', lazyloadRouteHandler('./routes/ncm/userplayrecords'));
         
     | 
| 
       70 
     | 
    
         
            -
             
     | 
| 
       71 
     | 
    
         
            -
            // 掘金 migrated to v2
         
     | 
| 
       72 
     | 
    
         
            -
            // router.get('/juejin/category/:category', lazyloadRouteHandler('./routes/juejin/category'));
         
     | 
| 
       73 
     | 
    
         
            -
            // router.get('/juejin/tag/:tag', lazyloadRouteHandler('./routes/juejin/tag'));
         
     | 
| 
       74 
     | 
    
         
            -
            // router.get('/juejin/trending/:category/:type', lazyloadRouteHandler('./routes/juejin/trending'));
         
     | 
| 
       75 
     | 
    
         
            -
            // router.get('/juejin/books', lazyloadRouteHandler('./routes/juejin/books'));
         
     | 
| 
       76 
     | 
    
         
            -
            // router.get('/juejin/pins/:type?', lazyloadRouteHandler('./routes/juejin/pins'));
         
     | 
| 
       77 
     | 
    
         
            -
            // router.get('/juejin/posts/:id', lazyloadRouteHandler('./routes/juejin/posts'));
         
     | 
| 
       78 
     | 
    
         
            -
            // router.get('/juejin/news/:id', lazyloadRouteHandler('./routes/juejin/news'));
         
     | 
| 
       79 
     | 
    
         
            -
            // router.get('/juejin/collections/:userId', lazyloadRouteHandler('./routes/juejin/favorites'));
         
     | 
| 
       80 
     | 
    
         
            -
            // router.get('/juejin/collection/:collectionId', lazyloadRouteHandler('./routes/juejin/collection'));
         
     | 
| 
       81 
     | 
    
         
            -
            // router.get('/juejin/shares/:userId', lazyloadRouteHandler('./routes/juejin/shares'));
         
     | 
| 
       82 
     | 
    
         
            -
            // router.get('/juejin/column/:id', lazyloadRouteHandler('./routes/juejin/column'));
         
     | 
| 
       83 
     | 
    
         
            -
             
     | 
| 
       84 
     | 
    
         
            -
            // 自如
         
     | 
| 
       85 
     | 
    
         
            -
            router.get('/ziroom/room/:city/:iswhole/:room/:keyword', lazyloadRouteHandler('./routes/ziroom/room'));
         
     | 
| 
       86 
     | 
    
         
            -
             
     | 
| 
       87 
23 
     | 
    
         
             
            // 简书
         
     | 
| 
       88 
     | 
    
         
            -
            router.get('/jianshu/home', lazyloadRouteHandler('./routes/jianshu/home'));
         
     | 
| 
       89 
     | 
    
         
            -
            router.get('/jianshu/ 
     | 
| 
       90 
     | 
    
         
            -
            router.get('/jianshu/ 
     | 
| 
       91 
     | 
    
         
            -
            router.get('/jianshu/user/:id', lazyloadRouteHandler('./routes/jianshu/user'));
         
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
     | 
    
         
            -
            // 知乎 migrated to v2
         
     | 
| 
       94 
     | 
    
         
            -
            // router.get('/zhihu/collection/:id/:getAll?', lazyloadRouteHandler('./routes/zhihu/collection'));
         
     | 
| 
       95 
     | 
    
         
            -
            // router.get('/zhihu/people/activities/:id', lazyloadRouteHandler('./routes/zhihu/activities'));
         
     | 
| 
       96 
     | 
    
         
            -
            // router.get('/zhihu/people/answers/:id', lazyloadRouteHandler('./routes/zhihu/answers'));
         
     | 
| 
       97 
     | 
    
         
            -
            // router.get('/zhihu/posts/:usertype/:id', lazyloadRouteHandler('./routes/zhihu/posts'));
         
     | 
| 
       98 
     | 
    
         
            -
            // router.get('/zhihu/zhuanlan/:id', lazyloadRouteHandler('./routes/zhihu/zhuanlan'));
         
     | 
| 
       99 
     | 
    
         
            -
            // router.get('/zhihu/daily', lazyloadRouteHandler('./routes/zhihu/daily'));
         
     | 
| 
       100 
     | 
    
         
            -
            // router.get('/zhihu/daily/section/:sectionId', lazyloadRouteHandler('./routes/zhihu/daily_section'));
         
     | 
| 
       101 
     | 
    
         
            -
            // router.get('/zhihu/hotlist', lazyloadRouteHandler('./routes/zhihu/hotlist'));
         
     | 
| 
       102 
     | 
    
         
            -
            // router.get('/zhihu/pin/hotlist', lazyloadRouteHandler('./routes/zhihu/pin/hotlist'));
         
     | 
| 
       103 
     | 
    
         
            -
            // router.get('/zhihu/question/:questionId', lazyloadRouteHandler('./routes/zhihu/question'));
         
     | 
| 
       104 
     | 
    
         
            -
            // router.get('/zhihu/topic/:topicId', lazyloadRouteHandler('./routes/zhihu/topic'));
         
     | 
| 
       105 
     | 
    
         
            -
            // router.get('/zhihu/people/pins/:id', lazyloadRouteHandler('./routes/zhihu/pin/people'));
         
     | 
| 
       106 
     | 
    
         
            -
            // router.get('/zhihu/bookstore/newest', lazyloadRouteHandler('./routes/zhihu/bookstore/newest'));
         
     | 
| 
       107 
     | 
    
         
            -
            // router.get('/zhihu/pin/daily', lazyloadRouteHandler('./routes/zhihu/pin/daily'));
         
     | 
| 
       108 
     | 
    
         
            -
            // router.get('/zhihu/weekly', lazyloadRouteHandler('./routes/zhihu/weekly'));
         
     | 
| 
       109 
     | 
    
         
            -
            // router.get('/zhihu/timeline', lazyloadRouteHandler('./routes/zhihu/timeline'));
         
     | 
| 
       110 
     | 
    
         
            -
            // router.get('/zhihu/hot/:category?', lazyloadRouteHandler('./routes/zhihu/hot'));
         
     | 
| 
       111 
     | 
    
         
            -
             
     | 
| 
       112 
     | 
    
         
            -
            // 妹子图
         
     | 
| 
       113 
     | 
    
         
            -
            router.get('/mzitu/home/:type?', lazyloadRouteHandler('./routes/mzitu/home'));
         
     | 
| 
       114 
     | 
    
         
            -
            router.get('/mzitu/tags', lazyloadRouteHandler('./routes/mzitu/tags'));
         
     | 
| 
       115 
     | 
    
         
            -
            router.get('/mzitu/category/:category', lazyloadRouteHandler('./routes/mzitu/category'));
         
     | 
| 
       116 
     | 
    
         
            -
            router.get('/mzitu/post/:id', lazyloadRouteHandler('./routes/mzitu/post'));
         
     | 
| 
       117 
     | 
    
         
            -
            router.get('/mzitu/tag/:tag', lazyloadRouteHandler('./routes/mzitu/tag'));
         
     | 
| 
       118 
     | 
    
         
            -
             
     | 
| 
       119 
     | 
    
         
            -
            // pixiv migrated to v2
         
     | 
| 
       120 
     | 
    
         
            -
            // router.get('/pixiv/user/bookmarks/:id', lazyloadRouteHandler('./routes/pixiv/bookmarks'));
         
     | 
| 
       121 
     | 
    
         
            -
            // router.get('/pixiv/user/illustfollows', lazyloadRouteHandler('./routes/pixiv/illustfollow'));
         
     | 
| 
       122 
     | 
    
         
            -
            // router.get('/pixiv/user/:id', lazyloadRouteHandler('./routes/pixiv/user'));
         
     | 
| 
       123 
     | 
    
         
            -
            // router.get('/pixiv/ranking/:mode/:date?', lazyloadRouteHandler('./routes/pixiv/ranking'));
         
     | 
| 
       124 
     | 
    
         
            -
            // router.get('/pixiv/search/:keyword/:order?/:mode?', lazyloadRouteHandler('./routes/pixiv/search'));
         
     | 
| 
       125 
     | 
    
         
            -
             
     | 
| 
       126 
     | 
    
         
            -
            // pixiv-fanbox
         
     | 
| 
       127 
     | 
    
         
            -
            router.get('/fanbox/:user?', lazyloadRouteHandler('./routes/fanbox/main'));
         
     | 
| 
       128 
     | 
    
         
            -
             
     | 
| 
       129 
     | 
    
         
            -
            // 法律白話文運動
         
     | 
| 
       130 
     | 
    
         
            -
            router.get('/plainlaw/archives', lazyloadRouteHandler('./routes/plainlaw/archives.js'));
         
     | 
| 
       131 
     | 
    
         
            -
             
     | 
| 
       132 
     | 
    
         
            -
            // 煎蛋
         
     | 
| 
       133 
     | 
    
         
            -
            // router.get('/jandan/article', lazyloadRouteHandler('./routes/jandan/article'));
         
     | 
| 
       134 
     | 
    
         
            -
            // router.get('/jandan/:sub_model', lazyloadRouteHandler('./routes/jandan/pic'));
         
     | 
| 
       135 
     | 
    
         
            -
             
     | 
| 
       136 
     | 
    
         
            -
            // 喷嚏
         
     | 
| 
       137 
     | 
    
         
            -
            // router.get('/dapenti/tugua', lazyloadRouteHandler('./routes/dapenti/tugua'));
         
     | 
| 
       138 
     | 
    
         
            -
            // router.get('/dapenti/subject/:id', lazyloadRouteHandler('./routes/dapenti/subject'));
         
     | 
| 
       139 
     | 
    
         
            -
             
     | 
| 
       140 
     | 
    
         
            -
            // Dockone
         
     | 
| 
       141 
     | 
    
         
            -
            router.get('/dockone/weekly', lazyloadRouteHandler('./routes/dockone/weekly'));
         
     | 
| 
       142 
     | 
    
         
            -
             
     | 
| 
       143 
     | 
    
         
            -
            // 众成翻译
         
     | 
| 
       144 
     | 
    
         
            -
            router.get('/zcfy', lazyloadRouteHandler('./routes/zcfy/index'));
         
     | 
| 
       145 
     | 
    
         
            -
            router.get('/zcfy/index', lazyloadRouteHandler('./routes/zcfy/index')); // 废弃
         
     | 
| 
       146 
     | 
    
         
            -
            router.get('/zcfy/hot', lazyloadRouteHandler('./routes/zcfy/hot'));
         
     | 
| 
       147 
     | 
    
         
            -
             
     | 
| 
       148 
     | 
    
         
            -
            // 今日头条
         
     | 
| 
       149 
     | 
    
         
            -
            router.get('/jinritoutiao/keyword/:keyword', lazyloadRouteHandler('./routes/jinritoutiao/keyword'));
         
     | 
| 
      
 24 
     | 
    
         
            +
            // router.get('/jianshu/home', lazyloadRouteHandler('./routes/jianshu/home'));
         
     | 
| 
      
 25 
     | 
    
         
            +
            // router.get('/jianshu/collection/:id', lazyloadRouteHandler('./routes/jianshu/collection'));
         
     | 
| 
      
 26 
     | 
    
         
            +
            // router.get('/jianshu/user/:id', lazyloadRouteHandler('./routes/jianshu/user'));
         
     | 
| 
       150 
27 
     | 
    
         | 
| 
       151 
28 
     | 
    
         
             
            // Disqus
         
     | 
| 
       152 
29 
     | 
    
         
             
            router.get('/disqus/posts/:forum', lazyloadRouteHandler('./routes/disqus/posts'));
         
     | 
| 
       153 
30 
     | 
    
         | 
| 
       154 
     | 
    
         
            -
            // Twitter
         
     | 
| 
       155 
     | 
    
         
            -
            // router.get('/twitter/user/:id/:routeParams?', lazyloadRouteHandler('./routes/twitter/user'));
         
     | 
| 
       156 
     | 
    
         
            -
            // router.get('/twitter/list/:id/:name/:routeParams?', lazyloadRouteHandler('./routes/twitter/list'));
         
     | 
| 
       157 
     | 
    
         
            -
            // router.get('/twitter/likes/:id/:routeParams?', lazyloadRouteHandler('./routes/twitter/likes'));
         
     | 
| 
       158 
     | 
    
         
            -
            // router.get('/twitter/followings/:id/:routeParams?', lazyloadRouteHandler('./routes/twitter/followings'));
         
     | 
| 
       159 
     | 
    
         
            -
            // router.get('/twitter/keyword/:keyword/:routeParams?/:limit?', lazyloadRouteHandler('./routes/twitter/keyword'));
         
     | 
| 
       160 
     | 
    
         
            -
            // router.get('/twitter/trends/:woeid?', lazyloadRouteHandler('./routes/twitter/trends'));
         
     | 
| 
       161 
     | 
    
         
            -
            // router.get('/twitter/media/:id/:routeParams?', lazyloadRouteHandler('./routes/twitter/media'));
         
     | 
| 
       162 
     | 
    
         
            -
             
     | 
| 
       163 
     | 
    
         
            -
            // YouTube migrated to v2
         
     | 
| 
       164 
     | 
    
         
            -
            // router.get('/youtube/user/:username/:embed?', lazyloadRouteHandler('./routes/youtube/user'));
         
     | 
| 
       165 
     | 
    
         
            -
            // router.get('/youtube/channel/:id/:embed?', lazyloadRouteHandler('./routes/youtube/channel'));
         
     | 
| 
       166 
     | 
    
         
            -
            // router.get('/youtube/playlist/:id/:embed?', lazyloadRouteHandler('./routes/youtube/playlist'));
         
     | 
| 
       167 
     | 
    
         
            -
             
     | 
| 
       168 
31 
     | 
    
         
             
            // 极客时间
         
     | 
| 
       169 
32 
     | 
    
         
             
            router.get('/geektime/column/:cid', lazyloadRouteHandler('./routes/geektime/column'));
         
     | 
| 
       170 
     | 
    
         
            -
            router.get('/geektime/news', lazyloadRouteHandler('./routes/geektime/news'));
         
     | 
| 
       171 
     | 
    
         
            -
             
     | 
| 
       172 
     | 
    
         
            -
            // 界面新闻
         
     | 
| 
       173 
     | 
    
         
            -
            // router.get('/jiemian/list/:cid', lazyloadRouteHandler('./routes/jiemian/list.js'));
         
     | 
| 
       174 
     | 
    
         
            -
             
     | 
| 
       175 
     | 
    
         
            -
            // 好奇心日报
         
     | 
| 
       176 
     | 
    
         
            -
            // router.get('/qdaily/:type/:id', lazyloadRouteHandler('./routes/qdaily/index'));
         
     | 
| 
       177 
     | 
    
         
            -
             
     | 
| 
       178 
     | 
    
         
            -
            // 爱奇艺
         
     | 
| 
       179 
     | 
    
         
            -
            // router.get('/iqiyi/dongman/:id', lazyloadRouteHandler('./routes/iqiyi/dongman'));
         
     | 
| 
       180 
     | 
    
         
            -
            // router.get('/iqiyi/user/video/:uid', lazyloadRouteHandler('./routes/iqiyi/video'));
         
     | 
| 
       181 
     | 
    
         
            -
             
     | 
| 
       182 
     | 
    
         
            -
            // 南方周末
         
     | 
| 
       183 
     | 
    
         
            -
            router.get('/infzm/:id', lazyloadRouteHandler('./routes/infzm/news'));
         
     | 
| 
       184 
33 
     | 
    
         | 
| 
       185 
34 
     | 
    
         
             
            // Dribbble
         
     | 
| 
       186 
     | 
    
         
            -
            router.get('/dribbble/popular/:timeframe?', lazyloadRouteHandler('./routes/dribbble/popular'));
         
     | 
| 
       187 
     | 
    
         
            -
            router.get('/dribbble/user/:name', lazyloadRouteHandler('./routes/dribbble/user'));
         
     | 
| 
       188 
     | 
    
         
            -
            router.get('/dribbble/keyword/:keyword', lazyloadRouteHandler('./routes/dribbble/keyword'));
         
     | 
| 
       189 
     | 
    
         
            -
             
     | 
| 
       190 
     | 
    
         
            -
            // 斗鱼
         
     | 
| 
       191 
     | 
    
         
            -
            // router.get('/douyu/room/:id', lazyloadRouteHandler('./routes/douyu/room'));
         
     | 
| 
      
 35 
     | 
    
         
            +
            // router.get('/dribbble/popular/:timeframe?', lazyloadRouteHandler('./routes/dribbble/popular'));
         
     | 
| 
      
 36 
     | 
    
         
            +
            // router.get('/dribbble/user/:name', lazyloadRouteHandler('./routes/dribbble/user'));
         
     | 
| 
      
 37 
     | 
    
         
            +
            // router.get('/dribbble/keyword/:keyword', lazyloadRouteHandler('./routes/dribbble/keyword'));
         
     | 
| 
       192 
38 
     | 
    
         | 
| 
       193 
39 
     | 
    
         
             
            // 虎牙
         
     | 
| 
       194 
40 
     | 
    
         
             
            router.get('/huya/live/:id', lazyloadRouteHandler('./routes/huya/live'));
         
     | 
| 
       195 
41 
     | 
    
         | 
| 
       196 
     | 
    
         
            -
            // 浪Play(原kingkong)直播
         
     | 
| 
       197 
     | 
    
         
            -
            // router.get('/kingkong/room/:id', lazyloadRouteHandler('./routes/langlive/room'));
         
     | 
| 
       198 
     | 
    
         
            -
            // router.get('/langlive/room/:id', lazyloadRouteHandler('./routes/langlive/room'));
         
     | 
| 
       199 
     | 
    
         
            -
             
     | 
| 
       200 
     | 
    
         
            -
            // SHOWROOM直播
         
     | 
| 
       201 
     | 
    
         
            -
            router.get('/showroom/room/:id', lazyloadRouteHandler('./routes/showroom/room'));
         
     | 
| 
       202 
     | 
    
         
            -
             
     | 
| 
       203 
42 
     | 
    
         
             
            // v2ex
         
     | 
| 
       204 
     | 
    
         
            -
            router.get('/v2ex/topics/:type', lazyloadRouteHandler('./routes/v2ex/topics'));
         
     | 
| 
       205 
     | 
    
         
            -
            router.get('/v2ex/post/:postid', lazyloadRouteHandler('./routes/v2ex/post'));
         
     | 
| 
       206 
     | 
    
         
            -
            router.get('/v2ex/tab/:tabid', lazyloadRouteHandler('./routes/v2ex/tab'));
         
     | 
| 
       207 
     | 
    
         
            -
             
     | 
| 
       208 
     | 
    
         
            -
            // Readhub migrated to v2
         
     | 
| 
       209 
     | 
    
         
            -
            // router.get('/readhub/category/:category?', lazyloadRouteHandler('./routes/readhub/index'));
         
     | 
| 
       210 
     | 
    
         
            -
            // router.get('/readhub/:category?', lazyloadRouteHandler('./routes/readhub/index'));
         
     | 
| 
      
 43 
     | 
    
         
            +
            // router.get('/v2ex/topics/:type', lazyloadRouteHandler('./routes/v2ex/topics'));
         
     | 
| 
      
 44 
     | 
    
         
            +
            // router.get('/v2ex/post/:postid', lazyloadRouteHandler('./routes/v2ex/post'));
         
     | 
| 
      
 45 
     | 
    
         
            +
            // router.get('/v2ex/tab/:tabid', lazyloadRouteHandler('./routes/v2ex/tab'));
         
     | 
| 
       211 
46 
     | 
    
         | 
| 
       212 
47 
     | 
    
         
             
            // f-droid
         
     | 
| 
       213 
     | 
    
         
            -
            router.get('/fdroid/apprelease/:app', lazyloadRouteHandler('./routes/fdroid/apprelease'));
         
     | 
| 
      
 48 
     | 
    
         
            +
            // router.get('/fdroid/apprelease/:app', lazyloadRouteHandler('./routes/fdroid/apprelease'));
         
     | 
| 
       214 
49 
     | 
    
         | 
| 
       215 
50 
     | 
    
         
             
            // konachan
         
     | 
| 
       216 
     | 
    
         
            -
            router.get('/konachan/post/popular_recent', lazyloadRouteHandler('./routes/konachan/ 
     | 
| 
       217 
     | 
    
         
            -
            router.get('/konachan.com/post/popular_recent', lazyloadRouteHandler('./routes/konachan/ 
     | 
| 
       218 
     | 
    
         
            -
            router.get('/konachan.net/post/popular_recent', lazyloadRouteHandler('./routes/konachan/ 
     | 
| 
       219 
     | 
    
         
            -
            router.get('/konachan/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/ 
     | 
| 
       220 
     | 
    
         
            -
            router.get('/konachan.com/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/ 
     | 
| 
       221 
     | 
    
         
            -
            router.get('/konachan.net/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/ 
     | 
| 
      
 51 
     | 
    
         
            +
            router.get('/konachan/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
         
     | 
| 
      
 52 
     | 
    
         
            +
            router.get('/konachan.com/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
         
     | 
| 
      
 53 
     | 
    
         
            +
            router.get('/konachan.net/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
         
     | 
| 
      
 54 
     | 
    
         
            +
            router.get('/konachan/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
         
     | 
| 
      
 55 
     | 
    
         
            +
            router.get('/konachan.com/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
         
     | 
| 
      
 56 
     | 
    
         
            +
            router.get('/konachan.net/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
         
     | 
| 
       222 
57 
     | 
    
         | 
| 
       223 
58 
     | 
    
         
             
            // PornHub
         
     | 
| 
       224 
     | 
    
         
            -
            router.get('/pornhub/category/:caty', lazyloadRouteHandler('./routes/pornhub/category'));
         
     | 
| 
       225 
     | 
    
         
            -
            router.get('/pornhub/search/:keyword', lazyloadRouteHandler('./routes/pornhub/search'));
         
     | 
| 
       226 
     | 
    
         
            -
            router.get('/pornhub/:language?/category_url/:url?', lazyloadRouteHandler('./routes/pornhub/category_url'));
         
     | 
| 
       227 
     | 
    
         
            -
            router.get('/pornhub/:language?/users/:username', lazyloadRouteHandler('./routes/pornhub/users'));
         
     | 
| 
       228 
     | 
    
         
            -
            router.get('/pornhub/:language?/model/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/model'));
         
     | 
| 
       229 
     | 
    
         
            -
            router.get('/pornhub/:language?/pornstar/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/pornstar'));
         
     | 
| 
       230 
     | 
    
         
            -
             
     | 
| 
       231 
     | 
    
         
            -
            // Prestige migrated to v2
         
     | 
| 
       232 
     | 
    
         
            -
            // router.get('/prestige-av/series/:mid/:sort?', lazyloadRouteHandler('./routes/prestige-av/series'));
         
     | 
| 
       233 
     | 
    
         
            -
             
     | 
| 
       234 
     | 
    
         
            -
            // yande.re
         
     | 
| 
       235 
     | 
    
         
            -
            router.get('/yande.re/post/popular_recent', lazyloadRouteHandler('./routes/yande.re/post_popular_recent'));
         
     | 
| 
       236 
     | 
    
         
            -
            router.get('/yande.re/post/popular_recent/:period', lazyloadRouteHandler('./routes/yande.re/post_popular_recent'));
         
     | 
| 
       237 
     | 
    
         
            -
             
     | 
| 
       238 
     | 
    
         
            -
            // 纽约时报 migrated to v2
         
     | 
| 
       239 
     | 
    
         
            -
            // router.get('/nytimes/daily_briefing_chinese', lazyloadRouteHandler('./routes/nytimes/daily_briefing_chinese'));
         
     | 
| 
       240 
     | 
    
         
            -
            // router.get('/nytimes/book/:category?', lazyloadRouteHandler('./routes/nytimes/book.js'));
         
     | 
| 
       241 
     | 
    
         
            -
            // router.get('/nytimes/author/:byline', lazyloadRouteHandler('./routes/nytimes/author.js'));
         
     | 
| 
       242 
     | 
    
         
            -
            // router.get('/nytimes/:lang?', lazyloadRouteHandler('./routes/nytimes/index'));
         
     | 
| 
       243 
     | 
    
         
            -
             
     | 
| 
       244 
     | 
    
         
            -
            // 3dm
         
     | 
| 
       245 
     | 
    
         
            -
            router.get('/3dm/:name/:type', lazyloadRouteHandler('./routes/3dm/game'));
         
     | 
| 
       246 
     | 
    
         
            -
            router.get('/3dm/news', lazyloadRouteHandler('./routes/3dm/news_center'));
         
     | 
| 
       247 
     | 
    
         
            -
             
     | 
| 
       248 
     | 
    
         
            -
            // 喜马拉雅
         
     | 
| 
       249 
     | 
    
         
            -
            router.get('/ximalaya/:type/:id/:all?', lazyloadRouteHandler('./routes/ximalaya/album'));
         
     | 
| 
       250 
     | 
    
         
            -
            router.get('/ximalaya/:type/:id/:all/:shownote?', lazyloadRouteHandler('./routes/ximalaya/album'));
         
     | 
| 
      
 59 
     | 
    
         
            +
            // router.get('/pornhub/category/:caty', lazyloadRouteHandler('./routes/pornhub/category'));
         
     | 
| 
      
 60 
     | 
    
         
            +
            // router.get('/pornhub/search/:keyword', lazyloadRouteHandler('./routes/pornhub/search'));
         
     | 
| 
      
 61 
     | 
    
         
            +
            // router.get('/pornhub/:language?/category_url/:url?', lazyloadRouteHandler('./routes/pornhub/category_url'));
         
     | 
| 
      
 62 
     | 
    
         
            +
            // router.get('/pornhub/:language?/users/:username', lazyloadRouteHandler('./routes/pornhub/users'));
         
     | 
| 
      
 63 
     | 
    
         
            +
            // router.get('/pornhub/:language?/model/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/model'));
         
     | 
| 
      
 64 
     | 
    
         
            +
            // router.get('/pornhub/:language?/pornstar/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/pornstar'));
         
     | 
| 
       251 
65 
     | 
    
         | 
| 
       252 
66 
     | 
    
         
             
            // EZTV
         
     | 
| 
       253 
67 
     | 
    
         
             
            router.get('/eztv/torrents/:imdb_id', lazyloadRouteHandler('./routes/eztv/imdb'));
         
     | 
| 
       254 
68 
     | 
    
         | 
| 
       255 
     | 
    
         
            -
            // 什么值得买
         
     | 
| 
       256 
     | 
    
         
            -
            // router.get('/smzdm/keyword/:keyword', lazyloadRouteHandler('./routes/smzdm/keyword'));
         
     | 
| 
       257 
     | 
    
         
            -
            // router.get('/smzdm/ranking/:rank_type/:rank_id/:hour', lazyloadRouteHandler('./routes/smzdm/ranking'));
         
     | 
| 
       258 
     | 
    
         
            -
            // router.get('/smzdm/haowen/:day?', lazyloadRouteHandler('./routes/smzdm/haowen'));
         
     | 
| 
       259 
     | 
    
         
            -
            // router.get('/smzdm/haowen/fenlei/:name/:sort?', lazyloadRouteHandler('./routes/smzdm/haowen_fenlei'));
         
     | 
| 
       260 
     | 
    
         
            -
            // router.get('/smzdm/article/:uid', lazyloadRouteHandler('./routes/smzdm/article'));
         
     | 
| 
       261 
     | 
    
         
            -
            // router.get('/smzdm/baoliao/:uid', lazyloadRouteHandler('./routes/smzdm/baoliao'));
         
     | 
| 
       262 
     | 
    
         
            -
             
     | 
| 
       263 
69 
     | 
    
         
             
            // 新京报
         
     | 
| 
       264 
70 
     | 
    
         
             
            router.get('/bjnews/:cat', lazyloadRouteHandler('./routes/bjnews/news'));
         
     | 
| 
       265 
     | 
    
         
            -
            router.get('/bjnews/epaper/:cat', lazyloadRouteHandler('./routes/bjnews/epaper'));
         
     | 
| 
       266 
     | 
    
         
            -
             
     | 
| 
       267 
     | 
    
         
            -
            // 停水通知 migrated to v2
         
     | 
| 
       268 
     | 
    
         
            -
            // router.get('/tingshuitz/hangzhou', lazyloadRouteHandler('./routes/tingshuitz/hangzhou'));
         
     | 
| 
       269 
     | 
    
         
            -
            // router.get('/tingshuitz/xiaoshan', lazyloadRouteHandler('./routes/tingshuitz/xiaoshan'));
         
     | 
| 
       270 
     | 
    
         
            -
            // router.get('/tingshuitz/dalian', lazyloadRouteHandler('./routes/tingshuitz/dalian'));
         
     | 
| 
       271 
     | 
    
         
            -
            // router.get('/tingshuitz/guangzhou', lazyloadRouteHandler('./routes/tingshuitz/guangzhou'));
         
     | 
| 
       272 
     | 
    
         
            -
            // router.get('/tingshuitz/dongguan', lazyloadRouteHandler('./routes/tingshuitz/dongguan'));
         
     | 
| 
       273 
     | 
    
         
            -
            // router.get('/tingshuitz/xian', lazyloadRouteHandler('./routes/tingshuitz/xian'));
         
     | 
| 
       274 
     | 
    
         
            -
            // router.get('/tingshuitz/yangjiang', lazyloadRouteHandler('./routes/tingshuitz/yangjiang'));
         
     | 
| 
       275 
     | 
    
         
            -
            // router.get('/tingshuitz/nanjing', lazyloadRouteHandler('./routes/tingshuitz/nanjing'));
         
     | 
| 
       276 
     | 
    
         
            -
            // router.get('/tingshuitz/wuhan', lazyloadRouteHandler('./routes/tingshuitz/wuhan'));
         
     | 
| 
       277 
71 
     | 
    
         | 
| 
       278 
72 
     | 
    
         
             
            // 米哈游
         
     | 
| 
       279 
73 
     | 
    
         
             
            router.get('/mihoyo/bh3/:type', lazyloadRouteHandler('./routes/mihoyo/bh3'));
         
     | 
| 
       280 
74 
     | 
    
         
             
            router.get('/mihoyo/bh2/:type', lazyloadRouteHandler('./routes/mihoyo/bh2'));
         
     | 
| 
       281 
75 
     | 
    
         | 
| 
       282 
     | 
    
         
            -
            // 新闻联播 migrated to v2
         
     | 
| 
       283 
     | 
    
         
            -
            // router.get('/cctv/xwlb', lazyloadRouteHandler('./routes/cctv/xwlb'));
         
     | 
| 
       284 
     | 
    
         
            -
            // 央视新闻
         
     | 
| 
       285 
     | 
    
         
            -
            // router.get('/cctv/lm/:id?', lazyloadRouteHandler('./routes/cctv/lm'));
         
     | 
| 
       286 
     | 
    
         
            -
            // router.get('/cctv/:category', lazyloadRouteHandler('./routes/cctv/category'));
         
     | 
| 
       287 
     | 
    
         
            -
            // router.get('/cctv/photo/jx', lazyloadRouteHandler('./routes/cctv/jx'));
         
     | 
| 
       288 
     | 
    
         
            -
            // router.get('/cctv-special/:id?', lazyloadRouteHandler('./routes/cctv/special'));
         
     | 
| 
       289 
     | 
    
         
            -
             
     | 
| 
       290 
     | 
    
         
            -
            // 财新博客
         
     | 
| 
       291 
     | 
    
         
            -
            // router.get('/caixin/blog/:column', lazyloadRouteHandler('./routes/caixin/blog'));
         
     | 
| 
       292 
     | 
    
         
            -
            // router.get('/caixin/article', lazyloadRouteHandler('./routes/caixin/article'));
         
     | 
| 
       293 
     | 
    
         
            -
            // router.get('/caixin/database', lazyloadRouteHandler('./routes/caixin/database'));
         
     | 
| 
       294 
     | 
    
         
            -
            // router.get('/caixin/yxnews', lazyloadRouteHandler('./routes/caixin/yxnews'));
         
     | 
| 
       295 
     | 
    
         
            -
            // router.get('/caixin/:column/:category', lazyloadRouteHandler('./routes/caixin/category'));
         
     | 
| 
       296 
     | 
    
         
            -
             
     | 
| 
       297 
76 
     | 
    
         
             
            // 草榴社区
         
     | 
| 
       298 
     | 
    
         
            -
            router.get('/t66y/post/:tid', lazyloadRouteHandler('./routes/t66y/post'));
         
     | 
| 
       299 
     | 
    
         
            -
            router.get('/t66y/:id/:type?', lazyloadRouteHandler('./routes/t66y/index'));
         
     | 
| 
      
 77 
     | 
    
         
            +
            // router.get('/t66y/post/:tid', lazyloadRouteHandler('./routes/t66y/post'));
         
     | 
| 
      
 78 
     | 
    
         
            +
            // router.get('/t66y/:id/:type?', lazyloadRouteHandler('./routes/t66y/index'));
         
     | 
| 
       300 
79 
     | 
    
         | 
| 
       301 
80 
     | 
    
         
             
            // 色中色
         
     | 
| 
       302 
81 
     | 
    
         
             
            router.get('/sexinsex/:id/:type?', lazyloadRouteHandler('./routes/sexinsex/index'));
         
     | 
| 
       303 
82 
     | 
    
         | 
| 
       304 
     | 
    
         
            -
            // 国家地理 migrated to v2
         
     | 
| 
       305 
     | 
    
         
            -
            // router.get('/natgeo/dailyselection', lazyloadRouteHandler('./routes/natgeo/dailyselection'));
         
     | 
| 
       306 
     | 
    
         
            -
            // router.get('/natgeo/dailyphoto', lazyloadRouteHandler('./routes/natgeo/dailyphoto'));
         
     | 
| 
       307 
     | 
    
         
            -
            // router.get('/natgeo/:cat/:type?', lazyloadRouteHandler('./routes/natgeo/natgeo'));
         
     | 
| 
       308 
     | 
    
         
            -
             
     | 
| 
       309 
83 
     | 
    
         
             
            // 一个
         
     | 
| 
       310 
84 
     | 
    
         
             
            router.get('/one', lazyloadRouteHandler('./routes/one/index'));
         
     | 
| 
       311 
85 
     | 
    
         | 
| 
       312 
86 
     | 
    
         
             
            // Firefox
         
     | 
| 
       313 
     | 
    
         
            -
            router.get('/firefox/release/:platform', lazyloadRouteHandler('./routes/firefox/release'));
         
     | 
| 
       314 
     | 
    
         
            -
            router.get('/firefox/addons/:id', lazyloadRouteHandler('./routes/firefox/addons'));
         
     | 
| 
      
 87 
     | 
    
         
            +
            // router.get('/firefox/release/:platform', lazyloadRouteHandler('./routes/firefox/release'));
         
     | 
| 
      
 88 
     | 
    
         
            +
            // router.get('/firefox/addons/:id', lazyloadRouteHandler('./routes/firefox/addons'));
         
     | 
| 
       315 
89 
     | 
    
         | 
| 
       316 
90 
     | 
    
         
             
            // Thunderbird
         
     | 
| 
       317 
91 
     | 
    
         
             
            router.get('/thunderbird/release', lazyloadRouteHandler('./routes/thunderbird/release'));
         
     | 
| 
       318 
92 
     | 
    
         | 
| 
       319 
     | 
    
         
            -
            // tuicool
         
     | 
| 
       320 
     | 
    
         
            -
            router.get('/tuicool/mags/:type', lazyloadRouteHandler('./routes/tuicool/mags'));
         
     | 
| 
       321 
     | 
    
         
            -
             
     | 
| 
       322 
93 
     | 
    
         
             
            // Hexo
         
     | 
| 
       323 
94 
     | 
    
         
             
            router.get('/hexo/next/:url', lazyloadRouteHandler('./routes/hexo/next'));
         
     | 
| 
       324 
95 
     | 
    
         
             
            router.get('/hexo/yilia/:url', lazyloadRouteHandler('./routes/hexo/yilia'));
         
     | 
| 
         @@ -328,176 +99,60 @@ router.get('/hexo/fluid/:url', lazyloadRouteHandler('./routes/hexo/fluid')); 
     | 
|
| 
       328 
99 
     | 
    
         
             
            router.get('/cpython/:pre?', lazyloadRouteHandler('./routes/cpython'));
         
     | 
| 
       329 
100 
     | 
    
         | 
| 
       330 
101 
     | 
    
         
             
            // 小米
         
     | 
| 
       331 
     | 
    
         
            -
            router.get('/mi/golden', lazyloadRouteHandler('./routes/mi/golden'));
         
     | 
| 
       332 
     | 
    
         
            -
            router.get('/mi/crowdfunding', lazyloadRouteHandler('./routes/mi/crowdfunding'));
         
     | 
| 
      
 102 
     | 
    
         
            +
            // router.get('/mi/golden', lazyloadRouteHandler('./routes/mi/golden'));
         
     | 
| 
      
 103 
     | 
    
         
            +
            // router.get('/mi/crowdfunding', lazyloadRouteHandler('./routes/mi/crowdfunding'));
         
     | 
| 
       333 
104 
     | 
    
         
             
            // router.get('/mi/youpin/crowdfunding', lazyloadRouteHandler('./routes/mi/youpin/crowdfunding'));
         
     | 
| 
       334 
105 
     | 
    
         
             
            // router.get('/mi/youpin/new/:sort?', lazyloadRouteHandler('./routes/mi/youpin/new'));
         
     | 
| 
       335 
     | 
    
         
            -
            router.get('/miui/:device/:type?/:region?', lazyloadRouteHandler('./routes/mi/miui/index'));
         
     | 
| 
       336 
     | 
    
         
            -
            router.get('/mi/bbs/board/:boardId', lazyloadRouteHandler('./routes/mi/board'));
         
     | 
| 
       337 
     | 
    
         
            -
             
     | 
| 
       338 
     | 
    
         
            -
            // Keep
         
     | 
| 
       339 
     | 
    
         
            -
            // router.get('/keep/user/:id', lazyloadRouteHandler('./routes/keep/user'));
         
     | 
| 
       340 
     | 
    
         
            -
             
     | 
| 
       341 
     | 
    
         
            -
            // 起点 migrated to v2
         
     | 
| 
       342 
     | 
    
         
            -
            // router.get('/qidian/chapter/:id', lazyloadRouteHandler('./routes/qidian/chapter'));
         
     | 
| 
       343 
     | 
    
         
            -
            // router.get('/qidian/forum/:id', lazyloadRouteHandler('./routes/qidian/forum'));
         
     | 
| 
       344 
     | 
    
         
            -
            // router.get('/qidian/free/:type?', lazyloadRouteHandler('./routes/qidian/free'));
         
     | 
| 
       345 
     | 
    
         
            -
            // router.get('/qidian/free-next/:type?', lazyloadRouteHandler('./routes/qidian/free-next'));
         
     | 
| 
      
 106 
     | 
    
         
            +
            // router.get('/miui/:device/:type?/:region?', lazyloadRouteHandler('./routes/mi/miui/index'));
         
     | 
| 
       346 
107 
     | 
    
         | 
| 
       347 
108 
     | 
    
         
             
            // 纵横
         
     | 
| 
       348 
109 
     | 
    
         
             
            router.get('/zongheng/chapter/:id', lazyloadRouteHandler('./routes/zongheng/chapter'));
         
     | 
| 
       349 
110 
     | 
    
         | 
| 
       350 
     | 
    
         
            -
            // 刺猬猫
         
     | 
| 
       351 
     | 
    
         
            -
            router.get('/ciweimao/chapter/:id', lazyloadRouteHandler('./routes/ciweimao/chapter'));
         
     | 
| 
       352 
     | 
    
         
            -
             
     | 
| 
       353 
     | 
    
         
            -
            // 中国美术馆
         
     | 
| 
       354 
     | 
    
         
            -
            router.get('/namoc/announcement', lazyloadRouteHandler('./routes/namoc/announcement'));
         
     | 
| 
       355 
     | 
    
         
            -
            router.get('/namoc/news', lazyloadRouteHandler('./routes/namoc/news'));
         
     | 
| 
       356 
     | 
    
         
            -
            router.get('/namoc/media', lazyloadRouteHandler('./routes/namoc/media'));
         
     | 
| 
       357 
     | 
    
         
            -
            router.get('/namoc/exhibition', lazyloadRouteHandler('./routes/namoc/exhibition'));
         
     | 
| 
       358 
     | 
    
         
            -
            router.get('/namoc/specials', lazyloadRouteHandler('./routes/namoc/specials'));
         
     | 
| 
       359 
     | 
    
         
            -
             
     | 
| 
       360 
     | 
    
         
            -
            // 懂球帝 migrated to v2
         
     | 
| 
       361 
     | 
    
         
            -
            // router.get('/dongqiudi/daily', lazyloadRouteHandler('./routes/dongqiudi/daily'));
         
     | 
| 
       362 
     | 
    
         
            -
            // router.get('/dongqiudi/result/:team', lazyloadRouteHandler('./routes/dongqiudi/result'));
         
     | 
| 
       363 
     | 
    
         
            -
            // router.get('/dongqiudi/team_news/:team', lazyloadRouteHandler('./routes/dongqiudi/team_news'));
         
     | 
| 
       364 
     | 
    
         
            -
            // router.get('/dongqiudi/player_news/:id', lazyloadRouteHandler('./routes/dongqiudi/player_news'));
         
     | 
| 
       365 
     | 
    
         
            -
            // router.get('/dongqiudi/special/:id', lazyloadRouteHandler('./routes/dongqiudi/special'));
         
     | 
| 
       366 
     | 
    
         
            -
            // router.get('/dongqiudi/top_news/:id?', lazyloadRouteHandler('./routes/dongqiudi/top_news'));
         
     | 
| 
       367 
     | 
    
         
            -
             
     | 
| 
       368 
111 
     | 
    
         
             
            // 维基百科 Wikipedia
         
     | 
| 
       369 
112 
     | 
    
         
             
            router.get('/wikipedia/mainland', lazyloadRouteHandler('./routes/wikipedia/mainland'));
         
     | 
| 
       370 
113 
     | 
    
         | 
| 
       371 
114 
     | 
    
         
             
            // 联合国 United Nations
         
     | 
| 
       372 
115 
     | 
    
         
             
            router.get('/un/scveto', lazyloadRouteHandler('./routes/un/scveto'));
         
     | 
| 
       373 
116 
     | 
    
         | 
| 
       374 
     | 
    
         
            -
            // e 公司
         
     | 
| 
       375 
     | 
    
         
            -
            router.get('/egsea/flash', lazyloadRouteHandler('./routes/egsea/flash'));
         
     | 
| 
       376 
     | 
    
         
            -
             
     | 
| 
       377 
117 
     | 
    
         
             
            // 选股宝
         
     | 
| 
       378 
118 
     | 
    
         
             
            router.get('/xuangubao/subject/:subject_id', lazyloadRouteHandler('./routes/xuangubao/subject'));
         
     | 
| 
       379 
119 
     | 
    
         | 
| 
       380 
     | 
    
         
            -
            // 雪球 migrated to v2
         
     | 
| 
       381 
     | 
    
         
            -
            // router.get('/xueqiu/user/:id/:type?', lazyloadRouteHandler('./routes/xueqiu/user'));
         
     | 
| 
       382 
     | 
    
         
            -
            // router.get('/xueqiu/favorite/:id', lazyloadRouteHandler('./routes/xueqiu/favorite'));
         
     | 
| 
       383 
     | 
    
         
            -
            // router.get('/xueqiu/user_stock/:id', lazyloadRouteHandler('./routes/xueqiu/user_stock'));
         
     | 
| 
       384 
     | 
    
         
            -
            // router.get('/xueqiu/fund/:id', lazyloadRouteHandler('./routes/xueqiu/fund'));
         
     | 
| 
       385 
     | 
    
         
            -
            // router.get('/xueqiu/stock_info/:id/:type?', lazyloadRouteHandler('./routes/xueqiu/stock_info'));
         
     | 
| 
       386 
     | 
    
         
            -
            // router.get('/xueqiu/snb/:id', lazyloadRouteHandler('./routes/xueqiu/snb'));
         
     | 
| 
       387 
     | 
    
         
            -
            // router.get('/xueqiu/hots', lazyloadRouteHandler('./routes/xueqiu/hots'));
         
     | 
| 
       388 
     | 
    
         
            -
            // router.get('/xueqiu/stock_comments/:id/:titleLength?', lazyloadRouteHandler('./routes/xueqiu/stock_comments'));
         
     | 
| 
       389 
     | 
    
         
            -
             
     | 
| 
       390 
     | 
    
         
            -
            // Greasy Fork migrated to v2
         
     | 
| 
       391 
     | 
    
         
            -
            // router.get('/greasyfork/:language/:domain?', lazyloadRouteHandler('./routes/greasyfork/scripts'));
         
     | 
| 
       392 
     | 
    
         
            -
             
     | 
| 
       393 
120 
     | 
    
         
             
            // Gwern Branwen
         
     | 
| 
       394 
121 
     | 
    
         
             
            router.get('/gwern/:category', lazyloadRouteHandler('./routes/gwern/category'));
         
     | 
| 
       395 
122 
     | 
    
         | 
| 
       396 
     | 
    
         
            -
            // LinkedKeeper
         
     | 
| 
       397 
     | 
    
         
            -
            router.get('/linkedkeeper/:type/:id?', lazyloadRouteHandler('./routes/linkedkeeper/index'));
         
     | 
| 
       398 
     | 
    
         
            -
             
     | 
| 
       399 
     | 
    
         
            -
            // 开源中国 migrated to v2
         
     | 
| 
       400 
     | 
    
         
            -
            // router.get('/oschina/news/:category?', lazyloadRouteHandler('./routes/oschina/news'));
         
     | 
| 
       401 
     | 
    
         
            -
            // router.get('/oschina/user/:id', lazyloadRouteHandler('./routes/oschina/user'));
         
     | 
| 
       402 
     | 
    
         
            -
            // router.get('/oschina/u/:id', lazyloadRouteHandler('./routes/oschina/u'));
         
     | 
| 
       403 
     | 
    
         
            -
            // router.get('/oschina/topic/:topic', lazyloadRouteHandler('./routes/oschina/topic'));
         
     | 
| 
       404 
     | 
    
         
            -
             
     | 
| 
       405 
123 
     | 
    
         
             
            // MIT Technology Review
         
     | 
| 
       406 
124 
     | 
    
         
             
            router.get('/technologyreview', lazyloadRouteHandler('./routes/technologyreview/index'));
         
     | 
| 
       407 
125 
     | 
    
         
             
            router.get('/technologyreview/:category_name', lazyloadRouteHandler('./routes/technologyreview/topic'));
         
     | 
| 
       408 
126 
     | 
    
         | 
| 
       409 
     | 
    
         
            -
            // 安全客
         
     | 
| 
       410 
     | 
    
         
            -
            // router.get('/aqk/vul', lazyloadRouteHandler('./routes/aqk/vul'));
         
     | 
| 
       411 
     | 
    
         
            -
            // router.get('/aqk/:category', lazyloadRouteHandler('./routes/aqk/category'));
         
     | 
| 
       412 
     | 
    
         
            -
             
     | 
| 
       413 
     | 
    
         
            -
            // 腾讯游戏开发者社区
         
     | 
| 
       414 
     | 
    
         
            -
            router.get('/gameinstitute/community/:tag?', lazyloadRouteHandler('./routes/tencent/gameinstitute/community'));
         
     | 
| 
       415 
     | 
    
         
            -
             
     | 
| 
       416 
127 
     | 
    
         
             
            // 腾讯视频 SDK
         
     | 
| 
       417 
128 
     | 
    
         
             
            router.get('/qcloud/mlvb/changelog', lazyloadRouteHandler('./routes/tencent/qcloud/mlvb/changelog'));
         
     | 
| 
       418 
129 
     | 
    
         | 
| 
       419 
130 
     | 
    
         
             
            // 腾讯吐个槽
         
     | 
| 
       420 
131 
     | 
    
         
             
            router.get('/tucaoqq/post/:project/:key', lazyloadRouteHandler('./routes/tencent/tucaoqq/post'));
         
     | 
| 
       421 
132 
     | 
    
         | 
| 
       422 
     | 
    
         
            -
            //  
     | 
| 
       423 
     | 
    
         
            -
            router.get('/bugly/changelog/:platform', lazyloadRouteHandler('./routes/tencent/bugly/changelog'));
         
     | 
| 
       424 
     | 
    
         
            -
             
     | 
| 
       425 
     | 
    
         
            -
            // wechat migrated to v2
         
     | 
| 
       426 
     | 
    
         
            -
            // router.get('/wechat/wemp/:id', lazyloadRouteHandler('./routes/tencent/wechat/wemp'));
         
     | 
| 
       427 
     | 
    
         
            -
            // router.get('/wechat/ce/:id', lazyloadRouteHandler('./routes/tencent/wechat/ce'));
         
     | 
| 
       428 
     | 
    
         
            -
            // router.get('/wechat/announce', lazyloadRouteHandler('./routes/tencent/wechat/announce'));
         
     | 
| 
      
 133 
     | 
    
         
            +
            // wechat
         
     | 
| 
       429 
134 
     | 
    
         
             
            router.get('/wechat/miniprogram/plugins', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/plugins'));
         
     | 
| 
       430 
     | 
    
         
            -
            // router.get('/wechat/tgchannel/:id/:mpName?/:searchQueryType?', lazyloadRouteHandler('./routes/tencent/wechat/tgchannel'));
         
     | 
| 
       431 
     | 
    
         
            -
            // router.get('/wechat/uread/:userid', lazyloadRouteHandler('./routes/tencent/wechat/uread'));
         
     | 
| 
       432 
     | 
    
         
            -
            // router.get('/wechat/ershicimi/:id', lazyloadRouteHandler('./routes/tencent/wechat/ershcimi'));
         
     | 
| 
       433 
     | 
    
         
            -
            // router.get('/wechat/wxnmh/:id', lazyloadRouteHandler('./routes/tencent/wechat/wxnmh'));
         
     | 
| 
       434 
     | 
    
         
            -
            // router.get('/wechat/mp/homepage/:biz/:hid/:cid?', lazyloadRouteHandler('./routes/tencent/wechat/mp'));
         
     | 
| 
       435 
     | 
    
         
            -
            // router.get('/wechat/mp/msgalbum/:biz/:aid', lazyloadRouteHandler('./routes/tencent/wechat/msgalbum'));
         
     | 
| 
       436 
     | 
    
         
            -
            // router.get('/wechat/feeds/:id', lazyloadRouteHandler('./routes/tencent/wechat/feeds'));
         
     | 
| 
       437 
     | 
    
         
            -
             
     | 
| 
       438 
     | 
    
         
            -
            // All the Flight Deals
         
     | 
| 
       439 
     | 
    
         
            -
            router.get('/atfd/:locations/:nearby?', lazyloadRouteHandler('./routes/atfd/index'));
         
     | 
| 
       440 
     | 
    
         
            -
             
     | 
| 
       441 
     | 
    
         
            -
            // Fir
         
     | 
| 
       442 
     | 
    
         
            -
            router.get('/fir/update/:id', lazyloadRouteHandler('./routes/fir/update'));
         
     | 
| 
       443 
135 
     | 
    
         | 
| 
       444 
136 
     | 
    
         
             
            // Nvidia Web Driver
         
     | 
| 
       445 
137 
     | 
    
         
             
            router.get('/nvidia/webdriverupdate', lazyloadRouteHandler('./routes/nvidia/webdriverupdate'));
         
     | 
| 
       446 
138 
     | 
    
         | 
| 
       447 
     | 
    
         
            -
            // 每日环球展览 iMuseum
         
     | 
| 
       448 
     | 
    
         
            -
            router.get('/imuseum/:city/:type?', lazyloadRouteHandler('./routes/imuseum'));
         
     | 
| 
       449 
     | 
    
         
            -
             
     | 
| 
       450 
     | 
    
         
            -
            // Hopper
         
     | 
| 
       451 
     | 
    
         
            -
            router.get('/hopper/:lowestOnly/:from/:to?', lazyloadRouteHandler('./routes/hopper/index'));
         
     | 
| 
       452 
     | 
    
         
            -
             
     | 
| 
       453 
139 
     | 
    
         
             
            // 马蜂窝
         
     | 
| 
       454 
140 
     | 
    
         
             
            router.get('/mafengwo/note/:type', lazyloadRouteHandler('./routes/mafengwo/note'));
         
     | 
| 
       455 
141 
     | 
    
         
             
            router.get('/mafengwo/ziyouxing/:code', lazyloadRouteHandler('./routes/mafengwo/ziyouxing'));
         
     | 
| 
       456 
142 
     | 
    
         | 
| 
       457 
     | 
    
         
            -
            // 中国地震局震情速递(与地震台网同步更新)migrated to v2
         
     | 
| 
       458 
     | 
    
         
            -
            // router.get('/earthquake/:region?', lazyloadRouteHandler('./routes/earthquake'));
         
     | 
| 
       459 
     | 
    
         
            -
            // 中国地震台网
         
     | 
| 
       460 
     | 
    
         
            -
            // router.get('/earthquake/ceic/:type', lazyloadRouteHandler('./routes/earthquake/ceic'));
         
     | 
| 
       461 
     | 
    
         
            -
             
     | 
| 
       462 
143 
     | 
    
         
             
            // 小说
         
     | 
| 
       463 
144 
     | 
    
         
             
            // router.get('/novel/biquge/:id', lazyloadRouteHandler('./routes/novel/biquge'));
         
     | 
| 
       464 
145 
     | 
    
         
             
            // router.get('/novel/biqugeinfo/:id/:limit?', lazyloadRouteHandler('./routes/novel/biqugeinfo'));
         
     | 
| 
       465 
146 
     | 
    
         
             
            router.get('/novel/uukanshu/:uid', lazyloadRouteHandler('./routes/novel/uukanshu'));
         
     | 
| 
       466 
     | 
    
         
            -
            router.get('/novel/wenxuemi/:id1/:id2', lazyloadRouteHandler('./routes/novel/wenxuemi'));
         
     | 
| 
       467 
     | 
    
         
            -
            router.get('/novel/booksky/:id', lazyloadRouteHandler('./routes/novel/booksky'));
         
     | 
| 
       468 
     | 
    
         
            -
            router.get('/novel/ptwxz/:id1/:id2', lazyloadRouteHandler('./routes/novel/ptwxz'));
         
     | 
| 
       469 
     | 
    
         
            -
            router.get('/novel/zhaishuyuan/:id', lazyloadRouteHandler('./routes/novel/zhaishuyuan'));
         
     | 
| 
       470 
147 
     | 
    
         | 
| 
       471 
148 
     | 
    
         
             
            // 中国气象网
         
     | 
| 
       472 
     | 
    
         
            -
            router.get('/weatheralarm/:province?', lazyloadRouteHandler('./routes/weatheralarm'));
         
     | 
| 
      
 149 
     | 
    
         
            +
            // router.get('/weatheralarm/:province?', lazyloadRouteHandler('./routes/weatheralarm'));
         
     | 
| 
       473 
150 
     | 
    
         | 
| 
       474 
151 
     | 
    
         
             
            // Gitlab
         
     | 
| 
       475 
152 
     | 
    
         
             
            router.get('/gitlab/explore/:type/:host?', lazyloadRouteHandler('./routes/gitlab/explore'));
         
     | 
| 
       476 
153 
     | 
    
         
             
            router.get('/gitlab/release/:namespace/:project/:host?', lazyloadRouteHandler('./routes/gitlab/release'));
         
     | 
| 
       477 
154 
     | 
    
         
             
            router.get('/gitlab/tag/:namespace/:project/:host?', lazyloadRouteHandler('./routes/gitlab/tag'));
         
     | 
| 
       478 
155 
     | 
    
         | 
| 
       479 
     | 
    
         
            -
            // 忧郁的loli
         
     | 
| 
       480 
     | 
    
         
            -
            router.get('/mygalgame', lazyloadRouteHandler('./routes/galgame/hhgal')); // 废弃
         
     | 
| 
       481 
     | 
    
         
            -
            router.get('/mmgal', lazyloadRouteHandler('./routes/galgame/hhgal')); // 废弃
         
     | 
| 
       482 
     | 
    
         
            -
            router.get('/hhgal', lazyloadRouteHandler('./routes/galgame/hhgal'));
         
     | 
| 
       483 
     | 
    
         
            -
             
     | 
| 
       484 
     | 
    
         
            -
            // say花火
         
     | 
| 
       485 
     | 
    
         
            -
            router.get('/sayhuahuo', lazyloadRouteHandler('./routes/galgame/sayhuahuo'));
         
     | 
| 
       486 
     | 
    
         
            -
             
     | 
| 
       487 
     | 
    
         
            -
            // 终点分享
         
     | 
| 
       488 
     | 
    
         
            -
            router.get('/zdfx', lazyloadRouteHandler('./routes/galgame/zdfx'));
         
     | 
| 
       489 
     | 
    
         
            -
             
     | 
| 
       490 
     | 
    
         
            -
            // 北京林业大学 migrated to v2
         
     | 
| 
       491 
     | 
    
         
            -
            // router.get('/bjfu/grs', lazyloadRouteHandler('./routes/universities/bjfu/grs'));
         
     | 
| 
       492 
     | 
    
         
            -
            // router.get('/bjfu/kjc', lazyloadRouteHandler('./routes/universities/bjfu/kjc'));
         
     | 
| 
       493 
     | 
    
         
            -
            // router.get('/bjfu/jwc/:type', lazyloadRouteHandler('./routes/universities/bjfu/jwc/index'));
         
     | 
| 
       494 
     | 
    
         
            -
            // router.get('/bjfu/news/:type', lazyloadRouteHandler('./routes/universities/bjfu/news/index'));
         
     | 
| 
       495 
     | 
    
         
            -
            // router.get('/bjfu/it/:type', lazyloadRouteHandler('./routes/universities/bjfu/it/index'));
         
     | 
| 
       496 
     | 
    
         
            -
             
     | 
| 
       497 
     | 
    
         
            -
            // 北京理工大学
         
     | 
| 
       498 
     | 
    
         
            -
            // router.get('/bit/jwc', lazyloadRouteHandler('./routes/universities/bit/jwc/jwc'));
         
     | 
| 
       499 
     | 
    
         
            -
            // router.get('/bit/cs', lazyloadRouteHandler('./routes/universities/bit/cs/cs'));
         
     | 
| 
       500 
     | 
    
         
            -
             
     | 
| 
       501 
156 
     | 
    
         
             
            // 北京交通大学
         
     | 
| 
       502 
157 
     | 
    
         
             
            router.get('/bjtu/gs/:type', lazyloadRouteHandler('./routes/universities/bjtu/gs'));
         
     | 
| 
       503 
158 
     | 
    
         | 
| 
         @@ -505,51 +160,18 @@ router.get('/bjtu/gs/:type', lazyloadRouteHandler('./routes/universities/bjtu/gs 
     | 
|
| 
       505 
160 
     | 
    
         
             
            router.get('/dpu/jiaowu/news/:type?', lazyloadRouteHandler('./routes/universities/dpu/jiaowu/news'));
         
     | 
| 
       506 
161 
     | 
    
         
             
            router.get('/dpu/wlfw/news/:type?', lazyloadRouteHandler('./routes/universities/dpu/wlfw/news'));
         
     | 
| 
       507 
162 
     | 
    
         | 
| 
       508 
     | 
    
         
            -
            // 大连理工大学
         
     | 
| 
       509 
     | 
    
         
            -
            // router.get('/dut/:subsite/:type', lazyloadRouteHandler('./routes/universities/dut/index'));
         
     | 
| 
       510 
     | 
    
         
            -
             
     | 
| 
       511 
     | 
    
         
            -
            // 东南大学
         
     | 
| 
       512 
     | 
    
         
            -
            router.get('/seu/radio/academic', lazyloadRouteHandler('./routes/universities/seu/radio/academic'));
         
     | 
| 
       513 
     | 
    
         
            -
            router.get('/seu/yzb/:type', lazyloadRouteHandler('./routes/universities/seu/yzb'));
         
     | 
| 
       514 
     | 
    
         
            -
            router.get('/seu/cse/:type?', lazyloadRouteHandler('./routes/universities/seu/cse'));
         
     | 
| 
       515 
     | 
    
         
            -
             
     | 
| 
       516 
163 
     | 
    
         
             
            // 南京工业大学
         
     | 
| 
       517 
164 
     | 
    
         
             
            router.get('/njtech/jwc', lazyloadRouteHandler('./routes/universities/njtech/jwc'));
         
     | 
| 
       518 
165 
     | 
    
         | 
| 
       519 
     | 
    
         
            -
            // 南京航空航天大学 migrated to v2
         
     | 
| 
       520 
     | 
    
         
            -
            // router.get('/nuaa/jwc/:type/:getDescription?', lazyloadRouteHandler('./routes/universities/nuaa/jwc/jwc'));
         
     | 
| 
       521 
     | 
    
         
            -
            // router.get('/nuaa/cs/:type/:getDescription?', lazyloadRouteHandler('./routes/universities/nuaa/cs/index'));
         
     | 
| 
       522 
     | 
    
         
            -
            // router.get('/nuaa/yjsy/:type?', lazyloadRouteHandler('./routes/universities/nuaa/yjsy/yjsy'));
         
     | 
| 
       523 
     | 
    
         
            -
             
     | 
| 
       524 
166 
     | 
    
         
             
            // 河海大学
         
     | 
| 
       525 
     | 
    
         
            -
            router.get('/hhu/libNews', lazyloadRouteHandler('./routes/universities/hhu/ 
     | 
| 
      
 167 
     | 
    
         
            +
            router.get('/hhu/libNews', lazyloadRouteHandler('./routes/universities/hhu/lib-news'));
         
     | 
| 
       526 
168 
     | 
    
         
             
            // 河海大学常州校区
         
     | 
| 
       527 
     | 
    
         
            -
            router.get('/hhu/libNewsc', lazyloadRouteHandler('./routes/universities/hhu/ 
     | 
| 
       528 
     | 
    
         
            -
             
     | 
| 
       529 
     | 
    
         
            -
            // 哈尔滨工业大学 migrated to v2
         
     | 
| 
       530 
     | 
    
         
            -
            // router.get('/hit/jwc', lazyloadRouteHandler('./routes/universities/hit/jwc'));
         
     | 
| 
       531 
     | 
    
         
            -
            // router.get('/hit/today/:category', lazyloadRouteHandler('./routes/universities/hit/today'));
         
     | 
| 
       532 
     | 
    
         
            -
             
     | 
| 
       533 
     | 
    
         
            -
            // 哈尔滨工业大学(深圳)
         
     | 
| 
       534 
     | 
    
         
            -
            // router.get('/hitsz/article/:category?', lazyloadRouteHandler('./routes/universities/hitsz/article'));
         
     | 
| 
       535 
     | 
    
         
            -
             
     | 
| 
       536 
     | 
    
         
            -
            // 哈尔滨工业大学(威海)
         
     | 
| 
       537 
     | 
    
         
            -
            // router.get('/hitwh/today', lazyloadRouteHandler('./routes/universities/hitwh/today'));
         
     | 
| 
      
 169 
     | 
    
         
            +
            router.get('/hhu/libNewsc', lazyloadRouteHandler('./routes/universities/hhu/lib-newsc'));
         
     | 
| 
       538 
170 
     | 
    
         | 
| 
       539 
171 
     | 
    
         
             
            // 上海科技大学
         
     | 
| 
       540 
172 
     | 
    
         
             
            router.get('/shanghaitech/activity', lazyloadRouteHandler('./routes/universities/shanghaitech/activity'));
         
     | 
| 
       541 
173 
     | 
    
         
             
            router.get('/shanghaitech/sist/activity', lazyloadRouteHandler('./routes/universities/shanghaitech/sist/activity'));
         
     | 
| 
       542 
174 
     | 
    
         | 
| 
       543 
     | 
    
         
            -
            // 上海交通大学
         
     | 
| 
       544 
     | 
    
         
            -
            router.get('/sjtu/seiee/academic', lazyloadRouteHandler('./routes/universities/sjtu/seiee/academic'));
         
     | 
| 
       545 
     | 
    
         
            -
            router.get('/sjtu/seiee/bjwb/:type', lazyloadRouteHandler('./routes/universities/sjtu/seiee/bjwb'));
         
     | 
| 
       546 
     | 
    
         
            -
            router.get('/sjtu/seiee/xsb/:type?', lazyloadRouteHandler('./routes/universities/sjtu/seiee/xsb'));
         
     | 
| 
       547 
     | 
    
         
            -
             
     | 
| 
       548 
     | 
    
         
            -
            router.get('/sjtu/gs/tzgg/:type?', lazyloadRouteHandler('./routes/universities/sjtu/gs/tzgg'));
         
     | 
| 
       549 
     | 
    
         
            -
            router.get('/sjtu/jwc/:type?', lazyloadRouteHandler('./routes/universities/sjtu/jwc'));
         
     | 
| 
       550 
     | 
    
         
            -
            router.get('/sjtu/tongqu/:type?', lazyloadRouteHandler('./routes/universities/sjtu/tongqu/activity'));
         
     | 
| 
       551 
     | 
    
         
            -
            router.get('/sjtu/yzb/zkxx/:type', lazyloadRouteHandler('./routes/universities/sjtu/yzb/zkxx'));
         
     | 
| 
       552 
     | 
    
         
            -
             
     | 
| 
       553 
175 
     | 
    
         
             
            // 江南大学
         
     | 
| 
       554 
176 
     | 
    
         
             
            router.get('/ju/jwc/:type?', lazyloadRouteHandler('./routes/universities/ju/jwc'));
         
     | 
| 
       555 
177 
     | 
    
         | 
| 
         @@ -562,42 +184,14 @@ router.get('/lit/tw/:name?', lazyloadRouteHandler('./routes/universities/lit/tw' 
     | 
|
| 
       562 
184 
     | 
    
         
             
            router.get('/thu/career', lazyloadRouteHandler('./routes/universities/thu/career'));
         
     | 
| 
       563 
185 
     | 
    
         
             
            router.get('/thu/:type', lazyloadRouteHandler('./routes/universities/thu/index'));
         
     | 
| 
       564 
186 
     | 
    
         | 
| 
       565 
     | 
    
         
            -
            // 北京大学 migrated to v2
         
     | 
| 
       566 
     | 
    
         
            -
            // router.get('/pku/eecs/:type?', lazyloadRouteHandler('./routes/universities/pku/eecs'));
         
     | 
| 
       567 
     | 
    
         
            -
            // router.get('/pku/rccp/mzyt', lazyloadRouteHandler('./routes/universities/pku/rccp/mzyt'));
         
     | 
| 
       568 
     | 
    
         
            -
            // router.get('/pku/cls/lecture', lazyloadRouteHandler('./routes/universities/pku/cls/lecture'));
         
     | 
| 
       569 
     | 
    
         
            -
            // router.get('/pku/bbs/hot', lazyloadRouteHandler('./routes/universities/pku/bbs/hot'));
         
     | 
| 
       570 
     | 
    
         
            -
            // router.get('/pku/scc/recruit/:type?', lazyloadRouteHandler('./routes/universities/pku/scc/recruit'));
         
     | 
| 
       571 
     | 
    
         
            -
             
     | 
| 
       572 
     | 
    
         
            -
            // 上海海事大学 migrated to v2
         
     | 
| 
       573 
     | 
    
         
            -
            // router.get('/shmtu/www/:type', lazyloadRouteHandler('./routes/universities/shmtu/www'));
         
     | 
| 
       574 
     | 
    
         
            -
            // router.get('/shmtu/jwc/:type', lazyloadRouteHandler('./routes/universities/shmtu/jwc'));
         
     | 
| 
       575 
     | 
    
         
            -
             
     | 
| 
       576 
187 
     | 
    
         
             
            // 上海海洋大学
         
     | 
| 
       577 
188 
     | 
    
         
             
            router.get('/shou/www/:type', lazyloadRouteHandler('./routes/universities/shou/www'));
         
     | 
| 
       578 
189 
     | 
    
         | 
| 
       579 
190 
     | 
    
         
             
            // 西南科技大学
         
     | 
| 
       580 
     | 
    
         
            -
            router.get('/swust/jwc/news', lazyloadRouteHandler('./routes/universities/swust/ 
     | 
| 
       581 
     | 
    
         
            -
            router.get('/swust/jwc/notice/:type?', lazyloadRouteHandler('./routes/universities/swust/ 
     | 
| 
      
 191 
     | 
    
         
            +
            router.get('/swust/jwc/news', lazyloadRouteHandler('./routes/universities/swust/jwc-news'));
         
     | 
| 
      
 192 
     | 
    
         
            +
            router.get('/swust/jwc/notice/:type?', lazyloadRouteHandler('./routes/universities/swust/jwc-notice'));
         
     | 
| 
       582 
193 
     | 
    
         
             
            router.get('/swust/cs/:type?', lazyloadRouteHandler('./routes/universities/swust/cs'));
         
     | 
| 
       583 
194 
     | 
    
         | 
| 
       584 
     | 
    
         
            -
            // 华南师范大学
         
     | 
| 
       585 
     | 
    
         
            -
            // router.get('/scnu/jw', lazyloadRouteHandler('./routes/universities/scnu/jw'));
         
     | 
| 
       586 
     | 
    
         
            -
            // router.get('/scnu/library', lazyloadRouteHandler('./routes/universities/scnu/library'));
         
     | 
| 
       587 
     | 
    
         
            -
            // router.get('/scnu/cs/match', lazyloadRouteHandler('./routes/universities/scnu/cs/match'));
         
     | 
| 
       588 
     | 
    
         
            -
             
     | 
| 
       589 
     | 
    
         
            -
            // 广东工业大学
         
     | 
| 
       590 
     | 
    
         
            -
            // router.get('/gdut/news', lazyloadRouteHandler('./routes/universities/gdut/news'));
         
     | 
| 
       591 
     | 
    
         
            -
             
     | 
| 
       592 
     | 
    
         
            -
            // 中国科学院
         
     | 
| 
       593 
     | 
    
         
            -
            // router.get('/cas/sim/academic', lazyloadRouteHandler('./routes/universities/cas/sim/academic'));
         
     | 
| 
       594 
     | 
    
         
            -
            // router.get('/cas/mesalab/kb', lazyloadRouteHandler('./routes/universities/cas/mesalab/kb'));
         
     | 
| 
       595 
     | 
    
         
            -
            // router.get('/cas/iee/kydt', lazyloadRouteHandler('./routes/universities/cas/iee/kydt'));
         
     | 
| 
       596 
     | 
    
         
            -
            // router.get('/cas/cg/:caty?', lazyloadRouteHandler('./routes/universities/cas/cg/index'));
         
     | 
| 
       597 
     | 
    
         
            -
             
     | 
| 
       598 
     | 
    
         
            -
            // 中国传媒大学
         
     | 
| 
       599 
     | 
    
         
            -
            // router.get('/cuc/yz', lazyloadRouteHandler('./v2/cuc/yz'));
         
     | 
| 
       600 
     | 
    
         
            -
             
     | 
| 
       601 
195 
     | 
    
         
             
            // UTdallas ISSO
         
     | 
| 
       602 
196 
     | 
    
         
             
            router.get('/utdallas/isso', lazyloadRouteHandler('./routes/universities/utdallas/isso'));
         
     | 
| 
       603 
197 
     | 
    
         | 
| 
         @@ -612,16 +206,6 @@ router.get('/cqu/youth/:category', lazyloadRouteHandler('./routes/universities/c 
     | 
|
| 
       612 
206 
     | 
    
         
             
            router.get('/cqu/sci/:category', lazyloadRouteHandler('./routes/universities/cqu/sci/info'));
         
     | 
| 
       613 
207 
     | 
    
         
             
            router.get('/cqu/net/:category', lazyloadRouteHandler('./routes/universities/cqu/net/info'));
         
     | 
| 
       614 
208 
     | 
    
         | 
| 
       615 
     | 
    
         
            -
            // 南京信息工程大学
         
     | 
| 
       616 
     | 
    
         
            -
            // router.get('/nuist/bulletin/:category?', lazyloadRouteHandler('./routes/universities/nuist/bulletin'));
         
     | 
| 
       617 
     | 
    
         
            -
            // router.get('/nuist/jwc/:category?', lazyloadRouteHandler('./routes/universities/nuist/jwc'));
         
     | 
| 
       618 
     | 
    
         
            -
            // router.get('/nuist/yjs/:category?', lazyloadRouteHandler('./routes/universities/nuist/yjs'));
         
     | 
| 
       619 
     | 
    
         
            -
            // router.get('/nuist/xgc', lazyloadRouteHandler('./routes/universities/nuist/xgc'));
         
     | 
| 
       620 
     | 
    
         
            -
            // router.get('/nuist/scs/:category?', lazyloadRouteHandler('./routes/universities/nuist/scs'));
         
     | 
| 
       621 
     | 
    
         
            -
            // router.get('/nuist/lib', lazyloadRouteHandler('./routes/universities/nuist/library/lib'));
         
     | 
| 
       622 
     | 
    
         
            -
            // router.get('/nuist/sese/:category?', lazyloadRouteHandler('./routes/universities/nuist/sese'));
         
     | 
| 
       623 
     | 
    
         
            -
            // router.get('/nuist/cas/:category?', lazyloadRouteHandler('./routes/universities/nuist/cas'));
         
     | 
| 
       624 
     | 
    
         
            -
             
     | 
| 
       625 
209 
     | 
    
         
             
            // 成都信息工程大学
         
     | 
| 
       626 
210 
     | 
    
         
             
            router.get('/cuit/cxxww/:type?', lazyloadRouteHandler('./routes/universities/cuit/cxxww'));
         
     | 
| 
       627 
211 
     | 
    
         | 
| 
         @@ -647,27 +231,6 @@ router.get('/sctu/xgxy/:id', lazyloadRouteHandler('./routes/universities/sctu/in 
     | 
|
| 
       647 
231 
     | 
    
         
             
            router.get('/sctu/jwc/:type?', lazyloadRouteHandler('./routes/universities/sctu/jwc/index'));
         
     | 
| 
       648 
232 
     | 
    
         
             
            router.get('/sctu/jwc/:type/:id', lazyloadRouteHandler('./routes/universities/sctu/jwc/context'));
         
     | 
| 
       649 
233 
     | 
    
         | 
| 
       650 
     | 
    
         
            -
            // 电子科技大学
         
     | 
| 
       651 
     | 
    
         
            -
            // router.get('/uestc/jwc/:type?', lazyloadRouteHandler('./routes/universities/uestc/jwc'));
         
     | 
| 
       652 
     | 
    
         
            -
            // router.get('/uestc/is/:type?', lazyloadRouteHandler('./routes/universities/uestc/is'));
         
     | 
| 
       653 
     | 
    
         
            -
            // router.get('/uestc/news/:type?', lazyloadRouteHandler('./routes/universities/uestc/news'));
         
     | 
| 
       654 
     | 
    
         
            -
            // router.get('/uestc/auto/:type?', lazyloadRouteHandler('./routes/universities/uestc/auto'));
         
     | 
| 
       655 
     | 
    
         
            -
            // router.get('/uestc/cs/:type?', lazyloadRouteHandler('./routes/universities/uestc/cs'));
         
     | 
| 
       656 
     | 
    
         
            -
            // router.get('/uestc/cqe/:type?', lazyloadRouteHandler('./routes/universities/uestc/cqe'));
         
     | 
| 
       657 
     | 
    
         
            -
            // router.get('/uestc/gr', lazyloadRouteHandler('./routes/universities/uestc/gr'));
         
     | 
| 
       658 
     | 
    
         
            -
            // router.get('/uestc/sice', lazyloadRouteHandler('./routes/universities/uestc/sice'));
         
     | 
| 
       659 
     | 
    
         
            -
             
     | 
| 
       660 
     | 
    
         
            -
            // 西北农林科技大学
         
     | 
| 
       661 
     | 
    
         
            -
            router.get('/nwafu/news', lazyloadRouteHandler('./routes/universities/nwafu/news'));
         
     | 
| 
       662 
     | 
    
         
            -
            router.get('/nwafu/jiaowu', lazyloadRouteHandler('./routes/universities/nwafu/jiaowu'));
         
     | 
| 
       663 
     | 
    
         
            -
            router.get('/nwafu/gs', lazyloadRouteHandler('./routes/universities/nwafu/gs'));
         
     | 
| 
       664 
     | 
    
         
            -
            router.get('/nwafu/lib', lazyloadRouteHandler('./routes/universities/nwafu/lib'));
         
     | 
| 
       665 
     | 
    
         
            -
            router.get('/nwafu/nic', lazyloadRouteHandler('./routes/universities/nwafu/nic'));
         
     | 
| 
       666 
     | 
    
         
            -
            router.get('/nwafu/54youth', lazyloadRouteHandler('./routes/universities/nwafu/54youth'));
         
     | 
| 
       667 
     | 
    
         
            -
            router.get('/nwafu/jcc', lazyloadRouteHandler('./routes/universities/nwafu/jcc'));
         
     | 
| 
       668 
     | 
    
         
            -
            router.get('/nwafu/yjshy', lazyloadRouteHandler('./routes/universities/nwafu/yjshy'));
         
     | 
| 
       669 
     | 
    
         
            -
            router.get('/nwafu/cie', lazyloadRouteHandler('./routes/universities/nwafu/cie'));
         
     | 
| 
       670 
     | 
    
         
            -
             
     | 
| 
       671 
234 
     | 
    
         
             
            // 云南大学
         
     | 
| 
       672 
235 
     | 
    
         
             
            router.get('/ynu/grs/zytz', lazyloadRouteHandler('./routes/universities/ynu/grs/zytz'));
         
     | 
| 
       673 
236 
     | 
    
         
             
            router.get('/ynu/grs/qttz/:category', lazyloadRouteHandler('./routes/universities/ynu/grs/qttz'));
         
     | 
| 
         @@ -683,32 +246,12 @@ router.get('/kmust/job/careers/:type?', lazyloadRouteHandler('./routes/universit 
     | 
|
| 
       683 
246 
     | 
    
         
             
            router.get('/kmust/job/jobfairs', lazyloadRouteHandler('./routes/universities/kmust/job/jobfairs'));
         
     | 
| 
       684 
247 
     | 
    
         | 
| 
       685 
248 
     | 
    
         
             
            // 武汉大学
         
     | 
| 
       686 
     | 
    
         
            -
            router.get('/whu/cs/:type', lazyloadRouteHandler('./routes/universities/whu/cs'));
         
     | 
| 
       687 
     | 
    
         
            -
            router.get('/whu/news/:type?', lazyloadRouteHandler('./routes/universities/whu/news'));
         
     | 
| 
       688 
     | 
    
         
            -
             
     | 
| 
       689 
     | 
    
         
            -
            // 潍坊学院 migrated to v2
         
     | 
| 
       690 
     | 
    
         
            -
            // router.get('/wfu/news/:type?', require('./routes/universities/wfu/news'));
         
     | 
| 
       691 
     | 
    
         
            -
            // router.get('/wfu/jwc', require('./routes/universities/wfu/jwc'));
         
     | 
| 
       692 
     | 
    
         
            -
             
     | 
| 
       693 
     | 
    
         
            -
            // 华中科技大学
         
     | 
| 
       694 
     | 
    
         
            -
            // router.get('/hust/auto/notice/:type?', lazyloadRouteHandler('./routes/universities/hust/aia/notice'));
         
     | 
| 
       695 
     | 
    
         
            -
            // router.get('/hust/auto/news', lazyloadRouteHandler('./routes/universities/hust/aia/news'));
         
     | 
| 
       696 
     | 
    
         
            -
            // router.get('/hust/aia/news', lazyloadRouteHandler('./routes/universities/hust/aia/news'));
         
     | 
| 
       697 
     | 
    
         
            -
            // router.get('/hust/aia/notice/:type?', lazyloadRouteHandler('./routes/universities/hust/aia/notice'));
         
     | 
| 
      
 249 
     | 
    
         
            +
            // router.get('/whu/cs/:type', lazyloadRouteHandler('./routes/universities/whu/cs'));
         
     | 
| 
      
 250 
     | 
    
         
            +
            // router.get('/whu/news/:type?', lazyloadRouteHandler('./routes/universities/whu/news'));
         
     | 
| 
       698 
251 
     | 
    
         | 
| 
       699 
252 
     | 
    
         
             
            // 井冈山大学
         
     | 
| 
       700 
253 
     | 
    
         
             
            router.get('/jgsu/jwc', lazyloadRouteHandler('./routes/universities/jgsu/jwc'));
         
     | 
| 
       701 
254 
     | 
    
         | 
| 
       702 
     | 
    
         
            -
            // 山东大学 migrated to v2
         
     | 
| 
       703 
     | 
    
         
            -
            // router.get('/sdu/sc/:type?', lazyloadRouteHandler('./routes/universities/sdu/sc'));
         
     | 
| 
       704 
     | 
    
         
            -
            // router.get('/sdu/cs/:type?', lazyloadRouteHandler('./routes/universities/sdu/cs'));
         
     | 
| 
       705 
     | 
    
         
            -
            // router.get('/sdu/cmse/:type?', lazyloadRouteHandler('./routes/universities/sdu/cmse'));
         
     | 
| 
       706 
     | 
    
         
            -
            // router.get('/sdu/mech/:type?', lazyloadRouteHandler('./routes/universities/sdu/mech'));
         
     | 
| 
       707 
     | 
    
         
            -
            // router.get('/sdu/epe/:type?', lazyloadRouteHandler('./routes/universities/sdu/epe'));
         
     | 
| 
       708 
     | 
    
         
            -
             
     | 
| 
       709 
     | 
    
         
            -
            // 中国海洋大学
         
     | 
| 
       710 
     | 
    
         
            -
            // router.get('/ouc/it/:type?', lazyloadRouteHandler('./routes/universities/ouc/it'));
         
     | 
| 
       711 
     | 
    
         
            -
             
     | 
| 
       712 
255 
     | 
    
         
             
            // 大连大学
         
     | 
| 
       713 
256 
     | 
    
         
             
            router.get('/dlu/jiaowu/news', lazyloadRouteHandler('./routes/universities/dlu/jiaowu/news'));
         
     | 
| 
       714 
257 
     | 
    
         | 
| 
         @@ -716,53 +259,22 @@ router.get('/dlu/jiaowu/news', lazyloadRouteHandler('./routes/universities/dlu/j 
     | 
|
| 
       716 
259 
     | 
    
         
             
            router.get('/dgut/jwc/:type?', lazyloadRouteHandler('./routes/universities/dgut/jwc'));
         
     | 
| 
       717 
260 
     | 
    
         
             
            router.get('/dgut/xsc/:type?', lazyloadRouteHandler('./routes/universities/dgut/xsc'));
         
     | 
| 
       718 
261 
     | 
    
         | 
| 
       719 
     | 
    
         
            -
            // 同济大学
         
     | 
| 
       720 
     | 
    
         
            -
            // router.get('/tju/sse/:type?', lazyloadRouteHandler('./routes/universities/tju/sse/notice'));
         
     | 
| 
       721 
     | 
    
         
            -
             
     | 
| 
       722 
     | 
    
         
            -
            // 华南理工大学
         
     | 
| 
       723 
     | 
    
         
            -
            // router.get('/scut/jwc/notice/:category?', lazyloadRouteHandler('./routes/universities/scut/jwc/notice'));
         
     | 
| 
       724 
     | 
    
         
            -
            // router.get('/scut/jwc/school/:category?', lazyloadRouteHandler('./routes/universities/scut/jwc/school'));
         
     | 
| 
       725 
     | 
    
         
            -
            // router.get('/scut/jwc/news', lazyloadRouteHandler('./routes/universities/scut/jwc/news'));
         
     | 
| 
       726 
     | 
    
         
            -
             
     | 
| 
       727 
262 
     | 
    
         
             
            // 温州商学院
         
     | 
| 
       728 
263 
     | 
    
         
             
            router.get('/wzbc/:type?', lazyloadRouteHandler('./routes/universities/wzbc/news'));
         
     | 
| 
       729 
264 
     | 
    
         | 
| 
       730 
265 
     | 
    
         
             
            // 河南大学
         
     | 
| 
       731 
266 
     | 
    
         
             
            router.get('/henu/:type?', lazyloadRouteHandler('./routes/universities/henu/news'));
         
     | 
| 
       732 
267 
     | 
    
         | 
| 
       733 
     | 
    
         
            -
            // 天津大学 migrated to v2
         
     | 
| 
       734 
     | 
    
         
            -
            // router.get('/tju/oaa/:type?', lazyloadRouteHandler('./routes/universities/tju/oaa'));
         
     | 
| 
       735 
     | 
    
         
            -
             
     | 
| 
       736 
268 
     | 
    
         
             
            // 南开大学
         
     | 
| 
       737 
269 
     | 
    
         
             
            router.get('/nku/jwc/:type?', lazyloadRouteHandler('./routes/universities/nku/jwc/index'));
         
     | 
| 
       738 
270 
     | 
    
         | 
| 
       739 
271 
     | 
    
         
             
            // 北京航空航天大学
         
     | 
| 
       740 
     | 
    
         
            -
            router.get('/buaa/news/:type', lazyloadRouteHandler('./routes/universities/buaa/news/index'));
         
     | 
| 
      
 272 
     | 
    
         
            +
            // router.get('/buaa/news/:type', lazyloadRouteHandler('./routes/universities/buaa/news/index'));
         
     | 
| 
       741 
273 
     | 
    
         | 
| 
       742 
274 
     | 
    
         
             
            // 浙江工业大学
         
     | 
| 
       743 
275 
     | 
    
         
             
            router.get('/zjut/:type', lazyloadRouteHandler('./routes/universities/zjut/index'));
         
     | 
| 
       744 
276 
     | 
    
         
             
            router.get('/zjut/design/:type', lazyloadRouteHandler('./routes/universities/zjut/design'));
         
     | 
| 
       745 
277 
     | 
    
         | 
| 
       746 
     | 
    
         
            -
            // 上海大学
         
     | 
| 
       747 
     | 
    
         
            -
            router.get('/shu/:type?', lazyloadRouteHandler('./routes/universities/shu/index'));
         
     | 
| 
       748 
     | 
    
         
            -
            router.get('/shu/jwc/:type?', lazyloadRouteHandler('./routes/universities/shu/jwc'));
         
     | 
| 
       749 
     | 
    
         
            -
             
     | 
| 
       750 
     | 
    
         
            -
            // 北京科技大学天津学院
         
     | 
| 
       751 
     | 
    
         
            -
            router.get('/ustb/tj/news/:type?', lazyloadRouteHandler('./routes/universities/ustb/tj/news'));
         
     | 
| 
       752 
     | 
    
         
            -
             
     | 
| 
       753 
     | 
    
         
            -
            // 深圳大学
         
     | 
| 
       754 
     | 
    
         
            -
            // router.get('/szu/yz/:type?', lazyloadRouteHandler('./routes/universities/szu/yz'));
         
     | 
| 
       755 
     | 
    
         
            -
             
     | 
| 
       756 
     | 
    
         
            -
            // 中国石油大学(华东)
         
     | 
| 
       757 
     | 
    
         
            -
            // router.get('/upc/main/:type?', lazyloadRouteHandler('./routes/universities/upc/main'));
         
     | 
| 
       758 
     | 
    
         
            -
            // router.get('/upc/jsj/:type?', lazyloadRouteHandler('./routes/universities/upc/jsj'));
         
     | 
| 
       759 
     | 
    
         
            -
             
     | 
| 
       760 
     | 
    
         
            -
            // 华北水利水电大学
         
     | 
| 
       761 
     | 
    
         
            -
            // router.get('/ncwu/notice', lazyloadRouteHandler('./routes/universities/ncwu/notice'));
         
     | 
| 
       762 
     | 
    
         
            -
             
     | 
| 
       763 
     | 
    
         
            -
            // 太原师范学院
         
     | 
| 
       764 
     | 
    
         
            -
            // router.get('/tynu', lazyloadRouteHandler('./routes/universities/tynu/tynu'));
         
     | 
| 
       765 
     | 
    
         
            -
             
     | 
| 
       766 
278 
     | 
    
         
             
            // 中北大学
         
     | 
| 
       767 
279 
     | 
    
         
             
            router.get('/nuc/:type', lazyloadRouteHandler('./routes/universities/nuc/index'));
         
     | 
| 
       768 
280 
     | 
    
         | 
| 
         @@ -787,7 +299,7 @@ router.get('/lyu/news/:type', lazyloadRouteHandler('./routes/universities/lyu/ne 
     | 
|
| 
       787 
299 
     | 
    
         | 
| 
       788 
300 
     | 
    
         
             
            // 福州大学
         
     | 
| 
       789 
301 
     | 
    
         
             
            router.get('/fzu/:type', lazyloadRouteHandler('./routes/universities/fzu/news'));
         
     | 
| 
       790 
     | 
    
         
            -
            router.get('/fzu_min/:type', lazyloadRouteHandler('./routes/universities/fzu/ 
     | 
| 
      
 302 
     | 
    
         
            +
            router.get('/fzu_min/:type', lazyloadRouteHandler('./routes/universities/fzu/news-min'));
         
     | 
| 
       791 
303 
     | 
    
         | 
| 
       792 
304 
     | 
    
         
             
            // 厦门大学
         
     | 
| 
       793 
305 
     | 
    
         
             
            router.get('/xmu/aero/:type', lazyloadRouteHandler('./routes/universities/xmu/aero'));
         
     | 
| 
         @@ -795,33 +307,8 @@ router.get('/xmu/aero/:type', lazyloadRouteHandler('./routes/universities/xmu/ae 
     | 
|
| 
       795 
307 
     | 
    
         
             
            // ifanr
         
     | 
| 
       796 
308 
     | 
    
         
             
            router.get('/ifanr/:channel?', lazyloadRouteHandler('./routes/ifanr/index'));
         
     | 
| 
       797 
309 
     | 
    
         | 
| 
       798 
     | 
    
         
            -
            // 果壳网
         
     | 
| 
       799 
     | 
    
         
            -
            // router.get('/guokr/scientific', lazyloadRouteHandler('./routes/guokr/scientific'));
         
     | 
| 
       800 
     | 
    
         
            -
            // router.get('/guokr/:channel', lazyloadRouteHandler('./routes/guokr/calendar'));
         
     | 
| 
       801 
     | 
    
         
            -
             
     | 
| 
       802 
     | 
    
         
            -
            // 联合早报 已经迁移至v2模板
         
     | 
| 
       803 
     | 
    
         
            -
            // router.get('/zaobao/realtime/:section?', require('./routes/zaobao/realtime'));
         
     | 
| 
       804 
     | 
    
         
            -
            // router.get('/zaobao/znews/:section?', require('./routes/zaobao/znews'));
         
     | 
| 
       805 
     | 
    
         
            -
            // router.get('/zaobao/:type/:section', lazyloadRouteHandler('./routes/zaobao/index'));
         
     | 
| 
       806 
     | 
    
         
            -
            // router.get('/zaobao/interactive-graphics', lazyloadRouteHandler('./routes/zaobao/interactive'));
         
     | 
| 
       807 
     | 
    
         
            -
             
     | 
| 
       808 
310 
     | 
    
         
             
            // IPSW.me
         
     | 
| 
       809 
     | 
    
         
            -
            router.get('/ipsw/index/:ptype/:pname', lazyloadRouteHandler('./routes/ipsw/index'));
         
     | 
| 
       810 
     | 
    
         
            -
             
     | 
| 
       811 
     | 
    
         
            -
            // Minecraft CurseForge
         
     | 
| 
       812 
     | 
    
         
            -
            router.get('/curseforge/files/:project', lazyloadRouteHandler('./routes/curseforge/files'));
         
     | 
| 
       813 
     | 
    
         
            -
             
     | 
| 
       814 
     | 
    
         
            -
            // 少数派 sspai migrated to v2
         
     | 
| 
       815 
     | 
    
         
            -
            // router.get('/sspai/index', lazyloadRouteHandler('./routes/sspai/index'));
         
     | 
| 
       816 
     | 
    
         
            -
            // router.get('/sspai/series', lazyloadRouteHandler('./routes/sspai/series'));
         
     | 
| 
       817 
     | 
    
         
            -
            // router.get('/sspai/shortcuts', lazyloadRouteHandler('./routes/sspai/shortcutsGallery'));
         
     | 
| 
       818 
     | 
    
         
            -
            // router.get('/sspai/matrix', lazyloadRouteHandler('./routes/sspai/matrix'));
         
     | 
| 
       819 
     | 
    
         
            -
            // router.get('/sspai/column/:id', lazyloadRouteHandler('./routes/sspai/column'));
         
     | 
| 
       820 
     | 
    
         
            -
            // router.get('/sspai/author/:id', lazyloadRouteHandler('./routes/sspai/author'));
         
     | 
| 
       821 
     | 
    
         
            -
            // router.get('/sspai/topics', lazyloadRouteHandler('./routes/sspai/topics'));
         
     | 
| 
       822 
     | 
    
         
            -
            // router.get('/sspai/topic/:id', lazyloadRouteHandler('./routes/sspai/topic'));
         
     | 
| 
       823 
     | 
    
         
            -
            // router.get('/sspai/tag/:keyword', lazyloadRouteHandler('./routes/sspai/tag'));
         
     | 
| 
       824 
     | 
    
         
            -
            // router.get('/sspai/activity/:slug', lazyloadRouteHandler('./routes/sspai/activity'));
         
     | 
| 
      
 311 
     | 
    
         
            +
            // router.get('/ipsw/index/:ptype/:pname', lazyloadRouteHandler('./routes/ipsw/index'));
         
     | 
| 
       825 
312 
     | 
    
         | 
| 
       826 
313 
     | 
    
         
             
            // 异次元软件世界
         
     | 
| 
       827 
314 
     | 
    
         
             
            router.get('/iplay/home', lazyloadRouteHandler('./routes/iplay/home'));
         
     | 
| 
         @@ -829,67 +316,18 @@ router.get('/iplay/home', lazyloadRouteHandler('./routes/iplay/home')); 
     | 
|
| 
       829 
316 
     | 
    
         
             
            // xclient.info
         
     | 
| 
       830 
317 
     | 
    
         
             
            router.get('/xclient/app/:name', lazyloadRouteHandler('./routes/xclient/app'));
         
     | 
| 
       831 
318 
     | 
    
         | 
| 
       832 
     | 
    
         
            -
            // 中国驻外使领事馆 migrated to v2
         
     | 
| 
       833 
     | 
    
         
            -
            // router.get('/embassy/:country/:city?', lazyloadRouteHandler('./routes/embassy/index'));
         
     | 
| 
       834 
     | 
    
         
            -
             
     | 
| 
       835 
     | 
    
         
            -
            // 澎湃新闻
         
     | 
| 
       836 
     | 
    
         
            -
            // router.get('/thepaper/featured', lazyloadRouteHandler('./routes/thepaper/featured'));
         
     | 
| 
       837 
     | 
    
         
            -
            // router.get('/thepaper/channel/:id', lazyloadRouteHandler('./routes/thepaper/channel'));
         
     | 
| 
       838 
     | 
    
         
            -
            // router.get('/thepaper/list/:id', lazyloadRouteHandler('./routes/thepaper/list'));
         
     | 
| 
       839 
     | 
    
         
            -
             
     | 
| 
       840 
     | 
    
         
            -
            // 澎湃美数课
         
     | 
| 
       841 
     | 
    
         
            -
            // router.get('/thepaper/839studio', lazyloadRouteHandler('./routes/thepaper/839studio/studio.js'));
         
     | 
| 
       842 
     | 
    
         
            -
            // router.get('/thepaper/839studio/:id', lazyloadRouteHandler('./routes/thepaper/839studio/category.js'));
         
     | 
| 
       843 
     | 
    
         
            -
             
     | 
| 
       844 
     | 
    
         
            -
            // 电影首发站
         
     | 
| 
       845 
     | 
    
         
            -
            router.get('/dysfz', lazyloadRouteHandler('./routes/dysfz/index'));
         
     | 
| 
       846 
     | 
    
         
            -
            router.get('/dysfz/index', lazyloadRouteHandler('./routes/dysfz/index')); // 废弃
         
     | 
| 
       847 
     | 
    
         
            -
             
     | 
| 
       848 
     | 
    
         
            -
            // きららファンタジア
         
     | 
| 
       849 
     | 
    
         
            -
            router.get('/kirara/news', lazyloadRouteHandler('./routes/kirara/news'));
         
     | 
| 
       850 
     | 
    
         
            -
             
     | 
| 
       851 
319 
     | 
    
         
             
            // 电影天堂
         
     | 
| 
       852 
320 
     | 
    
         
             
            router.get('/dytt', lazyloadRouteHandler('./routes/dytt/index'));
         
     | 
| 
       853 
321 
     | 
    
         
             
            router.get('/dytt/index', lazyloadRouteHandler('./routes/dytt/index')); // 废弃
         
     | 
| 
       854 
322 
     | 
    
         | 
| 
       855 
     | 
    
         
            -
            // BT之家
         
     | 
| 
       856 
     | 
    
         
            -
            // router.get('/btzj/:type?', lazyloadRouteHandler('./routes/btzj/index'));
         
     | 
| 
       857 
     | 
    
         
            -
             
     | 
| 
       858 
     | 
    
         
            -
            // 人生05电影网
         
     | 
| 
       859 
     | 
    
         
            -
            router.get('/rs05/rs05', lazyloadRouteHandler('./routes/rs05/rs05'));
         
     | 
| 
       860 
     | 
    
         
            -
             
     | 
| 
       861 
     | 
    
         
            -
            // 人人影视 (评测推荐) migrated to v2
         
     | 
| 
       862 
     | 
    
         
            -
            // router.get('/rrys/review', lazyloadRouteHandler('./routes/rrys/review'));
         
     | 
| 
       863 
     | 
    
         
            -
            // 人人影视(每日更新)
         
     | 
| 
       864 
     | 
    
         
            -
            // router.get('/yyets/todayfilelist', lazyloadRouteHandler('./routes/yyets/todayfilelist'));
         
     | 
| 
       865 
     | 
    
         
            -
             
     | 
| 
       866 
323 
     | 
    
         
             
            // 趣头条
         
     | 
| 
       867 
324 
     | 
    
         
             
            router.get('/qutoutiao/category/:cid', lazyloadRouteHandler('./routes/qutoutiao/category'));
         
     | 
| 
       868 
325 
     | 
    
         | 
| 
       869 
     | 
    
         
            -
            // NHK NEW WEB EASY migrated to v2
         
     | 
| 
       870 
     | 
    
         
            -
            // router.get('/nhk/news_web_easy', lazyloadRouteHandler('./routes/nhk/news_web_easy'));
         
     | 
| 
       871 
     | 
    
         
            -
             
     | 
| 
       872 
326 
     | 
    
         
             
            // BBC
         
     | 
| 
       873 
     | 
    
         
            -
            router.get('/bbc/:site?/:channel?', lazyloadRouteHandler('./routes/bbc/index'));
         
     | 
| 
       874 
     | 
    
         
            -
             
     | 
| 
       875 
     | 
    
         
            -
            // Financial Times migrated to v2
         
     | 
| 
       876 
     | 
    
         
            -
            // router.get('/ft/myft/:key', lazyloadRouteHandler('./routes/ft/myft'));
         
     | 
| 
       877 
     | 
    
         
            -
            // router.get('/ft/:language/:channel?', lazyloadRouteHandler('./routes/ft/channel'));
         
     | 
| 
       878 
     | 
    
         
            -
             
     | 
| 
       879 
     | 
    
         
            -
            // The Verge
         
     | 
| 
       880 
     | 
    
         
            -
            // router.get('/verge', lazyloadRouteHandler('./routes/verge/index'));
         
     | 
| 
      
 327 
     | 
    
         
            +
            // router.get('/bbc/:site?/:channel?', lazyloadRouteHandler('./routes/bbc/index'));
         
     | 
| 
       881 
328 
     | 
    
         | 
| 
       882 
329 
     | 
    
         
             
            // 看雪
         
     | 
| 
       883 
     | 
    
         
            -
            router.get('/pediy/topic/:category?/:type?', lazyloadRouteHandler('./routes/pediy/topic'));
         
     | 
| 
       884 
     | 
    
         
            -
             
     | 
| 
       885 
     | 
    
         
            -
            // 知晓程序
         
     | 
| 
       886 
     | 
    
         
            -
            router.get('/miniapp/article/:category', lazyloadRouteHandler('./routes/miniapp/article'));
         
     | 
| 
       887 
     | 
    
         
            -
            router.get('/miniapp/store/newest', lazyloadRouteHandler('./routes/miniapp/store/newest'));
         
     | 
| 
       888 
     | 
    
         
            -
             
     | 
| 
       889 
     | 
    
         
            -
            // 后续
         
     | 
| 
       890 
     | 
    
         
            -
            // router.get('/houxu/live/:id/:timeline?', lazyloadRouteHandler('./routes/houxu/live'));
         
     | 
| 
       891 
     | 
    
         
            -
            // router.get('/houxu/events', lazyloadRouteHandler('./routes/houxu/events'));
         
     | 
| 
       892 
     | 
    
         
            -
            // router.get('/houxu/lives/:type', lazyloadRouteHandler('./routes/houxu/lives'));
         
     | 
| 
      
 330 
     | 
    
         
            +
            // router.get('/pediy/topic/:category?/:type?', lazyloadRouteHandler('./routes/pediy/topic'));
         
     | 
| 
       893 
331 
     | 
    
         | 
| 
       894 
332 
     | 
    
         
             
            // 老司机
         
     | 
| 
       895 
333 
     | 
    
         
             
            router.get('/laosiji/hot', lazyloadRouteHandler('./routes/laosiji/hot'));
         
     | 
| 
         @@ -905,16 +343,13 @@ router.get('/99percentinvisible/transcript', lazyloadRouteHandler('./routes/99pe 
     | 
|
| 
       905 
343 
     | 
    
         
             
            // 青空文庫
         
     | 
| 
       906 
344 
     | 
    
         
             
            router.get('/aozora/newbook/:count?', lazyloadRouteHandler('./routes/aozora/newbook'));
         
     | 
| 
       907 
345 
     | 
    
         | 
| 
       908 
     | 
    
         
            -
            // solidot migrated to v2
         
     | 
| 
       909 
     | 
    
         
            -
            // router.get('/solidot/:type?', lazyloadRouteHandler('./routes/solidot/main'));
         
     | 
| 
       910 
     | 
    
         
            -
             
     | 
| 
       911 
346 
     | 
    
         
             
            // Hermes UK
         
     | 
| 
       912 
347 
     | 
    
         
             
            router.get('/parcel/hermesuk/:tracking', lazyloadRouteHandler('./routes/parcel/hermesuk'));
         
     | 
| 
       913 
348 
     | 
    
         | 
| 
       914 
349 
     | 
    
         
             
            // 数字尾巴
         
     | 
| 
       915 
350 
     | 
    
         
             
            router.get('/dgtle', lazyloadRouteHandler('./routes/dgtle/index'));
         
     | 
| 
       916 
351 
     | 
    
         
             
            router.get('/dgtle/whale/category/:category', lazyloadRouteHandler('./routes/dgtle/whale'));
         
     | 
| 
       917 
     | 
    
         
            -
            router.get('/dgtle/whale/rank/:type/:rule', lazyloadRouteHandler('./routes/dgtle/ 
     | 
| 
      
 352 
     | 
    
         
            +
            router.get('/dgtle/whale/rank/:type/:rule', lazyloadRouteHandler('./routes/dgtle/whale-rank'));
         
     | 
| 
       918 
353 
     | 
    
         
             
            router.get('/dgtle/trade/:typeId?', lazyloadRouteHandler('./routes/dgtle/trade'));
         
     | 
| 
       919 
354 
     | 
    
         
             
            router.get('/dgtle/trade/search/:keyword', lazyloadRouteHandler('./routes/dgtle/keyword'));
         
     | 
| 
       920 
355 
     | 
    
         | 
| 
         @@ -922,61 +357,26 @@ router.get('/dgtle/trade/search/:keyword', lazyloadRouteHandler('./routes/dgtle/ 
     | 
|
| 
       922 
357 
     | 
    
         
             
            router.get('/chouti/top/:hour?', lazyloadRouteHandler('./routes/chouti/top'));
         
     | 
| 
       923 
358 
     | 
    
         
             
            router.get('/chouti/:subject?', lazyloadRouteHandler('./routes/chouti'));
         
     | 
| 
       924 
359 
     | 
    
         | 
| 
       925 
     | 
    
         
            -
            // 西安电子科技大学 migrated to v2
         
     | 
| 
       926 
     | 
    
         
            -
            // router.get('/xidian/jwc/:category?', lazyloadRouteHandler('./routes/universities/xidian/jwc'));
         
     | 
| 
       927 
     | 
    
         
            -
             
     | 
| 
       928 
     | 
    
         
            -
            // Westore
         
     | 
| 
       929 
     | 
    
         
            -
            router.get('/westore/new', lazyloadRouteHandler('./routes/westore/new'));
         
     | 
| 
       930 
     | 
    
         
            -
             
     | 
| 
       931 
     | 
    
         
            -
            // nHentai
         
     | 
| 
       932 
     | 
    
         
            -
            // router.get('/nhentai/search/:keyword/:mode?', lazyloadRouteHandler('./routes/nhentai/search'));
         
     | 
| 
       933 
     | 
    
         
            -
            // router.get('/nhentai/:key/:keyword/:mode?', lazyloadRouteHandler('./routes/nhentai/other'));
         
     | 
| 
       934 
     | 
    
         
            -
             
     | 
| 
       935 
360 
     | 
    
         
             
            // 龙腾网
         
     | 
| 
       936 
361 
     | 
    
         
             
            router.get('/ltaaa/:category?', lazyloadRouteHandler('./routes/ltaaa/index'));
         
     | 
| 
       937 
362 
     | 
    
         | 
| 
       938 
     | 
    
         
            -
            // AcFun migrated to v2
         
     | 
| 
       939 
     | 
    
         
            -
            // router.get('/acfun/bangumi/:id', lazyloadRouteHandler('./routes/acfun/bangumi'));
         
     | 
| 
       940 
     | 
    
         
            -
            // router.get('/acfun/user/video/:uid', lazyloadRouteHandler('./routes/acfun/video'));
         
     | 
| 
       941 
     | 
    
         
            -
             
     | 
| 
       942 
363 
     | 
    
         
             
            // Auto Trader
         
     | 
| 
       943 
364 
     | 
    
         
             
            router.get('/autotrader/:query', lazyloadRouteHandler('./routes/autotrader'));
         
     | 
| 
       944 
365 
     | 
    
         | 
| 
       945 
366 
     | 
    
         
             
            // 极客公园
         
     | 
| 
       946 
367 
     | 
    
         
             
            router.get('/geekpark/breakingnews', lazyloadRouteHandler('./routes/geekpark/breakingnews'));
         
     | 
| 
       947 
368 
     | 
    
         | 
| 
       948 
     | 
    
         
            -
            // 百度
         
     | 
| 
       949 
     | 
    
         
            -
            router.get('/baidu/doodles', lazyloadRouteHandler('./routes/baidu/doodles'));
         
     | 
| 
       950 
     | 
    
         
            -
            // router.get('/baidu/topwords/:boardId?', lazyloadRouteHandler('./routes/baidu/topwords'));
         
     | 
| 
       951 
     | 
    
         
            -
            router.get('/baidu/daily', lazyloadRouteHandler('./routes/baidu/daily'));
         
     | 
| 
       952 
     | 
    
         
            -
             
     | 
| 
       953 
369 
     | 
    
         
             
            // 搜狗
         
     | 
| 
       954 
     | 
    
         
            -
            router.get('/sogou/doodles', lazyloadRouteHandler('./routes/sogou/doodles'));
         
     | 
| 
      
 370 
     | 
    
         
            +
            // router.get('/sogou/doodles', lazyloadRouteHandler('./routes/sogou/doodles'));
         
     | 
| 
       955 
371 
     | 
    
         | 
| 
       956 
372 
     | 
    
         
             
            // 香港天文台
         
     | 
| 
       957 
373 
     | 
    
         
             
            router.get('/hko/weather', lazyloadRouteHandler('./routes/hko/weather'));
         
     | 
| 
       958 
374 
     | 
    
         | 
| 
       959 
     | 
    
         
            -
            // sankakucomplex
         
     | 
| 
       960 
     | 
    
         
            -
            router.get('/sankakucomplex/post', lazyloadRouteHandler('./routes/sankakucomplex/post'));
         
     | 
| 
       961 
     | 
    
         
            -
             
     | 
| 
       962 
     | 
    
         
            -
            // 技术头条
         
     | 
| 
       963 
     | 
    
         
            -
            router.get('/blogread/newest', lazyloadRouteHandler('./routes/blogread/newest'));
         
     | 
| 
       964 
     | 
    
         
            -
             
     | 
| 
       965 
375 
     | 
    
         
             
            // gnn游戏新闻
         
     | 
| 
       966 
376 
     | 
    
         
             
            router.get('/gnn/gnn', lazyloadRouteHandler('./routes/gnn/gnn'));
         
     | 
| 
       967 
377 
     | 
    
         | 
| 
       968 
378 
     | 
    
         
             
            // a9vg游戏新闻
         
     | 
| 
       969 
     | 
    
         
            -
            router.get('/a9vg/a9vg', lazyloadRouteHandler('./routes/a9vg/a9vg'));
         
     | 
| 
       970 
     | 
    
         
            -
             
     | 
| 
       971 
     | 
    
         
            -
            // IT桔子
         
     | 
| 
       972 
     | 
    
         
            -
            router.get('/itjuzi/invest', lazyloadRouteHandler('./routes/itjuzi/invest'));
         
     | 
| 
       973 
     | 
    
         
            -
            router.get('/itjuzi/merge', lazyloadRouteHandler('./routes/itjuzi/merge'));
         
     | 
| 
       974 
     | 
    
         
            -
             
     | 
| 
       975 
     | 
    
         
            -
            // 探物
         
     | 
| 
       976 
     | 
    
         
            -
            router.get('/tanwu/products', lazyloadRouteHandler('./routes/tanwu/products'));
         
     | 
| 
       977 
     | 
    
         
            -
             
     | 
| 
       978 
     | 
    
         
            -
            // GitChat
         
     | 
| 
       979 
     | 
    
         
            -
            router.get('/gitchat/newest/:category?/:selected?', lazyloadRouteHandler('./routes/gitchat/newest'));
         
     | 
| 
      
 379 
     | 
    
         
            +
            // router.get('/a9vg/a9vg', lazyloadRouteHandler('./routes/a9vg/a9vg'));
         
     | 
| 
       980 
380 
     | 
    
         | 
| 
       981 
381 
     | 
    
         
             
            // The Guardian
         
     | 
| 
       982 
382 
     | 
    
         
             
            router.get('/guardian/:type', lazyloadRouteHandler('./routes/guardian/guardian'));
         
     | 
| 
         @@ -989,22 +389,6 @@ router.get('/xiachufang/popular/:timeframe?', lazyloadRouteHandler('./routes/xia 
     | 
|
| 
       989 
389 
     | 
    
         
             
            // 经济观察报
         
     | 
| 
       990 
390 
     | 
    
         
             
            router.get('/eeo/:column?/:category?', lazyloadRouteHandler('./routes/eeo/index'));
         
     | 
| 
       991 
391 
     | 
    
         | 
| 
       992 
     | 
    
         
            -
            // 腾讯视频
         
     | 
| 
       993 
     | 
    
         
            -
            router.get('/tencentvideo/playlist/:id', lazyloadRouteHandler('./routes/tencent/video/playlist'));
         
     | 
| 
       994 
     | 
    
         
            -
             
     | 
| 
       995 
     | 
    
         
            -
            // 看漫画 migrated to v2
         
     | 
| 
       996 
     | 
    
         
            -
            // router.get('/manhuagui/comic/:id/:chapterCnt?', lazyloadRouteHandler('./routes/manhuagui/comic'));
         
     | 
| 
       997 
     | 
    
         
            -
            // router.get('/mhgui/comic/:id/:chapterCnt?', lazyloadRouteHandler('./routes/mhgui/comic'));
         
     | 
| 
       998 
     | 
    
         
            -
            // router.get('/twmanhuagui/comic/:id/:chapterCnt?', lazyloadRouteHandler('./routes/twmanhuagui/comic'));
         
     | 
| 
       999 
     | 
    
         
            -
             
     | 
| 
       1000 
     | 
    
         
            -
            // 拷贝漫画
         
     | 
| 
       1001 
     | 
    
         
            -
            // router.get('/copymanga/comic/:id/:chapterCnt?', lazyloadRouteHandler('./routes/copymanga/comic'));
         
     | 
| 
       1002 
     | 
    
         
            -
             
     | 
| 
       1003 
     | 
    
         
            -
            // 拷贝漫画
         
     | 
| 
       1004 
     | 
    
         
            -
            // router.get('/copymanga/comic/:id', lazyloadRouteHandler('./routes/copymanga/comic'));
         
     | 
| 
       1005 
     | 
    
         
            -
             
     | 
| 
       1006 
     | 
    
         
            -
            // 動漫狂
         
     | 
| 
       1007 
     | 
    
         
            -
            // router.get('/cartoonmad/comic/:id', lazyloadRouteHandler('./routes/cartoonmad/comic'));
         
     | 
| 
       1008 
392 
     | 
    
         
             
            // Vol
         
     | 
| 
       1009 
393 
     | 
    
         
             
            router.get('/vol/:mode?', lazyloadRouteHandler('./routes/vol/lastupdate'));
         
     | 
| 
       1010 
394 
     | 
    
         
             
            // 咚漫
         
     | 
| 
         @@ -1019,104 +403,33 @@ router.get('/tits-guru/daily', lazyloadRouteHandler('./routes/titsguru/daily')); 
     | 
|
| 
       1019 
403 
     | 
    
         
             
            router.get('/tits-guru/category/:type', lazyloadRouteHandler('./routes/titsguru/category'));
         
     | 
| 
       1020 
404 
     | 
    
         
             
            router.get('/tits-guru/model/:name', lazyloadRouteHandler('./routes/titsguru/model'));
         
     | 
| 
       1021 
405 
     | 
    
         | 
| 
       1022 
     | 
    
         
            -
            // typora
         
     | 
| 
       1023 
     | 
    
         
            -
            // router.get('/typora/changelog', lazyloadRouteHandler('./routes/typora/changelog'));
         
     | 
| 
       1024 
     | 
    
         
            -
            // router.get('/typora/changelog-dev/:os?', lazyloadRouteHandler('./routes/typora/changelog-dev'));
         
     | 
| 
       1025 
     | 
    
         
            -
             
     | 
| 
       1026 
     | 
    
         
            -
            // TSSstatus
         
     | 
| 
       1027 
     | 
    
         
            -
            router.get('/tssstatus/:board/:build', lazyloadRouteHandler('./routes/tssstatus'));
         
     | 
| 
       1028 
     | 
    
         
            -
             
     | 
| 
       1029 
406 
     | 
    
         
             
            // Anime1
         
     | 
| 
       1030 
407 
     | 
    
         
             
            router.get('/anime1/anime/:time/:name', lazyloadRouteHandler('./routes/anime1/anime'));
         
     | 
| 
       1031 
408 
     | 
    
         
             
            router.get('/anime1/search/:keyword', lazyloadRouteHandler('./routes/anime1/search'));
         
     | 
| 
       1032 
409 
     | 
    
         | 
| 
       1033 
     | 
    
         
            -
            // Global UDN
         
     | 
| 
       1034 
     | 
    
         
            -
            // router.get('/udn/global/:tid', lazyloadRouteHandler('./routes/udn/global'));
         
     | 
| 
       1035 
     | 
    
         
            -
             
     | 
| 
       1036 
     | 
    
         
            -
            // gitea
         
     | 
| 
       1037 
     | 
    
         
            -
            router.get('/gitea/blog', lazyloadRouteHandler('./routes/gitea/blog'));
         
     | 
| 
       1038 
     | 
    
         
            -
             
     | 
| 
       1039 
410 
     | 
    
         
             
            // iDownloadBlog
         
     | 
| 
       1040 
411 
     | 
    
         
             
            router.get('/idownloadblog', lazyloadRouteHandler('./routes/idownloadblog/index'));
         
     | 
| 
       1041 
412 
     | 
    
         | 
| 
       1042 
     | 
    
         
            -
            // 9to5
         
     | 
| 
       1043 
     | 
    
         
            -
            // router.get('/9to5/:subsite/:tag?', lazyloadRouteHandler('./routes/9to5/subsite'));
         
     | 
| 
       1044 
     | 
    
         
            -
             
     | 
| 
       1045 
413 
     | 
    
         
             
            // TesterHome
         
     | 
| 
       1046 
414 
     | 
    
         
             
            router.get('/testerhome/newest', lazyloadRouteHandler('./routes/testerhome/newest'));
         
     | 
| 
       1047 
415 
     | 
    
         | 
| 
       1048 
     | 
    
         
            -
            // 刷屏
         
     | 
| 
       1049 
     | 
    
         
            -
            router.get('/weseepro/newest', lazyloadRouteHandler('./routes/weseepro/newest'));
         
     | 
| 
       1050 
     | 
    
         
            -
            router.get('/weseepro/newest-direct', lazyloadRouteHandler('./routes/weseepro/newest-direct'));
         
     | 
| 
       1051 
     | 
    
         
            -
            router.get('/weseepro/circle', lazyloadRouteHandler('./routes/weseepro/circle'));
         
     | 
| 
       1052 
     | 
    
         
            -
             
     | 
| 
       1053 
416 
     | 
    
         
             
            // 玩物志
         
     | 
| 
       1054 
417 
     | 
    
         
             
            router.get('/coolbuy/newest', lazyloadRouteHandler('./routes/coolbuy/newest'));
         
     | 
| 
       1055 
418 
     | 
    
         | 
| 
       1056 
     | 
    
         
            -
            // MiniFlux
         
     | 
| 
       1057 
     | 
    
         
            -
            router.get('/miniflux/subscription/:parameters?', lazyloadRouteHandler('./routes/miniflux/get_feeds'));
         
     | 
| 
       1058 
     | 
    
         
            -
            router.get('/miniflux/:feeds/:parameters?', lazyloadRouteHandler('./routes/miniflux/get_entries'));
         
     | 
| 
       1059 
     | 
    
         
            -
             
     | 
| 
       1060 
     | 
    
         
            -
            // NGA migrated to v2
         
     | 
| 
       1061 
     | 
    
         
            -
            // router.get('/nga/forum/:fid/:recommend?', lazyloadRouteHandler('./routes/nga/forum'));
         
     | 
| 
       1062 
     | 
    
         
            -
            // router.get('/nga/post/:tid', lazyloadRouteHandler('./routes/nga/post'));
         
     | 
| 
       1063 
     | 
    
         
            -
             
     | 
| 
       1064 
     | 
    
         
            -
            // Nautilus
         
     | 
| 
       1065 
     | 
    
         
            -
            // router.get('/nautilus/topic/:tid', lazyloadRouteHandler('./routes/nautilus/topics'));
         
     | 
| 
       1066 
     | 
    
         
            -
             
     | 
| 
       1067 
     | 
    
         
            -
            // JavBus migrated to v2
         
     | 
| 
       1068 
     | 
    
         
            -
            // router.get('/javbus/home', lazyloadRouteHandler('./routes/javbus/home'));
         
     | 
| 
       1069 
     | 
    
         
            -
            // router.get('/javbus/genre/:gid', lazyloadRouteHandler('./routes/javbus/genre'));
         
     | 
| 
       1070 
     | 
    
         
            -
            // router.get('/javbus/star/:sid', lazyloadRouteHandler('./routes/javbus/star'));
         
     | 
| 
       1071 
     | 
    
         
            -
            // router.get('/javbus/series/:seriesid', lazyloadRouteHandler('./routes/javbus/series'));
         
     | 
| 
       1072 
     | 
    
         
            -
            // router.get('/javbus/studio/:studioid', lazyloadRouteHandler('./routes/javbus/studio'));
         
     | 
| 
       1073 
     | 
    
         
            -
            // router.get('/javbus/label/:labelid', lazyloadRouteHandler('./routes/javbus/label'));
         
     | 
| 
       1074 
     | 
    
         
            -
            // router.get('/javbus/uncensored/home', lazyloadRouteHandler('./routes/javbus/uncensored/home'));
         
     | 
| 
       1075 
     | 
    
         
            -
            // router.get('/javbus/uncensored/genre/:gid', lazyloadRouteHandler('./routes/javbus/uncensored/genre'));
         
     | 
| 
       1076 
     | 
    
         
            -
            // router.get('/javbus/uncensored/star/:sid', lazyloadRouteHandler('./routes/javbus/uncensored/star'));
         
     | 
| 
       1077 
     | 
    
         
            -
            // router.get('/javbus/uncensored/series/:seriesid', lazyloadRouteHandler('./routes/javbus/uncensored/series'));
         
     | 
| 
       1078 
     | 
    
         
            -
            // router.get('/javbus/western/home', lazyloadRouteHandler('./routes/javbus/western/home'));
         
     | 
| 
       1079 
     | 
    
         
            -
            // router.get('/javbus/western/genre/:gid', lazyloadRouteHandler('./routes/javbus/western/genre'));
         
     | 
| 
       1080 
     | 
    
         
            -
            // router.get('/javbus/western/star/:sid', lazyloadRouteHandler('./routes/javbus/western/star'));
         
     | 
| 
       1081 
     | 
    
         
            -
            // router.get('/javbus/western/series/:seriesid', lazyloadRouteHandler('./routes/javbus/western/series'));
         
     | 
| 
       1082 
     | 
    
         
            -
             
     | 
| 
       1083 
     | 
    
         
            -
            // 中山大学
         
     | 
| 
       1084 
     | 
    
         
            -
            // router.get('/sysu/cse', lazyloadRouteHandler('./routes/universities/sysu/cse'));
         
     | 
| 
       1085 
     | 
    
         
            -
             
     | 
| 
       1086 
419 
     | 
    
         
             
            // 動畫瘋
         
     | 
| 
       1087 
     | 
    
         
            -
            router.get('/anigamer/new_anime', lazyloadRouteHandler('./routes/anigamer/ 
     | 
| 
       1088 
     | 
    
         
            -
            router.get('/anigamer/anime/:sn', lazyloadRouteHandler('./routes/anigamer/anime'));
         
     | 
| 
       1089 
     | 
    
         
            -
             
     | 
| 
       1090 
     | 
    
         
            -
            // Apkpure
         
     | 
| 
       1091 
     | 
    
         
            -
            // router.get('/apkpure/versions/:region/:pkg', lazyloadRouteHandler('./routes/apkpure/versions'));
         
     | 
| 
       1092 
     | 
    
         
            -
             
     | 
| 
       1093 
     | 
    
         
            -
            // 豆瓣美女 migrated to v2
         
     | 
| 
       1094 
     | 
    
         
            -
            // router.get('/dbmv/:category?', lazyloadRouteHandler('./routes/dbmv/index'));
         
     | 
| 
      
 420 
     | 
    
         
            +
            // router.get('/anigamer/new_anime', lazyloadRouteHandler('./routes/anigamer/new-anime'));
         
     | 
| 
      
 421 
     | 
    
         
            +
            // router.get('/anigamer/anime/:sn', lazyloadRouteHandler('./routes/anigamer/anime'));
         
     | 
| 
       1095 
422 
     | 
    
         | 
| 
       1096 
423 
     | 
    
         
             
            // 中国药科大学
         
     | 
| 
       1097 
424 
     | 
    
         
             
            router.get('/cpu/home', lazyloadRouteHandler('./routes/universities/cpu/home'));
         
     | 
| 
       1098 
425 
     | 
    
         
             
            router.get('/cpu/jwc', lazyloadRouteHandler('./routes/universities/cpu/jwc'));
         
     | 
| 
       1099 
426 
     | 
    
         
             
            router.get('/cpu/yjsy', lazyloadRouteHandler('./routes/universities/cpu/yjsy'));
         
     | 
| 
       1100 
427 
     | 
    
         | 
| 
       1101 
     | 
    
         
            -
            // 字幕组
         
     | 
| 
       1102 
     | 
    
         
            -
            router.get('/zimuzu/resource/:id?', lazyloadRouteHandler('./routes/zimuzu/resource'));
         
     | 
| 
       1103 
     | 
    
         
            -
            router.get('/zimuzu/top/:range/:type', lazyloadRouteHandler('./routes/zimuzu/top'));
         
     | 
| 
       1104 
     | 
    
         
            -
             
     | 
| 
       1105 
428 
     | 
    
         
             
            // 字幕库
         
     | 
| 
       1106 
429 
     | 
    
         
             
            router.get('/zimuku/:type?', lazyloadRouteHandler('./routes/zimuku/index'));
         
     | 
| 
       1107 
430 
     | 
    
         | 
| 
       1108 
     | 
    
         
            -
            // SubHD.tv
         
     | 
| 
       1109 
     | 
    
         
            -
            // router.get('/subhd/newest', lazyloadRouteHandler('./routes/subhd/newest'));
         
     | 
| 
       1110 
     | 
    
         
            -
             
     | 
| 
       1111 
     | 
    
         
            -
            // 虎嗅 migrated to v2
         
     | 
| 
       1112 
     | 
    
         
            -
            // router.get('/huxiu/tag/:id', lazyloadRouteHandler('./routes/huxiu/tag'));
         
     | 
| 
       1113 
     | 
    
         
            -
            // router.get('/huxiu/search/:keyword', lazyloadRouteHandler('./routes/huxiu/search'));
         
     | 
| 
       1114 
     | 
    
         
            -
            // router.get('/huxiu/author/:id', lazyloadRouteHandler('./routes/huxiu/author'));
         
     | 
| 
       1115 
     | 
    
         
            -
            // router.get('/huxiu/article', lazyloadRouteHandler('./routes/huxiu/article'));
         
     | 
| 
       1116 
     | 
    
         
            -
            // router.get('/huxiu/collection/:id', lazyloadRouteHandler('./routes/huxiu/collection'));
         
     | 
| 
       1117 
     | 
    
         
            -
             
     | 
| 
       1118 
431 
     | 
    
         
             
            // Steam
         
     | 
| 
       1119 
     | 
    
         
            -
            router.get('/steam/search/:params', lazyloadRouteHandler('./routes/steam/search'));
         
     | 
| 
      
 432 
     | 
    
         
            +
            // router.get('/steam/search/:params', lazyloadRouteHandler('./routes/steam/search'));
         
     | 
| 
       1120 
433 
     | 
    
         | 
| 
       1121 
434 
     | 
    
         
             
            // Steamgifts
         
     | 
| 
       1122 
435 
     | 
    
         
             
            router.get('/steamgifts/discussions/:category?', lazyloadRouteHandler('./routes/steam/steamgifts/discussions'));
         
     | 
| 
         @@ -1125,27 +438,13 @@ router.get('/steamgifts/discussions/:category?', lazyloadRouteHandler('./routes/ 
     | 
|
| 
       1125 
438 
     | 
    
         
             
            router.get('/shanbay/checkin/:id', lazyloadRouteHandler('./routes/shanbay/checkin'));
         
     | 
| 
       1126 
439 
     | 
    
         
             
            router.get('/shanbay/footprints/:category?', lazyloadRouteHandler('./routes/shanbay/footprints'));
         
     | 
| 
       1127 
440 
     | 
    
         | 
| 
       1128 
     | 
    
         
            -
            // Facebook
         
     | 
| 
       1129 
     | 
    
         
            -
            router.get('/facebook/page/:id', lazyloadRouteHandler('./routes/facebook/page'));
         
     | 
| 
       1130 
     | 
    
         
            -
             
     | 
| 
       1131 
     | 
    
         
            -
            // 币乎
         
     | 
| 
       1132 
     | 
    
         
            -
            router.get('/bihu/activaties/:id', lazyloadRouteHandler('./routes/bihu/activaties'));
         
     | 
| 
       1133 
     | 
    
         
            -
             
     | 
| 
       1134 
441 
     | 
    
         
             
            // 停电通知
         
     | 
| 
       1135 
442 
     | 
    
         
             
            router.get('/tingdiantz/nanjing', lazyloadRouteHandler('./routes/tingdiantz/nanjing'));
         
     | 
| 
       1136 
443 
     | 
    
         
             
            router.get('/tingdiantz/95598/:province/:city/:district?', lazyloadRouteHandler('./routes/tingdiantz/95598'));
         
     | 
| 
       1137 
444 
     | 
    
         | 
| 
       1138 
     | 
    
         
            -
            // 36kr migrated to v2
         
     | 
| 
       1139 
     | 
    
         
            -
            // router.get('/36kr/search/article/:keyword', lazyloadRouteHandler('./routes/36kr/search/article'));
         
     | 
| 
       1140 
     | 
    
         
            -
            // router.get('/36kr/newsflashes', lazyloadRouteHandler('./routes/36kr/newsflashes'));
         
     | 
| 
       1141 
     | 
    
         
            -
            // router.get('/36kr/news/:category?', lazyloadRouteHandler('./routes/36kr/news'));
         
     | 
| 
       1142 
     | 
    
         
            -
            // router.get('/36kr/user/:uid', lazyloadRouteHandler('./routes/36kr/user'));
         
     | 
| 
       1143 
     | 
    
         
            -
            // router.get('/36kr/motif/:mid', lazyloadRouteHandler('./routes/36kr/motif'));
         
     | 
| 
       1144 
     | 
    
         
            -
             
     | 
| 
       1145 
445 
     | 
    
         
             
            // PMCAFF
         
     | 
| 
       1146 
446 
     | 
    
         
             
            router.get('/pmcaff/list/:typeid', lazyloadRouteHandler('./routes/pmcaff/list'));
         
     | 
| 
       1147 
447 
     | 
    
         
             
            router.get('/pmcaff/feed/:typeid', lazyloadRouteHandler('./routes/pmcaff/feed'));
         
     | 
| 
       1148 
     | 
    
         
            -
            router.get('/pmcaff/user/:userid', lazyloadRouteHandler('./routes/pmcaff/user'));
         
     | 
| 
       1149 
448 
     | 
    
         | 
| 
       1150 
449 
     | 
    
         
             
            // icourse163
         
     | 
| 
       1151 
450 
     | 
    
         
             
            router.get('/icourse163/newest', lazyloadRouteHandler('./routes/icourse163/newest'));
         
     | 
| 
         @@ -1153,22 +452,12 @@ router.get('/icourse163/newest', lazyloadRouteHandler('./routes/icourse163/newes 
     | 
|
| 
       1153 
452 
     | 
    
         
             
            // patchwork.kernel.org
         
     | 
| 
       1154 
453 
     | 
    
         
             
            router.get('/patchwork.kernel.org/comments/:id', lazyloadRouteHandler('./routes/patchwork.kernel.org/comments'));
         
     | 
| 
       1155 
454 
     | 
    
         | 
| 
       1156 
     | 
    
         
            -
            // 京东众筹
         
     | 
| 
       1157 
     | 
    
         
            -
            router.get('/jingdong/zhongchou/:type/:status/:sort', lazyloadRouteHandler('./routes/jingdong/zhongchou'));
         
     | 
| 
       1158 
     | 
    
         
            -
             
     | 
| 
       1159 
455 
     | 
    
         
             
            // All Poetry
         
     | 
| 
       1160 
456 
     | 
    
         
             
            router.get('/allpoetry/:order?', lazyloadRouteHandler('./routes/allpoetry/order'));
         
     | 
| 
       1161 
457 
     | 
    
         | 
| 
       1162 
     | 
    
         
            -
            // 华尔街见闻
         
     | 
| 
       1163 
     | 
    
         
            -
            // router.get('/wallstreetcn/news/global', lazyloadRouteHandler('./routes/wallstreetcn/news'));
         
     | 
| 
       1164 
     | 
    
         
            -
            // router.get('/wallstreetcn/live/:channel?', lazyloadRouteHandler('./routes/wallstreetcn/live'));
         
     | 
| 
       1165 
     | 
    
         
            -
             
     | 
| 
       1166 
     | 
    
         
            -
            // 多抓鱼搜索
         
     | 
| 
       1167 
     | 
    
         
            -
            router.get('/duozhuayu/search/:wd', lazyloadRouteHandler('./routes/duozhuayu/search'));
         
     | 
| 
       1168 
     | 
    
         
            -
             
     | 
| 
       1169 
458 
     | 
    
         
             
            // 创业邦
         
     | 
| 
       1170 
     | 
    
         
            -
            router.get('/cyzone/author/:id', lazyloadRouteHandler('./routes/cyzone/author'));
         
     | 
| 
       1171 
     | 
    
         
            -
            router.get('/cyzone/label/:name', lazyloadRouteHandler('./routes/cyzone/label'));
         
     | 
| 
      
 459 
     | 
    
         
            +
            // router.get('/cyzone/author/:id', lazyloadRouteHandler('./routes/cyzone/author'));
         
     | 
| 
      
 460 
     | 
    
         
            +
            // router.get('/cyzone/label/:name', lazyloadRouteHandler('./routes/cyzone/label'));
         
     | 
| 
       1172 
461 
     | 
    
         | 
| 
       1173 
462 
     | 
    
         
             
            // 政府
         
     | 
| 
       1174 
463 
     | 
    
         
             
            // router.get('/gov/zhengce/zuixin', lazyloadRouteHandler('./routes/gov/zhengce/zuixin'));
         
     | 
| 
         @@ -1182,11 +471,8 @@ router.get('/gov/shuju/:caty/:item', lazyloadRouteHandler('./routes/gov/shuju')) 
     | 
|
| 
       1182 
471 
     | 
    
         
             
            router.get('/gov/xinwen/tujie/:caty', lazyloadRouteHandler('./routes/gov/xinwen/tujie'));
         
     | 
| 
       1183 
472 
     | 
    
         | 
| 
       1184 
473 
     | 
    
         
             
            // 苏州
         
     | 
| 
       1185 
     | 
    
         
            -
            router.get('/gov/suzhou/news/:uid', lazyloadRouteHandler('./routes/gov/suzhou/news'));
         
     | 
| 
       1186 
     | 
    
         
            -
            router.get('/gov/suzhou/doc', lazyloadRouteHandler('./routes/gov/suzhou/doc'));
         
     | 
| 
       1187 
     | 
    
         
            -
             
     | 
| 
       1188 
     | 
    
         
            -
            // 江苏
         
     | 
| 
       1189 
     | 
    
         
            -
            // router.get('/gov/jiangsu/eea/:type?', lazyloadRouteHandler('./routes/gov/jiangsu/eea'));
         
     | 
| 
      
 474 
     | 
    
         
            +
            // router.get('/gov/suzhou/news/:uid', lazyloadRouteHandler('./routes/gov/suzhou/news'));
         
     | 
| 
      
 475 
     | 
    
         
            +
            // router.get('/gov/suzhou/doc', lazyloadRouteHandler('./routes/gov/suzhou/doc'));
         
     | 
| 
       1190 
476 
     | 
    
         | 
| 
       1191 
477 
     | 
    
         
             
            // 山西
         
     | 
| 
       1192 
478 
     | 
    
         
             
            router.get('/gov/shanxi/rst/:category', lazyloadRouteHandler('./routes/gov/shanxi/rst'));
         
     | 
| 
         @@ -1195,16 +481,7 @@ router.get('/gov/shanxi/rst/:category', lazyloadRouteHandler('./routes/gov/shanx 
     | 
|
| 
       1195 
481 
     | 
    
         
             
            router.get('/gov/hunan/notice/:type', lazyloadRouteHandler('./routes/gov/hunan/notice'));
         
     | 
| 
       1196 
482 
     | 
    
         | 
| 
       1197 
483 
     | 
    
         
             
            // 中华人民共和国国家发展和改革委员会
         
     | 
| 
       1198 
     | 
    
         
            -
            router.get('/gov/ndrc/xwdt/:caty?', lazyloadRouteHandler('./routes/gov/ndrc/xwdt'));
         
     | 
| 
       1199 
     | 
    
         
            -
             
     | 
| 
       1200 
     | 
    
         
            -
            // 中华人民共和国-海关总署 migrated to v2
         
     | 
| 
       1201 
     | 
    
         
            -
            // router.get('/gov/customs/list/:gchannel', lazyloadRouteHandler('./routes/gov/customs/list'));
         
     | 
| 
       1202 
     | 
    
         
            -
             
     | 
| 
       1203 
     | 
    
         
            -
            // 中华人民共和国教育部
         
     | 
| 
       1204 
     | 
    
         
            -
            // router.get('/gov/moe/:type', lazyloadRouteHandler('./routes/gov/moe/moe'));
         
     | 
| 
       1205 
     | 
    
         
            -
             
     | 
| 
       1206 
     | 
    
         
            -
            // 中华人民共和国外交部
         
     | 
| 
       1207 
     | 
    
         
            -
            // router.get('/gov/fmprc/fyrbt', lazyloadRouteHandler('./routes/gov/fmprc/fyrbt'));
         
     | 
| 
      
 484 
     | 
    
         
            +
            // router.get('/gov/ndrc/xwdt/:caty?', lazyloadRouteHandler('./routes/gov/ndrc/xwdt'));
         
     | 
| 
       1208 
485 
     | 
    
         | 
| 
       1209 
486 
     | 
    
         
             
            // 中华人民共和国住房和城乡建设部
         
     | 
| 
       1210 
487 
     | 
    
         
             
            router.get('/gov/mohurd/policy', lazyloadRouteHandler('./routes/gov/mohurd/policy'));
         
     | 
| 
         @@ -1228,50 +505,13 @@ router.get('/gov/guangdong/edu/:caty', lazyloadRouteHandler('./routes/gov/guangd 
     | 
|
| 
       1228 
505 
     | 
    
         
             
            // 广东省教育考试院
         
     | 
| 
       1229 
506 
     | 
    
         
             
            router.get('/gov/guangdong/eea/:caty', lazyloadRouteHandler('./routes/gov/guangdong/eea'));
         
     | 
| 
       1230 
507 
     | 
    
         | 
| 
       1231 
     | 
    
         
            -
            // 广东省深圳市
         
     | 
| 
       1232 
     | 
    
         
            -
            // router.get('/gov/shenzhen/xxgk/zfxxgj/:caty', lazyloadRouteHandler('./routes/gov/shenzhen/xxgk/zfxxgj'));
         
     | 
| 
       1233 
     | 
    
         
            -
             
     | 
| 
       1234 
508 
     | 
    
         
             
            // 日本国外務省記者会見
         
     | 
| 
       1235 
509 
     | 
    
         
             
            router.get('/go.jp/mofa', lazyloadRouteHandler('./routes/go.jp/mofa/main'));
         
     | 
| 
       1236 
     | 
    
         
            -
             
     | 
| 
       1237 
     | 
    
         
            -
            // 小黑盒
         
     | 
| 
       1238 
     | 
    
         
            -
            router.get('/xiaoheihe/user/:id', lazyloadRouteHandler('./routes/xiaoheihe/user'));
         
     | 
| 
       1239 
     | 
    
         
            -
            router.get('/xiaoheihe/news', lazyloadRouteHandler('./routes/xiaoheihe/news'));
         
     | 
| 
       1240 
     | 
    
         
            -
            router.get('/xiaoheihe/discount/:platform?', lazyloadRouteHandler('./routes/xiaoheihe/discount'));
         
     | 
| 
       1241 
     | 
    
         
            -
             
     | 
| 
       1242 
     | 
    
         
            -
            // 惠誉评级
         
     | 
| 
       1243 
     | 
    
         
            -
            router.get('/fitchratings/site/:type', lazyloadRouteHandler('./routes/fitchratings/site'));
         
     | 
| 
       1244 
     | 
    
         
            -
             
     | 
| 
       1245 
     | 
    
         
            -
            // 移动支付 migrated to v2
         
     | 
| 
       1246 
     | 
    
         
            -
            // router.get('/mpaypass/news', lazyloadRouteHandler('./routes/mpaypass/news'));
         
     | 
| 
       1247 
     | 
    
         
            -
            // router.get('/mpaypass/main/:type?', lazyloadRouteHandler('./routes/mpaypass/main'));
         
     | 
| 
       1248 
     | 
    
         
            -
             
     | 
| 
       1249 
     | 
    
         
            -
            // 新浪科技探索
         
     | 
| 
       1250 
     | 
    
         
            -
            router.get('/sina/discovery/:type', lazyloadRouteHandler('./routes/sina/discovery'));
         
     | 
| 
       1251 
     | 
    
         
            -
             
     | 
| 
       1252 
     | 
    
         
            -
            // 新浪科技滚动新闻
         
     | 
| 
       1253 
     | 
    
         
            -
            router.get('/sina/rollnews', lazyloadRouteHandler('./routes/sina/rollnews'));
         
     | 
| 
       1254 
     | 
    
         
            -
             
     | 
| 
       1255 
     | 
    
         
            -
            // 新浪体育
         
     | 
| 
       1256 
     | 
    
         
            -
            router.get('/sina/sports/:type', lazyloadRouteHandler('./routes/sina/sports'));
         
     | 
| 
       1257 
     | 
    
         
            -
             
     | 
| 
       1258 
     | 
    
         
            -
            // 新浪专栏创事记
         
     | 
| 
       1259 
     | 
    
         
            -
            router.get('/sina/csj', lazyloadRouteHandler('./routes/sina/chuangshiji'));
         
     | 
| 
       1260 
     | 
    
         
            -
             
     | 
| 
       1261 
     | 
    
         
            -
            // 新浪财经-国內
         
     | 
| 
       1262 
     | 
    
         
            -
            router.get('/sina/finance', lazyloadRouteHandler('./routes/sina/finance'));
         
     | 
| 
       1263 
     | 
    
         
            -
             
     | 
| 
       1264 
     | 
    
         
            -
            // Animen
         
     | 
| 
       1265 
     | 
    
         
            -
            router.get('/animen/news/:type', lazyloadRouteHandler('./routes/animen/news'));
         
     | 
| 
       1266 
     | 
    
         
            -
             
     | 
| 
       1267 
     | 
    
         
            -
            // D2 资源库
         
     | 
| 
       1268 
     | 
    
         
            -
            router.get('/d2/daily', lazyloadRouteHandler('./routes/d2/daily'));
         
     | 
| 
       1269 
     | 
    
         
            -
             
     | 
| 
       1270 
510 
     | 
    
         
             
            // ebb
         
     | 
| 
       1271 
511 
     | 
    
         
             
            router.get('/ebb', lazyloadRouteHandler('./routes/ebb'));
         
     | 
| 
       1272 
512 
     | 
    
         | 
| 
       1273 
513 
     | 
    
         
             
            // Indienova
         
     | 
| 
       1274 
     | 
    
         
            -
            router.get('/indienova/:type', lazyloadRouteHandler('./routes/indienova/article'));
         
     | 
| 
      
 514 
     | 
    
         
            +
            // router.get('/indienova/:type', lazyloadRouteHandler('./routes/indienova/article'));
         
     | 
| 
       1275 
515 
     | 
    
         | 
| 
       1276 
516 
     | 
    
         
             
            // JPMorgan Chase Institute
         
     | 
| 
       1277 
517 
     | 
    
         
             
            router.get('/jpmorganchase', lazyloadRouteHandler('./routes/jpmorganchase/research'));
         
     | 
| 
         @@ -1282,45 +522,9 @@ router.get('/meipai/user/:uid', lazyloadRouteHandler('./routes/meipai/user')); 
     | 
|
| 
       1282 
522 
     | 
    
         
             
            // 多知网
         
     | 
| 
       1283 
523 
     | 
    
         
             
            router.get('/duozhi', lazyloadRouteHandler('./routes/duozhi'));
         
     | 
| 
       1284 
524 
     | 
    
         | 
| 
       1285 
     | 
    
         
            -
            // 人人都是产品经理
         
     | 
| 
       1286 
     | 
    
         
            -
            // router.get('/woshipm/popular', lazyloadRouteHandler('./routes/woshipm/popular'));
         
     | 
| 
       1287 
     | 
    
         
            -
            // router.get('/woshipm/wen', lazyloadRouteHandler('./routes/woshipm/wen'));
         
     | 
| 
       1288 
     | 
    
         
            -
            // router.get('/woshipm/bookmarks/:id', lazyloadRouteHandler('./routes/woshipm/bookmarks'));
         
     | 
| 
       1289 
     | 
    
         
            -
            // router.get('/woshipm/user_article/:id', lazyloadRouteHandler('./routes/woshipm/user_article'));
         
     | 
| 
       1290 
     | 
    
         
            -
            // router.get('/woshipm/latest', lazyloadRouteHandler('./routes/woshipm/latest'));
         
     | 
| 
       1291 
     | 
    
         
            -
             
     | 
| 
       1292 
525 
     | 
    
         
             
            // 高清电台
         
     | 
| 
       1293 
526 
     | 
    
         
             
            router.get('/gaoqing/latest', lazyloadRouteHandler('./routes/gaoqing/latest'));
         
     | 
| 
       1294 
527 
     | 
    
         | 
| 
       1295 
     | 
    
         
            -
            // 鲸跃汽车
         
     | 
| 
       1296 
     | 
    
         
            -
            router.get('/whalegogo/home', lazyloadRouteHandler('./routes/whalegogo/home'));
         
     | 
| 
       1297 
     | 
    
         
            -
            router.get('/whalegogo/portal/:type_id/:tagid?', lazyloadRouteHandler('./routes/whalegogo/portal'));
         
     | 
| 
       1298 
     | 
    
         
            -
             
     | 
| 
       1299 
     | 
    
         
            -
            // 爱思想
         
     | 
| 
       1300 
     | 
    
         
            -
            router.get('/aisixiang/column/:id', lazyloadRouteHandler('./routes/aisixiang/column'));
         
     | 
| 
       1301 
     | 
    
         
            -
            router.get('/aisixiang/ranking/:type?/:range?', lazyloadRouteHandler('./routes/aisixiang/ranking'));
         
     | 
| 
       1302 
     | 
    
         
            -
            router.get('/aisixiang/thinktank/:name/:type?', lazyloadRouteHandler('./routes/aisixiang/thinktank'));
         
     | 
| 
       1303 
     | 
    
         
            -
             
     | 
| 
       1304 
     | 
    
         
            -
            // Hacker News
         
     | 
| 
       1305 
     | 
    
         
            -
            // router.get('/hackernews/:section/:type?', lazyloadRouteHandler('./routes/hackernews/story'));
         
     | 
| 
       1306 
     | 
    
         
            -
             
     | 
| 
       1307 
     | 
    
         
            -
            // LeetCode
         
     | 
| 
       1308 
     | 
    
         
            -
            // router.get('/leetcode/articles', lazyloadRouteHandler('./routes/leetcode/articles'));
         
     | 
| 
       1309 
     | 
    
         
            -
            router.get('/leetcode/submission/us/:user', lazyloadRouteHandler('./routes/leetcode/check-us'));
         
     | 
| 
       1310 
     | 
    
         
            -
            router.get('/leetcode/submission/cn/:user', lazyloadRouteHandler('./routes/leetcode/check-cn'));
         
     | 
| 
       1311 
     | 
    
         
            -
             
     | 
| 
       1312 
     | 
    
         
            -
            // 虎扑
         
     | 
| 
       1313 
     | 
    
         
            -
            // router.get('/hupu/bxj/:id/:order?', lazyloadRouteHandler('./routes/hupu/bbs'));
         
     | 
| 
       1314 
     | 
    
         
            -
            // router.get('/hupu/bbs/:id/:order?', lazyloadRouteHandler('./routes/hupu/bbs'));
         
     | 
| 
       1315 
     | 
    
         
            -
            // router.get('/hupu/all/:caty', lazyloadRouteHandler('./routes/hupu/all'));
         
     | 
| 
       1316 
     | 
    
         
            -
            // router.get('/hupu/dept/:dept', lazyloadRouteHandler('./routes/hupu/dept'));
         
     | 
| 
       1317 
     | 
    
         
            -
             
     | 
| 
       1318 
     | 
    
         
            -
            // 牛客网 migrated to v2
         
     | 
| 
       1319 
     | 
    
         
            -
            // router.get('/nowcoder/discuss/:type/:order', lazyloadRouteHandler('./routes/nowcoder/discuss'));
         
     | 
| 
       1320 
     | 
    
         
            -
            // router.get('/nowcoder/schedule/:propertyId?/:typeId?', lazyloadRouteHandler('./routes/nowcoder/schedule'));
         
     | 
| 
       1321 
     | 
    
         
            -
            // router.get('/nowcoder/recommend', lazyloadRouteHandler('./routes/nowcoder/recommend'));
         
     | 
| 
       1322 
     | 
    
         
            -
            // router.get('/nowcoder/jobcenter/:recruitType?/:city?/:type?/:order?/:latest?', lazyloadRouteHandler('./routes/nowcoder/jobcenter'));
         
     | 
| 
       1323 
     | 
    
         
            -
             
     | 
| 
       1324 
528 
     | 
    
         
             
            // Xiaomi.eu
         
     | 
| 
       1325 
529 
     | 
    
         
             
            router.get('/xiaomieu/releases', lazyloadRouteHandler('./routes/xiaomieu/releases'));
         
     | 
| 
       1326 
530 
     | 
    
         | 
| 
         @@ -1331,40 +535,17 @@ router.get('/sketch/updates', lazyloadRouteHandler('./routes/sketch/updates')); 
     | 
|
| 
       1331 
535 
     | 
    
         
             
            // 每日安全
         
     | 
| 
       1332 
536 
     | 
    
         
             
            router.get('/security/pulses', lazyloadRouteHandler('./routes/security/pulses'));
         
     | 
| 
       1333 
537 
     | 
    
         | 
| 
       1334 
     | 
    
         
            -
            // DoNews
         
     | 
| 
       1335 
     | 
    
         
            -
            router.get('/donews/:column?', lazyloadRouteHandler('./routes/donews/index'));
         
     | 
| 
       1336 
     | 
    
         
            -
             
     | 
| 
       1337 
538 
     | 
    
         
             
            // WeGene
         
     | 
| 
       1338 
539 
     | 
    
         
             
            router.get('/wegene/column/:type/:category', lazyloadRouteHandler('./routes/wegene/column'));
         
     | 
| 
       1339 
540 
     | 
    
         
             
            router.get('/wegene/newest', lazyloadRouteHandler('./routes/wegene/newest'));
         
     | 
| 
       1340 
541 
     | 
    
         | 
| 
       1341 
     | 
    
         
            -
            // instapaper
         
     | 
| 
       1342 
     | 
    
         
            -
            router.get('/instapaper/person/:name', lazyloadRouteHandler('./routes/instapaper/person'));
         
     | 
| 
       1343 
     | 
    
         
            -
             
     | 
| 
       1344 
542 
     | 
    
         
             
            // UI 中国
         
     | 
| 
       1345 
543 
     | 
    
         
             
            router.get('/ui-cn/article', lazyloadRouteHandler('./routes/ui-cn/article'));
         
     | 
| 
       1346 
544 
     | 
    
         
             
            router.get('/ui-cn/user/:id', lazyloadRouteHandler('./routes/ui-cn/user'));
         
     | 
| 
       1347 
545 
     | 
    
         | 
| 
       1348 
     | 
    
         
            -
            // Dcard
         
     | 
| 
       1349 
     | 
    
         
            -
            // router.get('/dcard/:section/:type?', lazyloadRouteHandler('./routes/dcard/section'));
         
     | 
| 
       1350 
     | 
    
         
            -
             
     | 
| 
       1351 
     | 
    
         
            -
            // 北京天文馆每日一图
         
     | 
| 
       1352 
     | 
    
         
            -
            // router.get('/bjp/apod', lazyloadRouteHandler('./routes/bjp/apod'));
         
     | 
| 
       1353 
     | 
    
         
            -
             
     | 
| 
       1354 
     | 
    
         
            -
            // 洛谷
         
     | 
| 
       1355 
     | 
    
         
            -
            // router.get('/luogu/daily/:id?', lazyloadRouteHandler('./routes/luogu/daily'));
         
     | 
| 
       1356 
     | 
    
         
            -
            // router.get('/luogu/contest', lazyloadRouteHandler('./routes/luogu/contest'));
         
     | 
| 
       1357 
     | 
    
         
            -
            // router.get('/luogu/user/feed/:uid', lazyloadRouteHandler('./routes/luogu/userFeed'));
         
     | 
| 
       1358 
     | 
    
         
            -
             
     | 
| 
       1359 
     | 
    
         
            -
            // 决胜网
         
     | 
| 
       1360 
     | 
    
         
            -
            router.get('/juesheng', lazyloadRouteHandler('./routes/juesheng'));
         
     | 
| 
       1361 
     | 
    
         
            -
             
     | 
| 
       1362 
     | 
    
         
            -
            // 播客IBCラジオ イヤーマイッタマイッタ
         
     | 
| 
       1363 
     | 
    
         
            -
            router.get('/maitta', lazyloadRouteHandler('./routes/maitta'));
         
     | 
| 
       1364 
     | 
    
         
            -
             
     | 
| 
       1365 
546 
     | 
    
         
             
            // 一些博客
         
     | 
| 
       1366 
547 
     | 
    
         
             
            // 敬维-以认真的态度做完美的事情: https://jingwei.link/
         
     | 
| 
       1367 
     | 
    
         
            -
            router.get('/blogs/jingwei.link', lazyloadRouteHandler('./routes/blogs/ 
     | 
| 
      
 548 
     | 
    
         
            +
            router.get('/blogs/jingwei.link', lazyloadRouteHandler('./routes/blogs/jingwei-link'));
         
     | 
| 
       1368 
549 
     | 
    
         | 
| 
       1369 
550 
     | 
    
         
             
            // 王垠的博客-当然我在扯淡
         
     | 
| 
       1370 
551 
     | 
    
         
             
            router.get('/blogs/wangyin', lazyloadRouteHandler('./routes/blogs/wangyin'));
         
     | 
| 
         @@ -1375,30 +556,8 @@ router.get('/blogs/wang54/:id?', lazyloadRouteHandler('./routes/blogs/wang54')); 
     | 
|
| 
       1375 
556 
     | 
    
         
             
            // WordPress
         
     | 
| 
       1376 
557 
     | 
    
         
             
            router.get('/blogs/wordpress/:domain/:https?', lazyloadRouteHandler('./routes/blogs/wordpress'));
         
     | 
| 
       1377 
558 
     | 
    
         | 
| 
       1378 
     | 
    
         
            -
            //  
     | 
| 
       1379 
     | 
    
         
            -
            // router.get('/ 
     | 
| 
       1380 
     | 
    
         
            -
            // router.get('/uraaka-joshi/:id', lazyloadRouteHandler('./routes/uraaka-joshi/uraaka-joshi-user'));
         
     | 
| 
       1381 
     | 
    
         
            -
             
     | 
| 
       1382 
     | 
    
         
            -
            // 西祠胡同
         
     | 
| 
       1383 
     | 
    
         
            -
            router.get('/xici/:id?', lazyloadRouteHandler('./routes/xici'));
         
     | 
| 
       1384 
     | 
    
         
            -
             
     | 
| 
       1385 
     | 
    
         
            -
            // 淘股吧论坛
         
     | 
| 
       1386 
     | 
    
         
            -
            // router.get('/taoguba/index', lazyloadRouteHandler('./routes/taoguba/index'));
         
     | 
| 
       1387 
     | 
    
         
            -
            // router.get('/taoguba/user/:uid', lazyloadRouteHandler('./routes/taoguba/user'));
         
     | 
| 
       1388 
     | 
    
         
            -
             
     | 
| 
       1389 
     | 
    
         
            -
            // 今日热榜
         
     | 
| 
       1390 
     | 
    
         
            -
            router.get('/tophub/:id', lazyloadRouteHandler('./routes/tophub'));
         
     | 
| 
       1391 
     | 
    
         
            -
             
     | 
| 
       1392 
     | 
    
         
            -
            // 游戏时光
         
     | 
| 
       1393 
     | 
    
         
            -
            router.get('/vgtime/news', lazyloadRouteHandler('./routes/vgtime/news.js'));
         
     | 
| 
       1394 
     | 
    
         
            -
            router.get('/vgtime/release', lazyloadRouteHandler('./routes/vgtime/release'));
         
     | 
| 
       1395 
     | 
    
         
            -
            router.get('/vgtime/keyword/:keyword', lazyloadRouteHandler('./routes/vgtime/keyword'));
         
     | 
| 
       1396 
     | 
    
         
            -
             
     | 
| 
       1397 
     | 
    
         
            -
            // MP4吧
         
     | 
| 
       1398 
     | 
    
         
            -
            router.get('/mp4ba/:param', lazyloadRouteHandler('./routes/mp4ba'));
         
     | 
| 
       1399 
     | 
    
         
            -
             
     | 
| 
       1400 
     | 
    
         
            -
            // anitama
         
     | 
| 
       1401 
     | 
    
         
            -
            router.get('/anitama/:channel?', lazyloadRouteHandler('./routes/anitama/channel'));
         
     | 
| 
      
 559 
     | 
    
         
            +
            // 今日热榜 migrated to v2
         
     | 
| 
      
 560 
     | 
    
         
            +
            // router.get('/tophub/:id', lazyloadRouteHandler('./routes/tophub'));
         
     | 
| 
       1402 
561 
     | 
    
         | 
| 
       1403 
562 
     | 
    
         
             
            // 親子王國
         
     | 
| 
       1404 
563 
     | 
    
         
             
            router.get('/babykingdom/:id/:order?', lazyloadRouteHandler('./routes/babykingdom'));
         
     | 
| 
         @@ -1412,33 +571,14 @@ router.get('/zjgsu/tzgg', lazyloadRouteHandler('./routes/universities/zjgsu/tzgg 
     | 
|
| 
       1412 
571 
     | 
    
         
             
            router.get('/zjgsu/gsgg', lazyloadRouteHandler('./routes/universities/zjgsu/gsgg/scripts'));
         
     | 
| 
       1413 
572 
     | 
    
         
             
            router.get('/zjgsu/xszq', lazyloadRouteHandler('./routes/universities/zjgsu/xszq/scripts'));
         
     | 
| 
       1414 
573 
     | 
    
         | 
| 
       1415 
     | 
    
         
            -
            // 大众点评
         
     | 
| 
       1416 
     | 
    
         
            -
            router.get('/dianping/user/:id?', lazyloadRouteHandler('./routes/dianping/user'));
         
     | 
| 
       1417 
     | 
    
         
            -
             
     | 
| 
       1418 
574 
     | 
    
         
             
            // 半月谈
         
     | 
| 
       1419 
575 
     | 
    
         
             
            router.get('/banyuetan/byt/:time?', lazyloadRouteHandler('./routes/banyuetan/byt'));
         
     | 
| 
       1420 
576 
     | 
    
         
             
            router.get('/banyuetan/:name', lazyloadRouteHandler('./routes/banyuetan'));
         
     | 
| 
       1421 
577 
     | 
    
         | 
| 
       1422 
     | 
    
         
            -
            // 人民网
         
     | 
| 
       1423 
     | 
    
         
            -
            // router.get('/people/opinion/:id', lazyloadRouteHandler('./routes/people/opinion'));
         
     | 
| 
       1424 
     | 
    
         
            -
            // router.get('/people/env/:id', lazyloadRouteHandler('./routes/people/env'));
         
     | 
| 
       1425 
     | 
    
         
            -
            // router.get('/people/xjpjh/:keyword?/:year?', lazyloadRouteHandler('./routes/people/xjpjh'));
         
     | 
| 
       1426 
     | 
    
         
            -
            // router.get('/people/cpc/24h', lazyloadRouteHandler('./routes/people/cpc/24h'));
         
     | 
| 
       1427 
     | 
    
         
            -
             
     | 
| 
       1428 
     | 
    
         
            -
            // 北极星电力网 migrated to v2
         
     | 
| 
       1429 
     | 
    
         
            -
            // router.get('/bjx/huanbao', lazyloadRouteHandler('./routes/bjx/huanbao'));
         
     | 
| 
       1430 
     | 
    
         
            -
             
     | 
| 
       1431 
578 
     | 
    
         
             
            // gamersky
         
     | 
| 
       1432 
579 
     | 
    
         
             
            router.get('/gamersky/news', lazyloadRouteHandler('./routes/gamersky/news'));
         
     | 
| 
       1433 
580 
     | 
    
         
             
            router.get('/gamersky/ent/:category', lazyloadRouteHandler('./routes/gamersky/ent'));
         
     | 
| 
       1434 
581 
     | 
    
         | 
| 
       1435 
     | 
    
         
            -
            // 游研社
         
     | 
| 
       1436 
     | 
    
         
            -
            // router.get('/yystv/category/:category', lazyloadRouteHandler('./routes/yystv/category'));
         
     | 
| 
       1437 
     | 
    
         
            -
            // router.get('/yystv/docs', lazyloadRouteHandler('./routes/yystv/docs'));
         
     | 
| 
       1438 
     | 
    
         
            -
             
     | 
| 
       1439 
     | 
    
         
            -
            // konami
         
     | 
| 
       1440 
     | 
    
         
            -
            router.get('/konami/pesmobile/:lang?/:os?', lazyloadRouteHandler('./routes/konami/pesmobile'));
         
     | 
| 
       1441 
     | 
    
         
            -
             
     | 
| 
       1442 
582 
     | 
    
         
             
            // psnine
         
     | 
| 
       1443 
583 
     | 
    
         
             
            router.get('/psnine/index', lazyloadRouteHandler('./routes/psnine/index'));
         
     | 
| 
       1444 
584 
     | 
    
         
             
            router.get('/psnine/shuzhe', lazyloadRouteHandler('./routes/psnine/shuzhe'));
         
     | 
| 
         @@ -1447,50 +587,16 @@ router.get('/psnine/game', lazyloadRouteHandler('./routes/psnine/game')); 
     | 
|
| 
       1447 
587 
     | 
    
         
             
            router.get('/psnine/news/:order?', lazyloadRouteHandler('./routes/psnine/news'));
         
     | 
| 
       1448 
588 
     | 
    
         
             
            router.get('/psnine/node/:id?/:order?', lazyloadRouteHandler('./routes/psnine/node'));
         
     | 
| 
       1449 
589 
     | 
    
         | 
| 
       1450 
     | 
    
         
            -
            // 浙江大学 migrated to v2
         
     | 
| 
       1451 
     | 
    
         
            -
            // router.get('/zju/list/:type', lazyloadRouteHandler('./routes/universities/zju/list'));
         
     | 
| 
       1452 
     | 
    
         
            -
            // router.get('/zju/physics/:type', lazyloadRouteHandler('./routes/universities/zju/physics'));
         
     | 
| 
       1453 
     | 
    
         
            -
            // router.get('/zju/grs/:type', lazyloadRouteHandler('./routes/universities/zju/grs'));
         
     | 
| 
       1454 
     | 
    
         
            -
            // router.get('/zju/career/:type', lazyloadRouteHandler('./routes/universities/zju/career'));
         
     | 
| 
       1455 
     | 
    
         
            -
            // router.get('/zju/cst/:type', lazyloadRouteHandler('./routes/universities/zju/cst'));
         
     | 
| 
       1456 
     | 
    
         
            -
            // router.get('/zju/cst/custom/:id', lazyloadRouteHandler('./routes/universities/zju/cst/custom'));
         
     | 
| 
       1457 
     | 
    
         
            -
             
     | 
| 
       1458 
590 
     | 
    
         
             
            // 浙江大学城市学院
         
     | 
| 
       1459 
591 
     | 
    
         
             
            router.get('/zucc/news/latest', lazyloadRouteHandler('./routes/universities/zucc/news'));
         
     | 
| 
       1460 
592 
     | 
    
         
             
            router.get('/zucc/cssearch/latest/:webVpn/:key', lazyloadRouteHandler('./routes/universities/zucc/cssearch'));
         
     | 
| 
       1461 
593 
     | 
    
         | 
| 
       1462 
     | 
    
         
            -
            // 华中师范大学
         
     | 
| 
       1463 
     | 
    
         
            -
            // router.get('/ccnu/career', lazyloadRouteHandler('./routes/universities/ccnu/career'));
         
     | 
| 
       1464 
     | 
    
         
            -
             
     | 
| 
       1465 
     | 
    
         
            -
            // Infoq
         
     | 
| 
       1466 
     | 
    
         
            -
            // router.get('/infoq/recommend', lazyloadRouteHandler('./routes/infoq/recommend'));
         
     | 
| 
       1467 
     | 
    
         
            -
            // router.get('/infoq/topic/:id', lazyloadRouteHandler('./routes/infoq/topic'));
         
     | 
| 
       1468 
     | 
    
         
            -
             
     | 
| 
       1469 
594 
     | 
    
         
             
            // checkee
         
     | 
| 
       1470 
595 
     | 
    
         
             
            router.get('/checkee/:dispdate', lazyloadRouteHandler('./routes/checkee/index'));
         
     | 
| 
       1471 
596 
     | 
    
         | 
| 
       1472 
     | 
    
         
            -
            // ZAKER migrated to v2
         
     | 
| 
       1473 
     | 
    
         
            -
            // router.get('/zaker/:type/:id', lazyloadRouteHandler('./routes/zaker/source'));
         
     | 
| 
       1474 
     | 
    
         
            -
            // router.get('/zaker/focusread', lazyloadRouteHandler('./routes/zaker/focusread'));
         
     | 
| 
       1475 
     | 
    
         
            -
             
     | 
| 
       1476 
     | 
    
         
            -
            // Matters
         
     | 
| 
       1477 
     | 
    
         
            -
            router.get('/matters/latest/:type?', lazyloadRouteHandler('./routes/matters/latest'));
         
     | 
| 
       1478 
     | 
    
         
            -
            router.redirect('/matters/hot', '/matters/latest/heat'); // Deprecated
         
     | 
| 
       1479 
     | 
    
         
            -
            router.get('/matters/tags/:tid', lazyloadRouteHandler('./routes/matters/tags'));
         
     | 
| 
       1480 
     | 
    
         
            -
            router.get('/matters/author/:uid', lazyloadRouteHandler('./routes/matters/author'));
         
     | 
| 
       1481 
     | 
    
         
            -
             
     | 
| 
       1482 
     | 
    
         
            -
            // MobData
         
     | 
| 
       1483 
     | 
    
         
            -
            router.get('/mobdata/report', lazyloadRouteHandler('./routes/mobdata/report'));
         
     | 
| 
       1484 
     | 
    
         
            -
             
     | 
| 
       1485 
     | 
    
         
            -
            // 谷雨
         
     | 
| 
       1486 
     | 
    
         
            -
            router.get('/tencent/guyu/channel/:name', lazyloadRouteHandler('./routes/tencent/guyu/channel'));
         
     | 
| 
       1487 
     | 
    
         
            -
             
     | 
| 
       1488 
597 
     | 
    
         
             
            // 古诗文网
         
     | 
| 
       1489 
598 
     | 
    
         
             
            router.get('/gushiwen/recommend/:annotation?', lazyloadRouteHandler('./routes/gushiwen/recommend'));
         
     | 
| 
       1490 
599 
     | 
    
         | 
| 
       1491 
     | 
    
         
            -
            // 电商在线
         
     | 
| 
       1492 
     | 
    
         
            -
            router.get('/imaijia/category/:category', lazyloadRouteHandler('./routes/imaijia/category'));
         
     | 
| 
       1493 
     | 
    
         
            -
             
     | 
| 
       1494 
600 
     | 
    
         
             
            // 21财经
         
     | 
| 
       1495 
601 
     | 
    
         
             
            router.get('/21caijing/channel/:name', lazyloadRouteHandler('./routes/21caijing/channel'));
         
     | 
| 
       1496 
602 
     | 
    
         | 
| 
         @@ -1501,53 +607,12 @@ router.get('/bupt/portal', lazyloadRouteHandler('./routes/universities/bupt/port 
     | 
|
| 
       1501 
607 
     | 
    
         
             
            router.get('/bupt/news', lazyloadRouteHandler('./routes/universities/bupt/news'));
         
     | 
| 
       1502 
608 
     | 
    
         
             
            router.get('/bupt/funbox', lazyloadRouteHandler('./routes/universities/bupt/funbox'));
         
     | 
| 
       1503 
609 
     | 
    
         | 
| 
       1504 
     | 
    
         
            -
            // VOCUS 方格子
         
     | 
| 
       1505 
     | 
    
         
            -
            // router.get('/vocus/publication/:id', lazyloadRouteHandler('./routes/vocus/publication'));
         
     | 
| 
       1506 
     | 
    
         
            -
            // router.get('/vocus/user/:id', lazyloadRouteHandler('./routes/vocus/user'));
         
     | 
| 
       1507 
     | 
    
         
            -
             
     | 
| 
       1508 
     | 
    
         
            -
            // 一亩三分地 1point3acres
         
     | 
| 
       1509 
     | 
    
         
            -
            // router.get('/1point3acres/blog/:category?', lazyloadRouteHandler('./routes/1point3acres/blog'));
         
     | 
| 
       1510 
     | 
    
         
            -
            // router.get('/1point3acres/user/:id/threads', lazyloadRouteHandler('./routes/1point3acres/threads'));
         
     | 
| 
       1511 
     | 
    
         
            -
            // router.get('/1point3acres/user/:id/posts', lazyloadRouteHandler('./routes/1point3acres/posts'));
         
     | 
| 
       1512 
     | 
    
         
            -
            // router.get('/1point3acres/offer/:year?/:major?/:school?', lazyloadRouteHandler('./routes/1point3acres/offer'));
         
     | 
| 
       1513 
     | 
    
         
            -
            // router.get('/1point3acres/post/:category', lazyloadRouteHandler('./routes/1point3acres/post'));
         
     | 
| 
       1514 
     | 
    
         
            -
             
     | 
| 
       1515 
610 
     | 
    
         
             
            // 广东海洋大学
         
     | 
| 
       1516 
611 
     | 
    
         
             
            router.get('/gdoujwc', lazyloadRouteHandler('./routes/universities/gdou/jwc/jwtz'));
         
     | 
| 
       1517 
612 
     | 
    
         | 
| 
       1518 
     | 
    
         
            -
            // 中国高清网
         
     | 
| 
       1519 
     | 
    
         
            -
            router.get('/gaoqingla/:tag?', lazyloadRouteHandler('./routes/gaoqingla/latest'));
         
     | 
| 
       1520 
     | 
    
         
            -
             
     | 
| 
       1521 
     | 
    
         
            -
            // 马良行
         
     | 
| 
       1522 
     | 
    
         
            -
            router.get('/mlhang', lazyloadRouteHandler('./routes/mlhang/latest'));
         
     | 
| 
       1523 
     | 
    
         
            -
             
     | 
| 
       1524 
     | 
    
         
            -
            // PlayStation Store
         
     | 
| 
       1525 
     | 
    
         
            -
            router.get('/ps/list/:gridName', lazyloadRouteHandler('./routes/ps/list'));
         
     | 
| 
       1526 
     | 
    
         
            -
            router.get('/ps/trophy/:id', lazyloadRouteHandler('./routes/ps/trophy'));
         
     | 
| 
       1527 
     | 
    
         
            -
            router.get('/ps/ps4updates', lazyloadRouteHandler('./routes/ps/ps4updates'));
         
     | 
| 
       1528 
     | 
    
         
            -
            router.get('/ps/:lang?/product/:gridName', lazyloadRouteHandler('./routes/ps/product'));
         
     | 
| 
       1529 
     | 
    
         
            -
             
     | 
| 
       1530 
613 
     | 
    
         
             
            // Quanta Magazine
         
     | 
| 
       1531 
614 
     | 
    
         
             
            router.get('/quantamagazine/archive', lazyloadRouteHandler('./routes/quantamagazine/archive'));
         
     | 
| 
       1532 
615 
     | 
    
         | 
| 
       1533 
     | 
    
         
            -
            // Nintendo migrated to v2
         
     | 
| 
       1534 
     | 
    
         
            -
            // router.get('/nintendo/eshop/jp', lazyloadRouteHandler('./routes/nintendo/eshop_jp'));
         
     | 
| 
       1535 
     | 
    
         
            -
            // router.get('/nintendo/eshop/hk', lazyloadRouteHandler('./routes/nintendo/eshop_hk'));
         
     | 
| 
       1536 
     | 
    
         
            -
            // router.get('/nintendo/eshop/us', lazyloadRouteHandler('./routes/nintendo/eshop_us'));
         
     | 
| 
       1537 
     | 
    
         
            -
            // router.get('/nintendo/eshop/cn', lazyloadRouteHandler('./routes/nintendo/eshop_cn'));
         
     | 
| 
       1538 
     | 
    
         
            -
            // router.get('/nintendo/news', lazyloadRouteHandler('./routes/nintendo/news'));
         
     | 
| 
       1539 
     | 
    
         
            -
            // router.get('/nintendo/news/china', lazyloadRouteHandler('./routes/nintendo/news_china'));
         
     | 
| 
       1540 
     | 
    
         
            -
            // router.get('/nintendo/direct', lazyloadRouteHandler('./routes/nintendo/direct'));
         
     | 
| 
       1541 
     | 
    
         
            -
            // router.get('/nintendo/system-update', lazyloadRouteHandler('./routes/nintendo/system-update'));
         
     | 
| 
       1542 
     | 
    
         
            -
             
     | 
| 
       1543 
     | 
    
         
            -
            // 世界卫生组织 migrated to v2
         
     | 
| 
       1544 
     | 
    
         
            -
            // router.get('/who/news-room/:category?/:language?', lazyloadRouteHandler('./routes/who/news-room'));
         
     | 
| 
       1545 
     | 
    
         
            -
            // router.get('/who/speeches/:language?', lazyloadRouteHandler('./routes/who/speeches'));
         
     | 
| 
       1546 
     | 
    
         
            -
            // router.get('/who/news/:language?', lazyloadRouteHandler('./routes/who/news'));
         
     | 
| 
       1547 
     | 
    
         
            -
             
     | 
| 
       1548 
     | 
    
         
            -
            // 福利资源-met.red
         
     | 
| 
       1549 
     | 
    
         
            -
            router.get('/metred/fuli', lazyloadRouteHandler('./routes/metred/fuli'));
         
     | 
| 
       1550 
     | 
    
         
            -
             
     | 
| 
       1551 
616 
     | 
    
         
             
            // MIT
         
     | 
| 
       1552 
617 
     | 
    
         
             
            router.get('/mit/graduateadmissions/:type/:name', lazyloadRouteHandler('./routes/universities/mit/graduateadmissions'));
         
     | 
| 
       1553 
618 
     | 
    
         
             
            router.get('/mit/ocw-top', lazyloadRouteHandler('./routes/universities/mit/ocw-top'));
         
     | 
| 
         @@ -1556,115 +621,42 @@ router.get('/mit/csail/news', lazyloadRouteHandler('./routes/universities/mit/cs 
     | 
|
| 
       1556 
621 
     | 
    
         
             
            // 毕马威
         
     | 
| 
       1557 
622 
     | 
    
         
             
            router.get('/kpmg/insights', lazyloadRouteHandler('./routes/kpmg/insights'));
         
     | 
| 
       1558 
623 
     | 
    
         | 
| 
       1559 
     | 
    
         
            -
            // Saraba1st
         
     | 
| 
       1560 
     | 
    
         
            -
            // router.get('/saraba1st/thread/:tid', lazyloadRouteHandler('./routes/saraba1st/thread'));
         
     | 
| 
       1561 
     | 
    
         
            -
             
     | 
| 
       1562 
     | 
    
         
            -
            // gradcafe
         
     | 
| 
       1563 
     | 
    
         
            -
            router.get('/gradcafe/result/:type', lazyloadRouteHandler('./routes/gradcafe/result'));
         
     | 
| 
       1564 
     | 
    
         
            -
            router.get('/gradcafe/result', lazyloadRouteHandler('./routes/gradcafe/result'));
         
     | 
| 
       1565 
     | 
    
         
            -
             
     | 
| 
       1566 
     | 
    
         
            -
            // The Economist migrated to v2
         
     | 
| 
       1567 
     | 
    
         
            -
            // router.get('/the-economist/download', lazyloadRouteHandler('./routes/the-economist/download'));
         
     | 
| 
       1568 
     | 
    
         
            -
            // router.get('/the-economist/gre-vocabulary', lazyloadRouteHandler('./routes/the-economist/gre-vocabulary'));
         
     | 
| 
       1569 
     | 
    
         
            -
            // router.get('/the-economist/:endpoint', lazyloadRouteHandler('./routes/the-economist/full'));
         
     | 
| 
       1570 
     | 
    
         
            -
             
     | 
| 
       1571 
     | 
    
         
            -
            // 鼠绘漫画
         
     | 
| 
       1572 
     | 
    
         
            -
            router.get('/shuhui/comics/:id', lazyloadRouteHandler('./routes/shuhui/comics'));
         
     | 
| 
       1573 
     | 
    
         
            -
             
     | 
| 
       1574 
624 
     | 
    
         
             
            // 朝日新闻
         
     | 
| 
       1575 
     | 
    
         
            -
            router.get('/asahi/area/:id', lazyloadRouteHandler('./routes/asahi/area'));
         
     | 
| 
       1576 
625 
     | 
    
         
             
            router.get('/asahi/:genre?/:category?', lazyloadRouteHandler('./routes/asahi/index'));
         
     | 
| 
       1577 
626 
     | 
    
         | 
| 
       1578 
     | 
    
         
            -
            // 7x24小时快讯
         
     | 
| 
       1579 
     | 
    
         
            -
            router.get('/fx678/kx', lazyloadRouteHandler('./routes/fx678/kx'));
         
     | 
| 
       1580 
     | 
    
         
            -
             
     | 
| 
       1581 
627 
     | 
    
         
             
            // SoundCloud
         
     | 
| 
       1582 
628 
     | 
    
         
             
            router.get('/soundcloud/tracks/:user', lazyloadRouteHandler('./routes/soundcloud/tracks'));
         
     | 
| 
       1583 
629 
     | 
    
         | 
| 
       1584 
     | 
    
         
            -
            // dilidili
         
     | 
| 
       1585 
     | 
    
         
            -
            router.get('/dilidili/fanju/:id', lazyloadRouteHandler('./routes/dilidili/fanju'));
         
     | 
| 
       1586 
     | 
    
         
            -
             
     | 
| 
       1587 
     | 
    
         
            -
            // 且听风吟福利
         
     | 
| 
       1588 
     | 
    
         
            -
            router.get('/qtfyfl/:category', lazyloadRouteHandler('./routes/qtfyfl/category'));
         
     | 
| 
       1589 
     | 
    
         
            -
             
     | 
| 
       1590 
630 
     | 
    
         
             
            // 派代
         
     | 
| 
       1591 
631 
     | 
    
         
             
            router.get('/paidai', lazyloadRouteHandler('./routes/paidai/index'));
         
     | 
| 
       1592 
632 
     | 
    
         
             
            router.get('/paidai/bbs', lazyloadRouteHandler('./routes/paidai/bbs'));
         
     | 
| 
       1593 
633 
     | 
    
         
             
            router.get('/paidai/news', lazyloadRouteHandler('./routes/paidai/news'));
         
     | 
| 
       1594 
634 
     | 
    
         | 
| 
       1595 
635 
     | 
    
         
             
            // 中国银行
         
     | 
| 
       1596 
     | 
    
         
            -
            router.get('/boc/whpj/:format?', lazyloadRouteHandler('./routes/boc/whpj'));
         
     | 
| 
      
 636 
     | 
    
         
            +
            // router.get('/boc/whpj/:format?', lazyloadRouteHandler('./routes/boc/whpj'));
         
     | 
| 
       1597 
637 
     | 
    
         | 
| 
       1598 
638 
     | 
    
         
             
            // 漫画db
         
     | 
| 
       1599 
639 
     | 
    
         
             
            router.get('/manhuadb/comics/:id', lazyloadRouteHandler('./routes/manhuadb/comics'));
         
     | 
| 
       1600 
640 
     | 
    
         | 
| 
       1601 
     | 
    
         
            -
            // 装备前线
         
     | 
| 
       1602 
     | 
    
         
            -
            router.get('/zfrontier/postlist/:type', lazyloadRouteHandler('./routes/zfrontier/postlist'));
         
     | 
| 
       1603 
     | 
    
         
            -
            router.get('/zfrontier/board/:boardId', lazyloadRouteHandler('./routes/zfrontier/board_postlist'));
         
     | 
| 
       1604 
     | 
    
         
            -
             
     | 
| 
       1605 
     | 
    
         
            -
            // 观察者网
         
     | 
| 
       1606 
     | 
    
         
            -
            // router.get('/guancha/headline', lazyloadRouteHandler('./routes/guancha/headline'));
         
     | 
| 
       1607 
     | 
    
         
            -
            // router.get('/guancha/topic/:id/:order?', lazyloadRouteHandler('./routes/guancha/topic'));
         
     | 
| 
       1608 
     | 
    
         
            -
            // router.get('/guancha/member/:caty?', lazyloadRouteHandler('./routes/guancha/member'));
         
     | 
| 
       1609 
     | 
    
         
            -
            // router.get('/guancha/personalpage/:uid', lazyloadRouteHandler('./routes/guancha/personalpage'));
         
     | 
| 
       1610 
     | 
    
         
            -
            // router.get('/guancha/:caty?', lazyloadRouteHandler('./routes/guancha/index'));
         
     | 
| 
       1611 
     | 
    
         
            -
             
     | 
| 
       1612 
     | 
    
         
            -
            // router.get('/guanchazhe/topic/:id/:order?', lazyloadRouteHandler('./routes/guancha/topic'));
         
     | 
| 
       1613 
     | 
    
         
            -
            // router.get('/guanchazhe/personalpage/:uid', lazyloadRouteHandler('./routes/guancha/personalpage'));
         
     | 
| 
       1614 
     | 
    
         
            -
            // router.get('/guanchazhe/index/:caty?', lazyloadRouteHandler('./routes/guancha/index'));
         
     | 
| 
       1615 
     | 
    
         
            -
             
     | 
| 
       1616 
     | 
    
         
            -
            // Hpoi 手办维基
         
     | 
| 
       1617 
     | 
    
         
            -
            router.get('/hpoi/info/:type?', lazyloadRouteHandler('./routes/hpoi/info'));
         
     | 
| 
       1618 
     | 
    
         
            -
            router.get('/hpoi/:category/:words', lazyloadRouteHandler('./routes/hpoi'));
         
     | 
| 
       1619 
     | 
    
         
            -
            router.get('/hpoi/user/:user_id/:caty', lazyloadRouteHandler('./routes/hpoi/user'));
         
     | 
| 
       1620 
     | 
    
         
            -
             
     | 
| 
       1621 
     | 
    
         
            -
            // 通用CurseForge
         
     | 
| 
       1622 
     | 
    
         
            -
            router.get('/curseforge/:gameid/:catagoryid/:projectid/files', lazyloadRouteHandler('./routes/curseforge/generalfiles'));
         
     | 
| 
       1623 
     | 
    
         
            -
             
     | 
| 
       1624 
641 
     | 
    
         
             
            // 西南财经大学
         
     | 
| 
       1625 
642 
     | 
    
         
             
            router.get('/swufe/seie/:type?', lazyloadRouteHandler('./routes/universities/swufe/seie'));
         
     | 
| 
       1626 
643 
     | 
    
         | 
| 
       1627 
     | 
    
         
            -
            // Wired
         
     | 
| 
       1628 
     | 
    
         
            -
            router.get('/wired/tag/:tag', lazyloadRouteHandler('./routes/wired/tag'));
         
     | 
| 
       1629 
     | 
    
         
            -
             
     | 
| 
       1630 
     | 
    
         
            -
            // 语雀文档
         
     | 
| 
       1631 
     | 
    
         
            -
            // router.get('/yuque/doc/:repo_id', lazyloadRouteHandler('./routes/yuque/doc'));
         
     | 
| 
       1632 
     | 
    
         
            -
             
     | 
| 
       1633 
644 
     | 
    
         
             
            // 飞地
         
     | 
| 
       1634 
645 
     | 
    
         
             
            router.get('/enclavebooks/category/:id?', lazyloadRouteHandler('./routes/enclavebooks/category'));
         
     | 
| 
       1635 
646 
     | 
    
         
             
            router.get('/enclavebooks/user/:uid', lazyloadRouteHandler('./routes/enclavebooks/user.js'));
         
     | 
| 
       1636 
647 
     | 
    
         
             
            router.get('/enclavebooks/collection/:uid', lazyloadRouteHandler('./routes/enclavebooks/collection.js'));
         
     | 
| 
       1637 
648 
     | 
    
         | 
| 
       1638 
     | 
    
         
            -
            // 色花堂
         
     | 
| 
       1639 
     | 
    
         
            -
            // router.get('/dsndsht23/picture/:subforumid', lazyloadRouteHandler('./routes/dsndsht23/index'));
         
     | 
| 
       1640 
     | 
    
         
            -
            // router.get('/dsndsht23/bt/:subforumid?', lazyloadRouteHandler('./routes/dsndsht23/index'));
         
     | 
| 
       1641 
     | 
    
         
            -
            // router.get('/dsndsht23/:subforumid?/:type?', lazyloadRouteHandler('./routes/dsndsht23/index'));
         
     | 
| 
       1642 
     | 
    
         
            -
            // router.get('/dsndsht23/:subforumid?', lazyloadRouteHandler('./routes/dsndsht23/index'));
         
     | 
| 
       1643 
     | 
    
         
            -
            // router.get('/dsndsht23', lazyloadRouteHandler('./routes/dsndsht23/index'));
         
     | 
| 
       1644 
     | 
    
         
            -
             
     | 
| 
       1645 
649 
     | 
    
         
             
            // 数英网最新文章
         
     | 
| 
       1646 
650 
     | 
    
         
             
            router.get('/digitaling/index', lazyloadRouteHandler('./routes/digitaling/index'));
         
     | 
| 
       1647 
651 
     | 
    
         | 
| 
       1648 
652 
     | 
    
         
             
            // 数英网文章专题
         
     | 
| 
       1649 
     | 
    
         
            -
            router.get('/digitaling/articles/:category/:subcate', lazyloadRouteHandler('./routes/digitaling/article'));
         
     | 
| 
      
 653 
     | 
    
         
            +
            router.get('/digitaling/articles/:category/:subcate?', lazyloadRouteHandler('./routes/digitaling/article'));
         
     | 
| 
       1650 
654 
     | 
    
         | 
| 
       1651 
655 
     | 
    
         
             
            // 数英网项目专题
         
     | 
| 
       1652 
656 
     | 
    
         
             
            router.get('/digitaling/projects/:category', lazyloadRouteHandler('./routes/digitaling/project'));
         
     | 
| 
       1653 
657 
     | 
    
         | 
| 
       1654 
658 
     | 
    
         
             
            // Bing壁纸
         
     | 
| 
       1655 
     | 
    
         
            -
            router.get('/bing', lazyloadRouteHandler('./routes/bing/index'));
         
     | 
| 
       1656 
     | 
    
         
            -
             
     | 
| 
       1657 
     | 
    
         
            -
            // Maxjia News - DotA 2
         
     | 
| 
       1658 
     | 
    
         
            -
            router.get('/maxnews/dota2', lazyloadRouteHandler('./routes/maxnews/dota2'));
         
     | 
| 
       1659 
     | 
    
         
            -
             
     | 
| 
       1660 
     | 
    
         
            -
            // 柠檬 - 私房歌
         
     | 
| 
       1661 
     | 
    
         
            -
            router.get('/ningmeng/song', lazyloadRouteHandler('./routes/ningmeng/song'));
         
     | 
| 
       1662 
     | 
    
         
            -
             
     | 
| 
       1663 
     | 
    
         
            -
            // 紫竹张先生
         
     | 
| 
       1664 
     | 
    
         
            -
            router.get('/zzz/:category?/:language?', lazyloadRouteHandler('./routes/zzz'));
         
     | 
| 
       1665 
     | 
    
         
            -
             
     | 
| 
       1666 
     | 
    
         
            -
            // AEON
         
     | 
| 
       1667 
     | 
    
         
            -
            router.get('/aeon/:cid', lazyloadRouteHandler('./routes/aeon/category'));
         
     | 
| 
      
 659 
     | 
    
         
            +
            // router.get('/bing', lazyloadRouteHandler('./routes/bing/index'));
         
     | 
| 
       1668 
660 
     | 
    
         | 
| 
       1669 
661 
     | 
    
         
             
            // AlgoCasts
         
     | 
| 
       1670 
662 
     | 
    
         
             
            router.get('/algocasts', lazyloadRouteHandler('./routes/algocasts/all'));
         
     | 
| 
         @@ -1675,11 +667,7 @@ router.get('/aqicn/:city/:pollution?', lazyloadRouteHandler('./routes/aqicn/inde 
     | 
|
| 
       1675 
667 
     | 
    
         
             
            // 猫眼电影
         
     | 
| 
       1676 
668 
     | 
    
         
             
            router.get('/maoyan/hot', lazyloadRouteHandler('./routes/maoyan/hot'));
         
     | 
| 
       1677 
669 
     | 
    
         
             
            router.get('/maoyan/upcoming', lazyloadRouteHandler('./routes/maoyan/upcoming'));
         
     | 
| 
       1678 
     | 
    
         
            -
            router.get('/maoyan/hotComplete/:orderby?/:ascOrDesc?/:top?', lazyloadRouteHandler('./routes/maoyan/ 
     | 
| 
       1679 
     | 
    
         
            -
             
     | 
| 
       1680 
     | 
    
         
            -
            // cnBeta
         
     | 
| 
       1681 
     | 
    
         
            -
            // router.get('/cnbeta', lazyloadRouteHandler('./routes/cnbeta/home'));
         
     | 
| 
       1682 
     | 
    
         
            -
            // router.get('/cnbeta/topic/:topic_id', lazyloadRouteHandler('./routes/cnbeta/topic'));
         
     | 
| 
      
 670 
     | 
    
         
            +
            router.get('/maoyan/hotComplete/:orderby?/:ascOrDesc?/:top?', lazyloadRouteHandler('./routes/maoyan/hot-complete'));
         
     | 
| 
       1683 
671 
     | 
    
         | 
| 
       1684 
672 
     | 
    
         
             
            // 国家退伍士兵信息
         
     | 
| 
       1685 
673 
     | 
    
         
             
            router.get('/gov/veterans/:type', lazyloadRouteHandler('./routes/gov/veterans/china'));
         
     | 
| 
         @@ -1687,12 +675,6 @@ router.get('/gov/veterans/:type', lazyloadRouteHandler('./routes/gov/veterans/ch 
     | 
|
| 
       1687 
675 
     | 
    
         
             
            // 河北省退伍士兵信息
         
     | 
| 
       1688 
676 
     | 
    
         
             
            router.get('/gov/veterans/hebei/:type', lazyloadRouteHandler('./routes/gov/veterans/hebei'));
         
     | 
| 
       1689 
677 
     | 
    
         | 
| 
       1690 
     | 
    
         
            -
            // Dilbert Comic Strip
         
     | 
| 
       1691 
     | 
    
         
            -
            router.get('/dilbert/strip', lazyloadRouteHandler('./routes/dilbert/strip'));
         
     | 
| 
       1692 
     | 
    
         
            -
             
     | 
| 
       1693 
     | 
    
         
            -
            // 游戏打折情报
         
     | 
| 
       1694 
     | 
    
         
            -
            // router.get('/yxdzqb/:type', lazyloadRouteHandler('./routes/yxdzqb'));
         
     | 
| 
       1695 
     | 
    
         
            -
             
     | 
| 
       1696 
678 
     | 
    
         
             
            // 怪物猎人
         
     | 
| 
       1697 
679 
     | 
    
         
             
            router.get('/monsterhunter/update', lazyloadRouteHandler('./routes/mhw/update'));
         
     | 
| 
       1698 
680 
     | 
    
         
             
            router.get('/mhw/update', lazyloadRouteHandler('./routes/mhw/update'));
         
     | 
| 
         @@ -1707,26 +689,11 @@ router.get('/polimi/news/:language?', lazyloadRouteHandler('./routes/polimi/news 
     | 
|
| 
       1707 
689 
     | 
    
         
             
            // dekudeals
         
     | 
| 
       1708 
690 
     | 
    
         
             
            router.get('/dekudeals/:type', lazyloadRouteHandler('./routes/dekudeals'));
         
     | 
| 
       1709 
691 
     | 
    
         | 
| 
       1710 
     | 
    
         
            -
            // 直播吧 migrated to v2
         
     | 
| 
       1711 
     | 
    
         
            -
            // router.get('/zhibo8/forum/:id', lazyloadRouteHandler('./routes/zhibo8/forum'));
         
     | 
| 
       1712 
     | 
    
         
            -
            // router.get('/zhibo8/post/:id', lazyloadRouteHandler('./routes/zhibo8/post'));
         
     | 
| 
       1713 
     | 
    
         
            -
            // router.get('/zhibo8/more/:category?', lazyloadRouteHandler('./routes/zhibo8/more'));
         
     | 
| 
       1714 
     | 
    
         
            -
             
     | 
| 
       1715 
     | 
    
         
            -
            // 东方网 migrated to v2
         
     | 
| 
       1716 
     | 
    
         
            -
            // router.get('/eastday/sh', require('./routes/eastday/sh'));
         
     | 
| 
       1717 
     | 
    
         
            -
            // router.get('/eastday/24/:category?', require('./routes/eastday/24'));
         
     | 
| 
       1718 
     | 
    
         
            -
             
     | 
| 
       1719 
692 
     | 
    
         
             
            // Metacritic
         
     | 
| 
       1720 
     | 
    
         
            -
            router.get('/metacritic/release/:platform/:type/:sort?', lazyloadRouteHandler('./routes/metacritic/release'));
         
     | 
| 
      
 693 
     | 
    
         
            +
            // router.get('/metacritic/release/:platform/:type/:sort?', lazyloadRouteHandler('./routes/metacritic/release'));
         
     | 
| 
       1721 
694 
     | 
    
         | 
| 
       1722 
695 
     | 
    
         
             
            // 快科技(原驱动之家)
         
     | 
| 
       1723 
     | 
    
         
            -
            router.get('/kkj/news', lazyloadRouteHandler('./routes/kkj/news'));
         
     | 
| 
       1724 
     | 
    
         
            -
             
     | 
| 
       1725 
     | 
    
         
            -
            // Outage.Report
         
     | 
| 
       1726 
     | 
    
         
            -
            // router.get('/outagereport/:name/:count?', lazyloadRouteHandler('./routes/outagereport/service'));
         
     | 
| 
       1727 
     | 
    
         
            -
             
     | 
| 
       1728 
     | 
    
         
            -
            // sixthtone
         
     | 
| 
       1729 
     | 
    
         
            -
            router.get('/sixthtone/news', lazyloadRouteHandler('./routes/sixthtone/news'));
         
     | 
| 
      
 696 
     | 
    
         
            +
            // router.get('/kkj/news', lazyloadRouteHandler('./routes/kkj/news'));
         
     | 
| 
       1730 
697 
     | 
    
         | 
| 
       1731 
698 
     | 
    
         
             
            // AI研习社
         
     | 
| 
       1732 
699 
     | 
    
         
             
            router.get('/aiyanxishe/:id/:sort?', lazyloadRouteHandler('./routes/aiyanxishe/home'));
         
     | 
| 
         @@ -1734,30 +701,6 @@ router.get('/aiyanxishe/:id/:sort?', lazyloadRouteHandler('./routes/aiyanxishe/h 
     | 
|
| 
       1734 
701 
     | 
    
         
             
            // 活动行
         
     | 
| 
       1735 
702 
     | 
    
         
             
            router.get('/huodongxing/explore', lazyloadRouteHandler('./routes/hdx/explore'));
         
     | 
| 
       1736 
703 
     | 
    
         | 
| 
       1737 
     | 
    
         
            -
            // 飞客茶馆优惠信息
         
     | 
| 
       1738 
     | 
    
         
            -
            // router.get('/flyert/preferential', lazyloadRouteHandler('./routes/flyert/preferential'));
         
     | 
| 
       1739 
     | 
    
         
            -
            // router.get('/flyert/creditcard/:bank', lazyloadRouteHandler('./routes/flyert/creditcard'));
         
     | 
| 
       1740 
     | 
    
         
            -
            // router.get('/flyertea/preferential', lazyloadRouteHandler('./routes/flyert/preferential'));
         
     | 
| 
       1741 
     | 
    
         
            -
            // router.get('/flyertea/creditcard/:bank', lazyloadRouteHandler('./routes/flyert/creditcard'));
         
     | 
| 
       1742 
     | 
    
         
            -
             
     | 
| 
       1743 
     | 
    
         
            -
            // 中国广播
         
     | 
| 
       1744 
     | 
    
         
            -
            // router.get('/radio/:channelname/:name', lazyloadRouteHandler('./routes/radio/radio'));
         
     | 
| 
       1745 
     | 
    
         
            -
             
     | 
| 
       1746 
     | 
    
         
            -
            // TOPYS
         
     | 
| 
       1747 
     | 
    
         
            -
            // router.get('/topys/:category', lazyloadRouteHandler('./routes/topys/article'));
         
     | 
| 
       1748 
     | 
    
         
            -
             
     | 
| 
       1749 
     | 
    
         
            -
            // 巴比特作者专栏
         
     | 
| 
       1750 
     | 
    
         
            -
            router.get('/8btc/:authorid', lazyloadRouteHandler('./routes/8btc/author'));
         
     | 
| 
       1751 
     | 
    
         
            -
            router.get('/8btc/news/flash', lazyloadRouteHandler('./routes/8btc/news/flash'));
         
     | 
| 
       1752 
     | 
    
         
            -
             
     | 
| 
       1753 
     | 
    
         
            -
            // VueVlog
         
     | 
| 
       1754 
     | 
    
         
            -
            router.get('/vuevideo/:userid', lazyloadRouteHandler('./routes/vuevideo/user'));
         
     | 
| 
       1755 
     | 
    
         
            -
             
     | 
| 
       1756 
     | 
    
         
            -
            // 证监会
         
     | 
| 
       1757 
     | 
    
         
            -
            // router.get('/csrc/news/:suffix?', lazyloadRouteHandler('./routes/csrc/news'));
         
     | 
| 
       1758 
     | 
    
         
            -
            // router.get('/csrc/fashenwei', lazyloadRouteHandler('./routes/csrc/fashenwei'));
         
     | 
| 
       1759 
     | 
    
         
            -
            // router.get('/csrc/auditstatus/:apply_id', lazyloadRouteHandler('./routes/csrc/auditstatus'));
         
     | 
| 
       1760 
     | 
    
         
            -
             
     | 
| 
       1761 
704 
     | 
    
         
             
            // LWN.net Alerts
         
     | 
| 
       1762 
705 
     | 
    
         
             
            router.get('/lwn/alerts/:distributor', lazyloadRouteHandler('./routes/lwn/alerts'));
         
     | 
| 
       1763 
706 
     | 
    
         | 
| 
         @@ -1771,9 +714,6 @@ router.get('/lolapp/article/:uuid', lazyloadRouteHandler('./routes/lolapp/articl 
     | 
|
| 
       1771 
714 
     | 
    
         
             
            // 左岸读书
         
     | 
| 
       1772 
715 
     | 
    
         
             
            router.get('/zreading', lazyloadRouteHandler('./routes/zreading/home'));
         
     | 
| 
       1773 
716 
     | 
    
         | 
| 
       1774 
     | 
    
         
            -
            // NBA
         
     | 
| 
       1775 
     | 
    
         
            -
            router.get('/nba/app_news', lazyloadRouteHandler('./routes/nba/app_news'));
         
     | 
| 
       1776 
     | 
    
         
            -
             
     | 
| 
       1777 
717 
     | 
    
         
             
            // 天津产权交易中心
         
     | 
| 
       1778 
718 
     | 
    
         
             
            router.get('/tprtc/cqzr', lazyloadRouteHandler('./routes/tprtc/cqzr'));
         
     | 
| 
       1779 
719 
     | 
    
         
             
            router.get('/tprtc/qyzc', lazyloadRouteHandler('./routes/tprtc/qyzc'));
         
     | 
| 
         @@ -1782,94 +722,46 @@ router.get('/tprtc/news', lazyloadRouteHandler('./routes/tprtc/news')); 
     | 
|
| 
       1782 
722 
     | 
    
         
             
            // ArchDaily
         
     | 
| 
       1783 
723 
     | 
    
         
             
            router.get('/archdaily', lazyloadRouteHandler('./routes/archdaily/home'));
         
     | 
| 
       1784 
724 
     | 
    
         | 
| 
       1785 
     | 
    
         
            -
            // aptonic Dropzone actions
         
     | 
| 
       1786 
     | 
    
         
            -
            router.get('/aptonic/action/:untested?', lazyloadRouteHandler('./routes/aptonic/action'));
         
     | 
| 
       1787 
     | 
    
         
            -
             
     | 
| 
       1788 
     | 
    
         
            -
            // 印记中文周刊
         
     | 
| 
       1789 
     | 
    
         
            -
            // router.get('/docschina/jsweekly', lazyloadRouteHandler('./routes/docschina/jsweekly'));
         
     | 
| 
       1790 
     | 
    
         
            -
             
     | 
| 
       1791 
725 
     | 
    
         
             
            // im2maker
         
     | 
| 
       1792 
726 
     | 
    
         
             
            router.get('/im2maker/:channel?', lazyloadRouteHandler('./routes/im2maker/index'));
         
     | 
| 
       1793 
727 
     | 
    
         | 
| 
       1794 
728 
     | 
    
         
             
            // 巨潮资讯
         
     | 
| 
       1795 
729 
     | 
    
         
             
            router.get('/cninfo/announcement/:column/:code/:orgId/:category?/:search?', lazyloadRouteHandler('./routes/cninfo/announcement'));
         
     | 
| 
       1796 
730 
     | 
    
         | 
| 
       1797 
     | 
    
         
            -
            // 金十数据
         
     | 
| 
       1798 
     | 
    
         
            -
            // router.get('/jinshi/index', lazyloadRouteHandler('./routes/jinshi/index'));
         
     | 
| 
       1799 
     | 
    
         
            -
             
     | 
| 
       1800 
731 
     | 
    
         
             
            // 中华人民共和国农业农村部
         
     | 
| 
       1801 
     | 
    
         
            -
            router.get('/gov/moa/sjzxfb', lazyloadRouteHandler('./routes/gov/moa/sjzxfb'));
         
     | 
| 
       1802 
     | 
    
         
            -
            router.get('/gov/moa/:suburl(.*)', lazyloadRouteHandler('./routes/gov/moa/moa'));
         
     | 
| 
      
 732 
     | 
    
         
            +
            // router.get('/gov/moa/sjzxfb', lazyloadRouteHandler('./routes/gov/moa/sjzxfb'));
         
     | 
| 
      
 733 
     | 
    
         
            +
            // router.get('/gov/moa/:suburl(.*)', lazyloadRouteHandler('./routes/gov/moa/moa'));
         
     | 
| 
       1803 
734 
     | 
    
         | 
| 
       1804 
735 
     | 
    
         
             
            // 香水时代
         
     | 
| 
       1805 
736 
     | 
    
         
             
            router.get('/nosetime/:id/:type/:sort?', lazyloadRouteHandler('./routes/nosetime/comment'));
         
     | 
| 
       1806 
737 
     | 
    
         
             
            router.get('/nosetime/home', lazyloadRouteHandler('./routes/nosetime/home'));
         
     | 
| 
       1807 
738 
     | 
    
         | 
| 
       1808 
     | 
    
         
            -
            // 涂鸦王国
         
     | 
| 
       1809 
     | 
    
         
            -
            router.get('/gracg/:user/:love?', lazyloadRouteHandler('./routes/gracg/user'));
         
     | 
| 
       1810 
     | 
    
         
            -
             
     | 
| 
       1811 
739 
     | 
    
         
             
            // 大侠阿木
         
     | 
| 
       1812 
740 
     | 
    
         
             
            router.get('/daxiaamu/home', lazyloadRouteHandler('./routes/daxiaamu/home'));
         
     | 
| 
       1813 
741 
     | 
    
         | 
| 
       1814 
     | 
    
         
            -
            // 美团技术团队
         
     | 
| 
       1815 
     | 
    
         
            -
            router.get('/meituan/tech/home', lazyloadRouteHandler('./routes//meituan/tech/home'));
         
     | 
| 
       1816 
     | 
    
         
            -
             
     | 
| 
       1817 
     | 
    
         
            -
            // 码农网
         
     | 
| 
       1818 
     | 
    
         
            -
            router.get('/codeceo/home', lazyloadRouteHandler('./routes/codeceo/home'));
         
     | 
| 
       1819 
     | 
    
         
            -
            router.get('/codeceo/:type/:category?', lazyloadRouteHandler('./routes/codeceo/category'));
         
     | 
| 
       1820 
     | 
    
         
            -
             
     | 
| 
       1821 
     | 
    
         
            -
            // BOF
         
     | 
| 
       1822 
     | 
    
         
            -
            router.get('/bof/home', lazyloadRouteHandler('./routes/bof/home'));
         
     | 
| 
       1823 
     | 
    
         
            -
             
     | 
| 
       1824 
742 
     | 
    
         
             
            // 爱发电
         
     | 
| 
       1825 
     | 
    
         
            -
            router.get('/afdian/explore/:type?/:category?', lazyloadRouteHandler('./routes/afdian/explore'));
         
     | 
| 
       1826 
     | 
    
         
            -
            router.get('/afdian/dynamic/:uid', lazyloadRouteHandler('./routes/afdian/dynamic'));
         
     | 
| 
      
 743 
     | 
    
         
            +
            // router.get('/afdian/explore/:type?/:category?', lazyloadRouteHandler('./routes/afdian/explore'));
         
     | 
| 
      
 744 
     | 
    
         
            +
            // router.get('/afdian/dynamic/:uid', lazyloadRouteHandler('./routes/afdian/dynamic'));
         
     | 
| 
       1827 
745 
     | 
    
         | 
| 
       1828 
746 
     | 
    
         
             
            // Simons Foundation
         
     | 
| 
       1829 
747 
     | 
    
         
             
            router.get('/simonsfoundation/articles', lazyloadRouteHandler('./routes/simonsfoundation/articles'));
         
     | 
| 
       1830 
748 
     | 
    
         
             
            router.get('/simonsfoundation/recommend', lazyloadRouteHandler('./routes/simonsfoundation/recommend'));
         
     | 
| 
       1831 
749 
     | 
    
         | 
| 
       1832 
     | 
    
         
            -
            // 王者荣耀
         
     | 
| 
       1833 
     | 
    
         
            -
            // router.get('/tencent/pvp/newsindex/:type', lazyloadRouteHandler('./routes/tencent/pvp/newsindex'));
         
     | 
| 
       1834 
     | 
    
         
            -
             
     | 
| 
       1835 
     | 
    
         
            -
            // 《明日方舟》游戏 (migrated to v2)
         
     | 
| 
       1836 
     | 
    
         
            -
            // router.get('/arknights/news', lazyloadRouteHandler('./routes/arknights/news'));
         
     | 
| 
       1837 
     | 
    
         
            -
            // アークナイツ(明日方舟日服) (migrated to v2)
         
     | 
| 
       1838 
     | 
    
         
            -
            // router.get('/arknights/japan', lazyloadRouteHandler('./routes/arknights/japan'));
         
     | 
| 
       1839 
750 
     | 
    
         
             
            // 塞壬唱片
         
     | 
| 
       1840 
751 
     | 
    
         
             
            router.get('/siren/news', lazyloadRouteHandler('./routes/siren/index'));
         
     | 
| 
       1841 
752 
     | 
    
         | 
| 
       1842 
     | 
    
         
            -
            // ff14 migrated to v2
         
     | 
| 
       1843 
     | 
    
         
            -
            // router.get('/ff14/ff14_zh/:type', lazyloadRouteHandler('./routes/ff14/ff14_zh'));
         
     | 
| 
       1844 
     | 
    
         
            -
            // router.get('/ff14/ff14_global/:lang/:type', lazyloadRouteHandler('./routes/ff14/ff14_global'));
         
     | 
| 
       1845 
     | 
    
         
            -
             
     | 
| 
       1846 
753 
     | 
    
         
             
            // 学堂在线
         
     | 
| 
       1847 
     | 
    
         
            -
            router.get('/xuetangx/course/:cid/:type', lazyloadRouteHandler('./routes/xuetangx/ 
     | 
| 
       1848 
     | 
    
         
            -
            router.get('/xuetangx/course/list/:mode/:credential/:status/:type?', lazyloadRouteHandler('./routes/xuetangx/ 
     | 
| 
       1849 
     | 
    
         
            -
             
     | 
| 
       1850 
     | 
    
         
            -
            // wikihow
         
     | 
| 
       1851 
     | 
    
         
            -
            router.get('/wikihow/index', lazyloadRouteHandler('./routes/wikihow/index.js'));
         
     | 
| 
       1852 
     | 
    
         
            -
            router.get('/wikihow/category/:category/:type', lazyloadRouteHandler('./routes/wikihow/category.js'));
         
     | 
| 
      
 754 
     | 
    
         
            +
            router.get('/xuetangx/course/:cid/:type', lazyloadRouteHandler('./routes/xuetangx/course-info'));
         
     | 
| 
      
 755 
     | 
    
         
            +
            router.get('/xuetangx/course/list/:mode/:credential/:status/:type?', lazyloadRouteHandler('./routes/xuetangx/course-list'));
         
     | 
| 
       1853 
756 
     | 
    
         | 
| 
       1854 
757 
     | 
    
         
             
            // 正版中国
         
     | 
| 
       1855 
     | 
    
         
            -
            router.get('/getitfree/category/:category?', lazyloadRouteHandler('./routes/getitfree/category.js'));
         
     | 
| 
       1856 
     | 
    
         
            -
            router.get('/getitfree/search/:keyword?', lazyloadRouteHandler('./routes/getitfree/search.js'));
         
     | 
| 
      
 758 
     | 
    
         
            +
            // router.get('/getitfree/category/:category?', lazyloadRouteHandler('./routes/getitfree/category.js'));
         
     | 
| 
      
 759 
     | 
    
         
            +
            // router.get('/getitfree/search/:keyword?', lazyloadRouteHandler('./routes/getitfree/search.js'));
         
     | 
| 
       1857 
760 
     | 
    
         | 
| 
       1858 
761 
     | 
    
         
             
            // 万联网
         
     | 
| 
       1859 
762 
     | 
    
         
             
            router.get('/10000link/news/:category?', lazyloadRouteHandler('./routes/10000link/news'));
         
     | 
| 
       1860 
763 
     | 
    
         | 
| 
       1861 
     | 
    
         
            -
            // 站酷
         
     | 
| 
       1862 
     | 
    
         
            -
            // router.get('/zcool/discover/:query?/:subCate?/:hasVideo?/:city?/:collage?/:recommendLevel?/:sort?', lazyloadRouteHandler('./routes/zcool/discover'));
         
     | 
| 
       1863 
     | 
    
         
            -
            // router.get('/zcool/recommend/:query?/:subCate?/:hasVideo?/:city?/:collage?/:recommendLevel?/:sort?', lazyloadRouteHandler('./routes/zcool/discover')); // 兼容老版本
         
     | 
| 
       1864 
     | 
    
         
            -
            // router.get('/zcool/top/:type', lazyloadRouteHandler('./routes/zcool/top'));
         
     | 
| 
       1865 
     | 
    
         
            -
            // router.get('/zcool/top', lazyloadRouteHandler('./routes/zcool/top')); // 兼容老版本
         
     | 
| 
       1866 
     | 
    
         
            -
            // router.get('/zcool/user/:uid', lazyloadRouteHandler('./routes/zcool/user'));
         
     | 
| 
       1867 
     | 
    
         
            -
             
     | 
| 
       1868 
     | 
    
         
            -
            // 第一财经
         
     | 
| 
       1869 
     | 
    
         
            -
            // router.get('/yicai/brief', lazyloadRouteHandler('./routes/yicai/brief.js'));
         
     | 
| 
       1870 
     | 
    
         
            -
             
     | 
| 
       1871 
764 
     | 
    
         
             
            // 一兜糖
         
     | 
| 
       1872 
     | 
    
         
            -
            router.get('/yidoutang/index', lazyloadRouteHandler('./routes/yidoutang/index.js'));
         
     | 
| 
       1873 
765 
     | 
    
         
             
            router.get('/yidoutang/guide', lazyloadRouteHandler('./routes/yidoutang/guide.js'));
         
     | 
| 
       1874 
766 
     | 
    
         
             
            router.get('/yidoutang/mtest', lazyloadRouteHandler('./routes/yidoutang/mtest.js'));
         
     | 
| 
       1875 
767 
     | 
    
         
             
            router.get('/yidoutang/case/:type', lazyloadRouteHandler('./routes/yidoutang/case.js'));
         
     | 
| 
         @@ -1877,31 +769,14 @@ router.get('/yidoutang/case/:type', lazyloadRouteHandler('./routes/yidoutang/cas 
     | 
|
| 
       1877 
769 
     | 
    
         
             
            // 开眼
         
     | 
| 
       1878 
770 
     | 
    
         
             
            router.get('/kaiyan/index', lazyloadRouteHandler('./routes/kaiyan/index'));
         
     | 
| 
       1879 
771 
     | 
    
         | 
| 
       1880 
     | 
    
         
            -
            // 龙空
         
     | 
| 
       1881 
     | 
    
         
            -
            // router.get('/lkong/forum/:id/:digest?', lazyloadRouteHandler('./routes/lkong/forum'));
         
     | 
| 
       1882 
     | 
    
         
            -
            // router.get('/lkong/thread/:id', lazyloadRouteHandler('./routes/lkong/thread'));
         
     | 
| 
       1883 
     | 
    
         
            -
            // router.get('/lkong/user/:id', lazyloadRouteHandler('./routes/lkong/user'));
         
     | 
| 
       1884 
     | 
    
         
            -
             
     | 
| 
       1885 
772 
     | 
    
         
             
            // 坂道系列资讯
         
     | 
| 
       1886 
773 
     | 
    
         
             
            // 坂道系列官网新闻
         
     | 
| 
       1887 
774 
     | 
    
         
             
            router.get('/keyakizaka46/news', lazyloadRouteHandler('./routes/keyakizaka46/news'));
         
     | 
| 
       1888 
     | 
    
         
            -
            router.get('/hinatazaka46/news', lazyloadRouteHandler('./routes/hinatazaka46/news'));
         
     | 
| 
      
 775 
     | 
    
         
            +
            // router.get('/hinatazaka46/news', lazyloadRouteHandler('./routes/hinatazaka46/news'));
         
     | 
| 
       1889 
776 
     | 
    
         
             
            router.get('/keyakizaka46/blog', lazyloadRouteHandler('./routes/keyakizaka46/blog'));
         
     | 
| 
       1890 
     | 
    
         
            -
            router.get('/hinatazaka46/blog', lazyloadRouteHandler('./routes/hinatazaka46/blog'));
         
     | 
| 
      
 777 
     | 
    
         
            +
            // router.get('/hinatazaka46/blog', lazyloadRouteHandler('./routes/hinatazaka46/blog'));
         
     | 
| 
       1891 
778 
     | 
    
         
             
            // router.get('/sakurazaka46/blog', lazyloadRouteHandler('./routes/sakurazaka46/blog'));
         
     | 
| 
       1892 
779 
     | 
    
         | 
| 
       1893 
     | 
    
         
            -
            // 酷安 migrated to v2
         
     | 
| 
       1894 
     | 
    
         
            -
            // router.get('/coolapk/tuwen/:type?', lazyloadRouteHandler('./routes/coolapk/tuwen'));
         
     | 
| 
       1895 
     | 
    
         
            -
            // router.get('/coolapk/tuwen-xinxian', lazyloadRouteHandler('./routes/coolapk/tuwen'));
         
     | 
| 
       1896 
     | 
    
         
            -
            // router.get('/coolapk/toutiao/:type?', lazyloadRouteHandler('./routes/coolapk/toutiao'));
         
     | 
| 
       1897 
     | 
    
         
            -
            // router.get('/coolapk/huati/:tag', lazyloadRouteHandler('./routes/coolapk/huati'));
         
     | 
| 
       1898 
     | 
    
         
            -
            // router.get('/coolapk/user/:uid/dynamic', lazyloadRouteHandler('./routes/coolapk/userDynamic'));
         
     | 
| 
       1899 
     | 
    
         
            -
            // router.get('/coolapk/dyh/:dyhId', lazyloadRouteHandler('./routes/coolapk/dyh'));
         
     | 
| 
       1900 
     | 
    
         
            -
            // router.get('/coolapk/hot/:type?/:period?', lazyloadRouteHandler('./routes/coolapk/hot'));
         
     | 
| 
       1901 
     | 
    
         
            -
             
     | 
| 
       1902 
     | 
    
         
            -
            // 模型网
         
     | 
| 
       1903 
     | 
    
         
            -
            router.get('/moxingnet', lazyloadRouteHandler('./routes/moxingnet'));
         
     | 
| 
       1904 
     | 
    
         
            -
             
     | 
| 
       1905 
780 
     | 
    
         
             
            // 湖北大学
         
     | 
| 
       1906 
781 
     | 
    
         
             
            router.get('/hubu/news/:type', lazyloadRouteHandler('./routes/universities/hubu/news'));
         
     | 
| 
       1907 
782 
     | 
    
         | 
| 
         @@ -1916,37 +791,9 @@ router.get('/socialclub/events/:game?', lazyloadRouteHandler('./routes/socialclu 
     | 
|
| 
       1916 
791 
     | 
    
         
             
            router.get('/ctfhub/upcoming/:limit?', lazyloadRouteHandler('./routes/ctfhub/upcoming'));
         
     | 
| 
       1917 
792 
     | 
    
         
             
            router.get('/ctfhub/search/:limit?/:form?/:class?/:title?', lazyloadRouteHandler('./routes/ctfhub/search'));
         
     | 
| 
       1918 
793 
     | 
    
         | 
| 
       1919 
     | 
    
         
            -
            // 阿里云 migrated to v2
         
     | 
| 
       1920 
     | 
    
         
            -
            // router.get('/aliyun/database_month', lazyloadRouteHandler('./routes/aliyun/database_month'));
         
     | 
| 
       1921 
     | 
    
         
            -
            // router.get('/aliyun/notice/:type?', lazyloadRouteHandler('./routes/aliyun/notice'));
         
     | 
| 
       1922 
     | 
    
         
            -
            // router.get('/aliyun/developer/group/:type', lazyloadRouteHandler('./routes/aliyun/developer/group'));
         
     | 
| 
       1923 
     | 
    
         
            -
             
     | 
| 
       1924 
     | 
    
         
            -
            // 礼物说
         
     | 
| 
       1925 
     | 
    
         
            -
            router.get('/liwushuo/index', lazyloadRouteHandler('./routes/liwushuo/index.js'));
         
     | 
| 
       1926 
     | 
    
         
            -
             
     | 
| 
       1927 
     | 
    
         
            -
            // 故事fm
         
     | 
| 
       1928 
     | 
    
         
            -
            router.get('/storyfm/index', lazyloadRouteHandler('./routes/storyfm/index.js'));
         
     | 
| 
       1929 
     | 
    
         
            -
             
     | 
| 
       1930 
794 
     | 
    
         
             
            // 中国日报
         
     | 
| 
       1931 
795 
     | 
    
         
             
            router.get('/chinadaily/english/:category', lazyloadRouteHandler('./routes/chinadaily/english.js'));
         
     | 
| 
       1932 
796 
     | 
    
         | 
| 
       1933 
     | 
    
         
            -
            // leboncoin
         
     | 
| 
       1934 
     | 
    
         
            -
            router.get('/leboncoin/ad/:query', lazyloadRouteHandler('./routes/leboncoin/ad.js'));
         
     | 
| 
       1935 
     | 
    
         
            -
             
     | 
| 
       1936 
     | 
    
         
            -
            // DHL
         
     | 
| 
       1937 
     | 
    
         
            -
            router.get('/dhl/:id', lazyloadRouteHandler('./routes/dhl/shipment-tracking'));
         
     | 
| 
       1938 
     | 
    
         
            -
             
     | 
| 
       1939 
     | 
    
         
            -
            // Japanpost
         
     | 
| 
       1940 
     | 
    
         
            -
            router.get('/japanpost/track/:reqCode/:locale?', lazyloadRouteHandler('./routes/japanpost/track'));
         
     | 
| 
       1941 
     | 
    
         
            -
             
     | 
| 
       1942 
     | 
    
         
            -
            // 中华人民共和国商务部 migrated to v2
         
     | 
| 
       1943 
     | 
    
         
            -
            // router.get('/mofcom/article/:suffix', lazyloadRouteHandler('./routes/mofcom/article'));
         
     | 
| 
       1944 
     | 
    
         
            -
             
     | 
| 
       1945 
     | 
    
         
            -
            // 品玩
         
     | 
| 
       1946 
     | 
    
         
            -
            // router.get('/pingwest/status', lazyloadRouteHandler('./routes/pingwest/status'));
         
     | 
| 
       1947 
     | 
    
         
            -
            // router.get('/pingwest/tag/:tag/:type/:option?', lazyloadRouteHandler('./routes/pingwest/tag'));
         
     | 
| 
       1948 
     | 
    
         
            -
            // router.get('/pingwest/user/:uid/:type?/:option?', lazyloadRouteHandler('./routes/pingwest/user'));
         
     | 
| 
       1949 
     | 
    
         
            -
             
     | 
| 
       1950 
797 
     | 
    
         
             
            // Hanime
         
     | 
| 
       1951 
798 
     | 
    
         
             
            router.get('/hanime/video', lazyloadRouteHandler('./routes/hanime/video'));
         
     | 
| 
       1952 
799 
     | 
    
         | 
| 
         @@ -1957,14 +804,8 @@ router.get('/soul/posts/hot/:pid*', lazyloadRouteHandler('./routes/soul/hot')); 
     | 
|
| 
       1957 
804 
     | 
    
         
             
            // 单向空间
         
     | 
| 
       1958 
805 
     | 
    
         
             
            router.get('/owspace/read/:type?', lazyloadRouteHandler('./routes/owspace/read'));
         
     | 
| 
       1959 
806 
     | 
    
         | 
| 
       1960 
     | 
    
         
            -
            // 天涯论坛
         
     | 
| 
       1961 
     | 
    
         
            -
            router.get('/tianya/index/:type', lazyloadRouteHandler('./routes/tianya/index'));
         
     | 
| 
       1962 
     | 
    
         
            -
            router.get('/tianya/user/:userid', lazyloadRouteHandler('./routes/tianya/user'));
         
     | 
| 
       1963 
     | 
    
         
            -
            router.get('/tianya/comments/:userid', lazyloadRouteHandler('./routes/tianya/comments'));
         
     | 
| 
       1964 
     | 
    
         
            -
             
     | 
| 
       1965 
807 
     | 
    
         
             
            // eleme
         
     | 
| 
       1966 
808 
     | 
    
         
             
            router.get('/eleme/open/announce', lazyloadRouteHandler('./routes/eleme/open/announce'));
         
     | 
| 
       1967 
     | 
    
         
            -
            router.get('/eleme/open-be/announce', lazyloadRouteHandler('./routes/eleme/open-be/announce'));
         
     | 
| 
       1968 
809 
     | 
    
         | 
| 
       1969 
810 
     | 
    
         
             
            // 美团开放平台
         
     | 
| 
       1970 
811 
     | 
    
         
             
            router.get('/meituan/open/announce', lazyloadRouteHandler('./routes/meituan/open/announce'));
         
     | 
| 
         @@ -1981,91 +822,29 @@ router.get('/weidian/goods/:id', lazyloadRouteHandler('./routes/weidian/goods')) 
     | 
|
| 
       1981 
822 
     | 
    
         
             
            // 有赞
         
     | 
| 
       1982 
823 
     | 
    
         
             
            router.get('/youzan/goods/:id', lazyloadRouteHandler('./routes/youzan/goods'));
         
     | 
| 
       1983 
824 
     | 
    
         | 
| 
       1984 
     | 
    
         
            -
            // 币世界快讯
         
     | 
| 
       1985 
     | 
    
         
            -
            router.get('/bishijie/kuaixun', lazyloadRouteHandler('./routes/bishijie/kuaixun'));
         
     | 
| 
       1986 
     | 
    
         
            -
             
     | 
| 
       1987 
     | 
    
         
            -
            // 顺丰丰桥
         
     | 
| 
       1988 
     | 
    
         
            -
            router.get('/sf/sffq-announce', lazyloadRouteHandler('./routes/sf/sffq-announce'));
         
     | 
| 
       1989 
     | 
    
         
            -
             
     | 
| 
       1990 
825 
     | 
    
         
             
            // 缺书网
         
     | 
| 
       1991 
826 
     | 
    
         
             
            router.get('/queshu/sale', lazyloadRouteHandler('./routes/queshu/sale'));
         
     | 
| 
       1992 
827 
     | 
    
         
             
            router.get('/queshu/book/:bookid', lazyloadRouteHandler('./routes/queshu/book'));
         
     | 
| 
       1993 
828 
     | 
    
         | 
| 
       1994 
     | 
    
         
            -
            // MITRE
         
     | 
| 
       1995 
     | 
    
         
            -
            router.get('/mitre/publications', lazyloadRouteHandler('./routes/mitre/publications'));
         
     | 
| 
       1996 
     | 
    
         
            -
             
     | 
| 
       1997 
     | 
    
         
            -
            // SANS
         
     | 
| 
       1998 
     | 
    
         
            -
            router.get('/sans/summit_archive', lazyloadRouteHandler('./routes/sans/summit_archive'));
         
     | 
| 
       1999 
     | 
    
         
            -
             
     | 
| 
       2000 
829 
     | 
    
         
             
            // LaTeX 开源小屋
         
     | 
| 
       2001 
830 
     | 
    
         
             
            router.get('/latexstudio/home', lazyloadRouteHandler('./routes/latexstudio/home'));
         
     | 
| 
       2002 
831 
     | 
    
         | 
| 
       2003 
     | 
    
         
            -
            // 上证债券信息网 - 可转换公司债券公告
         
     | 
| 
       2004 
     | 
    
         
            -
            // router.get('/sse/convert/:query?', lazyloadRouteHandler('./routes/sse/convert'));
         
     | 
| 
       2005 
     | 
    
         
            -
            // router.get('/sse/renewal', lazyloadRouteHandler('./routes/sse/renewal'));
         
     | 
| 
       2006 
     | 
    
         
            -
            // router.get('/sse/inquire', lazyloadRouteHandler('./routes/sse/inquire'));
         
     | 
| 
       2007 
     | 
    
         
            -
             
     | 
| 
       2008 
     | 
    
         
            -
            // 上海证券交易所
         
     | 
| 
       2009 
     | 
    
         
            -
            // router.get('/sse/disclosure/:query?', lazyloadRouteHandler('./routes/sse/disclosure'));
         
     | 
| 
       2010 
     | 
    
         
            -
             
     | 
| 
       2011 
     | 
    
         
            -
            // 深圳证券交易所
         
     | 
| 
       2012 
     | 
    
         
            -
            // router.get('/szse/notice', lazyloadRouteHandler('./routes/szse/notice'));
         
     | 
| 
       2013 
     | 
    
         
            -
            // router.get('/szse/inquire/:type', lazyloadRouteHandler('./routes/szse/inquire'));
         
     | 
| 
       2014 
     | 
    
         
            -
            // router.get('/szse/projectdynamic/:type?/:stage?/:status?', lazyloadRouteHandler('./routes/szse/projectdynamic'));
         
     | 
| 
       2015 
     | 
    
         
            -
             
     | 
| 
       2016 
     | 
    
         
            -
            // 前端艺术家每日整理&&飞冰早报
         
     | 
| 
       2017 
     | 
    
         
            -
            router.get('/jskou/:type?', lazyloadRouteHandler('./routes/jskou/index'));
         
     | 
| 
       2018 
     | 
    
         
            -
             
     | 
| 
       2019 
     | 
    
         
            -
            // 国家应急广播
         
     | 
| 
       2020 
     | 
    
         
            -
            router.get('/cneb/yjxx', lazyloadRouteHandler('./routes/cneb/yjxx'));
         
     | 
| 
       2021 
     | 
    
         
            -
            router.get('/cneb/guoneinews', lazyloadRouteHandler('./routes/cneb/guoneinews'));
         
     | 
| 
       2022 
     | 
    
         
            -
             
     | 
| 
       2023 
832 
     | 
    
         
             
            // 邮箱
         
     | 
| 
       2024 
     | 
    
         
            -
            router.get('/mail/imap/:email', lazyloadRouteHandler('./routes/mail/imap'));
         
     | 
| 
       2025 
     | 
    
         
            -
             
     | 
| 
       2026 
     | 
    
         
            -
            // 好队友
         
     | 
| 
       2027 
     | 
    
         
            -
            router.get('/network360/jobs', lazyloadRouteHandler('./routes/network360/jobs'));
         
     | 
| 
       2028 
     | 
    
         
            -
             
     | 
| 
       2029 
     | 
    
         
            -
            // 智联招聘
         
     | 
| 
       2030 
     | 
    
         
            -
            router.get('/zhilian/:city/:keyword', lazyloadRouteHandler('./routes/zhilian/index'));
         
     | 
| 
       2031 
     | 
    
         
            -
             
     | 
| 
       2032 
     | 
    
         
            -
            // 电鸭社区
         
     | 
| 
       2033 
     | 
    
         
            -
            // router.get('/eleduck/jobs', lazyloadRouteHandler('./routes/eleduck/jobs'));
         
     | 
| 
      
 833 
     | 
    
         
            +
            // router.get('/mail/imap/:email/:folder*', lazyloadRouteHandler('./routes/mail/imap'));
         
     | 
| 
       2034 
834 
     | 
    
         | 
| 
       2035 
835 
     | 
    
         
             
            // 北华航天工业学院 - 新闻
         
     | 
| 
       2036 
836 
     | 
    
         
             
            router.get('/nciae/news', lazyloadRouteHandler('./routes/universities/nciae/news'));
         
     | 
| 
       2037 
     | 
    
         
            -
             
     | 
| 
       2038 
837 
     | 
    
         
             
            // 北华航天工业学院 - 通知公告
         
     | 
| 
       2039 
838 
     | 
    
         
             
            router.get('/nciae/tzgg', lazyloadRouteHandler('./routes/universities/nciae/tzgg'));
         
     | 
| 
       2040 
     | 
    
         
            -
             
     | 
| 
       2041 
839 
     | 
    
         
             
            // 北华航天工业学院 - 学术信息
         
     | 
| 
       2042 
840 
     | 
    
         
             
            router.get('/nciae/xsxx', lazyloadRouteHandler('./routes/universities/nciae/xsxx'));
         
     | 
| 
       2043 
841 
     | 
    
         | 
| 
       2044 
842 
     | 
    
         
             
            // cfan
         
     | 
| 
       2045 
843 
     | 
    
         
             
            router.get('/cfan/news', lazyloadRouteHandler('./routes/cfan/news'));
         
     | 
| 
       2046 
844 
     | 
    
         | 
| 
       2047 
     | 
    
         
            -
            // 腾讯企鹅号 migrated to v2
         
     | 
| 
       2048 
     | 
    
         
            -
            // router.get('/tencent/news/author/:mid', lazyloadRouteHandler('./routes/tencent/news/author'));
         
     | 
| 
       2049 
     | 
    
         
            -
             
     | 
| 
       2050 
     | 
    
         
            -
            // 奈菲影视
         
     | 
| 
       2051 
     | 
    
         
            -
            router.get('/nfmovies/:id?', lazyloadRouteHandler('./routes/nfmovies/index'));
         
     | 
| 
       2052 
     | 
    
         
            -
             
     | 
| 
       2053 
     | 
    
         
            -
            // 书友社区
         
     | 
| 
       2054 
     | 
    
         
            -
            router.get('/andyt/:view?', lazyloadRouteHandler('./routes/andyt/index'));
         
     | 
| 
       2055 
     | 
    
         
            -
             
     | 
| 
       2056 
     | 
    
         
            -
            // 品途商业评论
         
     | 
| 
       2057 
     | 
    
         
            -
            router.get('/pintu360/:type?', lazyloadRouteHandler('./routes/pintu360/index'));
         
     | 
| 
       2058 
     | 
    
         
            -
             
     | 
| 
       2059 
     | 
    
         
            -
            // engadget中国版
         
     | 
| 
       2060 
     | 
    
         
            -
            router.get('/engadget-cn', lazyloadRouteHandler('./routes/engadget/home'));
         
     | 
| 
       2061 
     | 
    
         
            -
             
     | 
| 
       2062 
845 
     | 
    
         
             
            // engadget
         
     | 
| 
       2063 
846 
     | 
    
         
             
            router.get('/engadget/:lang?', lazyloadRouteHandler('./routes/engadget/home'));
         
     | 
| 
       2064 
847 
     | 
    
         | 
| 
       2065 
     | 
    
         
            -
            // 吹牛部落
         
     | 
| 
       2066 
     | 
    
         
            -
            router.get('/chuiniu/column/:id', lazyloadRouteHandler('./routes/chuiniu/column'));
         
     | 
| 
       2067 
     | 
    
         
            -
            router.get('/chuiniu/column_list', lazyloadRouteHandler('./routes/chuiniu/column_list'));
         
     | 
| 
       2068 
     | 
    
         
            -
             
     | 
| 
       2069 
848 
     | 
    
         
             
            // leemeng
         
     | 
| 
       2070 
849 
     | 
    
         
             
            router.get('/leemeng', lazyloadRouteHandler('./routes/blogs/leemeng'));
         
     | 
| 
       2071 
850 
     | 
    
         | 
| 
         @@ -2076,24 +855,6 @@ router.get('/cug/xgxy', lazyloadRouteHandler('./routes/universities/cug/xgxy')); 
     | 
|
| 
       2076 
855 
     | 
    
         
             
            router.get('/cug/news', lazyloadRouteHandler('./routes/universities/cug/news'));
         
     | 
| 
       2077 
856 
     | 
    
         
             
            router.get('/cug/gcxy/:type?', lazyloadRouteHandler('./routes/universities/cug/gcxy/index'));
         
     | 
| 
       2078 
857 
     | 
    
         | 
| 
       2079 
     | 
    
         
            -
            // 海猫吧
         
     | 
| 
       2080 
     | 
    
         
            -
            router.get('/haimaoba/:id?', lazyloadRouteHandler('./routes/haimaoba/comics'));
         
     | 
| 
       2081 
     | 
    
         
            -
             
     | 
| 
       2082 
     | 
    
         
            -
            // 蒲公英
         
     | 
| 
       2083 
     | 
    
         
            -
            router.get('/pgyer/:app?', lazyloadRouteHandler('./routes/pgyer/app'));
         
     | 
| 
       2084 
     | 
    
         
            -
             
     | 
| 
       2085 
     | 
    
         
            -
            // 微博个人时间线
         
     | 
| 
       2086 
     | 
    
         
            -
            // router.get('/weibo/timeline/:uid/:feature?/:routeParams?', lazyloadRouteHandler('./routes/weibo/timeline'));
         
     | 
| 
       2087 
     | 
    
         
            -
             
     | 
| 
       2088 
     | 
    
         
            -
            // TAPTAP migrated to v2
         
     | 
| 
       2089 
     | 
    
         
            -
            // router.get('/taptap/topic/:id/:label?', lazyloadRouteHandler('./routes/taptap/topic'));
         
     | 
| 
       2090 
     | 
    
         
            -
            // router.get('/taptap/changelog/:id', lazyloadRouteHandler('./routes/taptap/changelog'));
         
     | 
| 
       2091 
     | 
    
         
            -
            // router.get('/taptap/review/:id/:order?/:lang?', lazyloadRouteHandler('./routes/taptap/review'));
         
     | 
| 
       2092 
     | 
    
         
            -
             
     | 
| 
       2093 
     | 
    
         
            -
            // lofter migrated to v2
         
     | 
| 
       2094 
     | 
    
         
            -
            // router.get('/lofter/tag/:name?/:type?', lazyloadRouteHandler('./routes/lofter/tag'));
         
     | 
| 
       2095 
     | 
    
         
            -
            // router.get('/lofter/user/:name?', lazyloadRouteHandler('./routes/lofter/user'));
         
     | 
| 
       2096 
     | 
    
         
            -
             
     | 
| 
       2097 
858 
     | 
    
         
             
            // 米坛社区表盘
         
     | 
| 
       2098 
859 
     | 
    
         
             
            router.get('/watchface/:watch_type?/:list_type?', lazyloadRouteHandler('./routes/watchface/update'));
         
     | 
| 
       2099 
860 
     | 
    
         | 
| 
         @@ -2101,45 +862,22 @@ router.get('/watchface/:watch_type?/:list_type?', lazyloadRouteHandler('./routes 
     | 
|
| 
       2101 
862 
     | 
    
         
             
            router.get('/cnu/selected', lazyloadRouteHandler('./routes/cnu/selected'));
         
     | 
| 
       2102 
863 
     | 
    
         
             
            router.get('/cnu/discovery/:type?/:category?', lazyloadRouteHandler('./routes/cnu/discovery'));
         
     | 
| 
       2103 
864 
     | 
    
         | 
| 
       2104 
     | 
    
         
            -
            // 战旗直播
         
     | 
| 
       2105 
     | 
    
         
            -
            router.get('/zhanqi/room/:id', lazyloadRouteHandler('./routes/zhanqi/room'));
         
     | 
| 
       2106 
     | 
    
         
            -
             
     | 
| 
       2107 
     | 
    
         
            -
            // 酒云网
         
     | 
| 
       2108 
     | 
    
         
            -
            router.get('/wineyun/:category', lazyloadRouteHandler('./routes/wineyun'));
         
     | 
| 
       2109 
     | 
    
         
            -
             
     | 
| 
       2110 
     | 
    
         
            -
            // 小红书 migrated to v2
         
     | 
| 
       2111 
     | 
    
         
            -
            // router.get('/xiaohongshu/user/:user_id/:category', lazyloadRouteHandler('./routes/xiaohongshu/user'));
         
     | 
| 
       2112 
     | 
    
         
            -
            // router.get('/xiaohongshu/board/:board_id', lazyloadRouteHandler('./routes/xiaohongshu/board'));
         
     | 
| 
       2113 
     | 
    
         
            -
             
     | 
| 
       2114 
     | 
    
         
            -
            // 每经网
         
     | 
| 
       2115 
     | 
    
         
            -
            // router.get('/nbd/daily', lazyloadRouteHandler('./routes/nbd/article'));
         
     | 
| 
       2116 
     | 
    
         
            -
            // router.get('/nbd/:id?', lazyloadRouteHandler('./routes/nbd/index'));
         
     | 
| 
       2117 
     | 
    
         
            -
             
     | 
| 
       2118 
     | 
    
         
            -
            // 快知
         
     | 
| 
       2119 
     | 
    
         
            -
            router.get('/kzfeed/topic/:id', lazyloadRouteHandler('./routes/kzfeed/topic'));
         
     | 
| 
       2120 
     | 
    
         
            -
             
     | 
| 
       2121 
     | 
    
         
            -
            // 腾讯新闻较真查证平台
         
     | 
| 
       2122 
     | 
    
         
            -
            // router.get('/factcheck', lazyloadRouteHandler('./routes/tencent/factcheck'));
         
     | 
| 
       2123 
     | 
    
         
            -
             
     | 
| 
       2124 
865 
     | 
    
         
             
            // X-MOL化学资讯平台
         
     | 
| 
       2125 
     | 
    
         
            -
            router.get('/x-mol/news/:tag?', lazyloadRouteHandler('./routes/x-mol/news.js'));
         
     | 
| 
       2126 
     | 
    
         
            -
            router.get('/x-mol/paper/:type/:magazine', lazyloadRouteHandler('./routes/x-mol/paper'));
         
     | 
| 
      
 866 
     | 
    
         
            +
            // router.get('/x-mol/news/:tag?', lazyloadRouteHandler('./routes/x-mol/news.js'));
         
     | 
| 
      
 867 
     | 
    
         
            +
            // router.get('/x-mol/paper/:type/:magazine', lazyloadRouteHandler('./routes/x-mol/paper'));
         
     | 
| 
       2127 
868 
     | 
    
         | 
| 
       2128 
869 
     | 
    
         
             
            // 知识分子
         
     | 
| 
       2129 
870 
     | 
    
         
             
            router.get('/zhishifenzi/news/:type?', lazyloadRouteHandler('./routes/zhishifenzi/news'));
         
     | 
| 
       2130 
871 
     | 
    
         
             
            router.get('/zhishifenzi/depth', lazyloadRouteHandler('./routes/zhishifenzi/depth'));
         
     | 
| 
       2131 
872 
     | 
    
         
             
            router.get('/zhishifenzi/innovation/:type?', lazyloadRouteHandler('./routes/zhishifenzi/innovation'));
         
     | 
| 
       2132 
873 
     | 
    
         | 
| 
       2133 
     | 
    
         
            -
            // 電撃Online
         
     | 
| 
       2134 
     | 
    
         
            -
            router.get('/dengekionline/:type?', lazyloadRouteHandler('./routes/dengekionline/new'));
         
     | 
| 
       2135 
     | 
    
         
            -
             
     | 
| 
       2136 
874 
     | 
    
         
             
            // 4Gamers
         
     | 
| 
       2137 
     | 
    
         
            -
            router.get('/4gamers/category/:category', lazyloadRouteHandler('./routes/4gamers/category'));
         
     | 
| 
       2138 
     | 
    
         
            -
            router.get('/4gamers/tag/:tag', lazyloadRouteHandler('./routes/4gamers/tag'));
         
     | 
| 
       2139 
     | 
    
         
            -
            router.get('/4gamers/topic/:topic', lazyloadRouteHandler('./routes/4gamers/topic'));
         
     | 
| 
      
 875 
     | 
    
         
            +
            // router.get('/4gamers/category/:category', lazyloadRouteHandler('./routes/4gamers/category'));
         
     | 
| 
      
 876 
     | 
    
         
            +
            // router.get('/4gamers/tag/:tag', lazyloadRouteHandler('./routes/4gamers/tag'));
         
     | 
| 
      
 877 
     | 
    
         
            +
            // router.get('/4gamers/topic/:topic', lazyloadRouteHandler('./routes/4gamers/topic'));
         
     | 
| 
       2140 
878 
     | 
    
         | 
| 
       2141 
879 
     | 
    
         
             
            // 大麦网
         
     | 
| 
       2142 
     | 
    
         
            -
            router.get('/damai/activity/:city/:category/:subcategory/:keyword?', lazyloadRouteHandler('./routes/damai/activity'));
         
     | 
| 
      
 880 
     | 
    
         
            +
            // router.get('/damai/activity/:city/:category/:subcategory/:keyword?', lazyloadRouteHandler('./routes/damai/activity'));
         
     | 
| 
       2143 
881 
     | 
    
         | 
| 
       2144 
882 
     | 
    
         
             
            // 桂林电子科技大学新闻资讯
         
     | 
| 
       2145 
883 
     | 
    
         
             
            router.get('/guet/xwzx/:type?', lazyloadRouteHandler('./routes/guet/news'));
         
     | 
| 
         @@ -2147,20 +885,6 @@ router.get('/guet/xwzx/:type?', lazyloadRouteHandler('./routes/guet/news')); 
     | 
|
| 
       2147 
885 
     | 
    
         
             
            // はてな匿名ダイアリー
         
     | 
| 
       2148 
886 
     | 
    
         
             
            router.get('/hatena/anonymous_diary/archive', lazyloadRouteHandler('./routes/hatena/anonymous_diary/archive'));
         
     | 
| 
       2149 
887 
     | 
    
         | 
| 
       2150 
     | 
    
         
            -
            // kaggle
         
     | 
| 
       2151 
     | 
    
         
            -
            router.get('/kaggle/discussion/:forumId/:sort?', lazyloadRouteHandler('./routes/kaggle/discussion'));
         
     | 
| 
       2152 
     | 
    
         
            -
            router.get('/kaggle/competitions/:category?', lazyloadRouteHandler('./routes/kaggle/competitions'));
         
     | 
| 
       2153 
     | 
    
         
            -
            router.get('/kaggle/user/:user', lazyloadRouteHandler('./routes/kaggle/user'));
         
     | 
| 
       2154 
     | 
    
         
            -
             
     | 
| 
       2155 
     | 
    
         
            -
            // PubMed Trending
         
     | 
| 
       2156 
     | 
    
         
            -
            // router.get('/pubmed/trending', lazyloadRouteHandler('./routes/pubmed/trending'));
         
     | 
| 
       2157 
     | 
    
         
            -
             
     | 
| 
       2158 
     | 
    
         
            -
            // 领科 (linkresearcher.com)
         
     | 
| 
       2159 
     | 
    
         
            -
            // router.get('/linkresearcher/:params', lazyloadRouteHandler('./routes/linkresearcher/index'));
         
     | 
| 
       2160 
     | 
    
         
            -
             
     | 
| 
       2161 
     | 
    
         
            -
            // eLife [Sci Journal]
         
     | 
| 
       2162 
     | 
    
         
            -
            router.get('/elife/:tid', lazyloadRouteHandler('./routes/elife/index'));
         
     | 
| 
       2163 
     | 
    
         
            -
             
     | 
| 
       2164 
888 
     | 
    
         
             
            // IEEE Xplore [Sci Journal]
         
     | 
| 
       2165 
889 
     | 
    
         
             
            router.get('/ieee/author/:aid/:sortType/:count?', lazyloadRouteHandler('./routes/ieee/author'));
         
     | 
| 
       2166 
890 
     | 
    
         | 
| 
         @@ -2171,41 +895,12 @@ router.get('/ieee/author/:aid/:sortType/:count?', lazyloadRouteHandler('./routes 
     | 
|
| 
       2171 
895 
     | 
    
         
             
            router.get('/cell/cell/:category', lazyloadRouteHandler('./routes/cell/cell/index'));
         
     | 
| 
       2172 
896 
     | 
    
         
             
            router.get('/cell/cover', lazyloadRouteHandler('./routes/cell/cover'));
         
     | 
| 
       2173 
897 
     | 
    
         | 
| 
       2174 
     | 
    
         
            -
            // nature + nature 子刊 [Sci Journal] migrated to v2
         
     | 
| 
       2175 
     | 
    
         
            -
            // router.get('/nature/research/:journal?', lazyloadRouteHandler('./routes/nature/research'));
         
     | 
| 
       2176 
     | 
    
         
            -
            // router.get('/nature/news-and-comment/:journal?', lazyloadRouteHandler('./routes/nature/news-and-comment'));
         
     | 
| 
       2177 
     | 
    
         
            -
            // router.get('/nature/cover', lazyloadRouteHandler('./routes/nature/cover'));
         
     | 
| 
       2178 
     | 
    
         
            -
            // router.get('/nature/news', lazyloadRouteHandler('./routes/nature/news'));
         
     | 
| 
       2179 
     | 
    
         
            -
            // router.get('/nature/highlight/:year?', lazyloadRouteHandler('./routes/nature/highlight'));
         
     | 
| 
       2180 
     | 
    
         
            -
             
     | 
| 
       2181 
     | 
    
         
            -
            // science [Sci Journal]
         
     | 
| 
       2182 
     | 
    
         
            -
            // router.get('/sciencemag/current/:journal?', lazyloadRouteHandler('./routes/sciencemag/current'));
         
     | 
| 
       2183 
     | 
    
         
            -
            // router.get('/sciencemag/cover', lazyloadRouteHandler('./routes/sciencemag/cover'));
         
     | 
| 
       2184 
     | 
    
         
            -
            // router.get('/sciencemag/early/science', lazyloadRouteHandler('./routes/sciencemag/early'));
         
     | 
| 
       2185 
     | 
    
         
            -
             
     | 
| 
       2186 
     | 
    
         
            -
            // dlsite
         
     | 
| 
       2187 
     | 
    
         
            -
            // router.get('/dlsite/new/:type', lazyloadRouteHandler('./routes/dlsite/new'));
         
     | 
| 
       2188 
     | 
    
         
            -
            // router.get('/dlsite/campaign/:type/:free?', lazyloadRouteHandler('./routes/dlsite/campaign'));
         
     | 
| 
       2189 
     | 
    
         
            -
             
     | 
| 
       2190 
898 
     | 
    
         
             
            // mcbbs
         
     | 
| 
       2191 
899 
     | 
    
         
             
            router.get('/mcbbs/forum/:type', lazyloadRouteHandler('./routes/mcbbs/forum'));
         
     | 
| 
       2192 
900 
     | 
    
         
             
            router.get('/mcbbs/post/:tid/:authorid?', lazyloadRouteHandler('./routes/mcbbs/post'));
         
     | 
| 
       2193 
901 
     | 
    
         | 
| 
       2194 
     | 
    
         
            -
            // Pocket
         
     | 
| 
       2195 
     | 
    
         
            -
            router.get('/pocket/trending', lazyloadRouteHandler('./routes/pocket/trending'));
         
     | 
| 
       2196 
     | 
    
         
            -
             
     | 
| 
       2197 
     | 
    
         
            -
            // HK01
         
     | 
| 
       2198 
     | 
    
         
            -
            // router.get('/hk01/zone/:id', lazyloadRouteHandler('./routes/hk01/zone'));
         
     | 
| 
       2199 
     | 
    
         
            -
            // router.get('/hk01/channel/:id', lazyloadRouteHandler('./routes/hk01/channel'));
         
     | 
| 
       2200 
     | 
    
         
            -
            // router.get('/hk01/issue/:id', lazyloadRouteHandler('./routes/hk01/issue'));
         
     | 
| 
       2201 
     | 
    
         
            -
            // router.get('/hk01/tag/:id', lazyloadRouteHandler('./routes/hk01/tag'));
         
     | 
| 
       2202 
     | 
    
         
            -
            // router.get('/hk01/hot', lazyloadRouteHandler('./routes/hk01/hot'));
         
     | 
| 
       2203 
     | 
    
         
            -
             
     | 
| 
       2204 
     | 
    
         
            -
            // 码农周刊
         
     | 
| 
       2205 
     | 
    
         
            -
            router.get('/manong-weekly', lazyloadRouteHandler('./routes/manong-weekly/issues'));
         
     | 
| 
       2206 
     | 
    
         
            -
             
     | 
| 
       2207 
902 
     | 
    
         
             
            // 每日猪价
         
     | 
| 
       2208 
     | 
    
         
            -
            router.get('/pork-price', lazyloadRouteHandler('./routes/pork-price'));
         
     | 
| 
      
 903 
     | 
    
         
            +
            // router.get('/pork-price', lazyloadRouteHandler('./routes/pork-price'));
         
     | 
| 
       2209 
904 
     | 
    
         | 
| 
       2210 
905 
     | 
    
         
             
            // NOI 全国青少年信息学奥林匹克竞赛
         
     | 
| 
       2211 
906 
     | 
    
         
             
            router.get('/noi', lazyloadRouteHandler('./routes/noi'));
         
     | 
| 
         @@ -2216,59 +911,33 @@ router.get('/noi/rg-news', lazyloadRouteHandler('./routes/noi/rg-news')); 
     | 
|
| 
       2216 
911 
     | 
    
         
             
            // 中国国家认证认可监管管理员会
         
     | 
| 
       2217 
912 
     | 
    
         
             
            router.get('/gov/cnca/jgdt', lazyloadRouteHandler('./routes/gov/cnca/jgdt'));
         
     | 
| 
       2218 
913 
     | 
    
         
             
            router.get('/gov/cnca/hydt', lazyloadRouteHandler('./routes/gov/cnca/hydt'));
         
     | 
| 
       2219 
     | 
    
         
            -
             
     | 
| 
       2220 
914 
     | 
    
         
             
            router.get('/gov/cnca/zxtz', lazyloadRouteHandler('./routes/gov/cnca/zxtz'));
         
     | 
| 
       2221 
915 
     | 
    
         | 
| 
       2222 
     | 
    
         
            -
            // clickme
         
     | 
| 
       2223 
     | 
    
         
            -
            // router.get('/clickme/:site/:grouping/:name', lazyloadRouteHandler('./routes/clickme'));
         
     | 
| 
       2224 
     | 
    
         
            -
             
     | 
| 
       2225 
916 
     | 
    
         
             
            // 文汇报
         
     | 
| 
       2226 
917 
     | 
    
         
             
            router.get('/whb/:category', lazyloadRouteHandler('./routes/whb/zhuzhan'));
         
     | 
| 
       2227 
918 
     | 
    
         | 
| 
       2228 
     | 
    
         
            -
            // 三界异次元
         
     | 
| 
       2229 
     | 
    
         
            -
            router.get('/3ycy/home', lazyloadRouteHandler('./routes/3ycy/home.js'));
         
     | 
| 
       2230 
     | 
    
         
            -
             
     | 
| 
       2231 
919 
     | 
    
         
             
            // Emi Nitta official website
         
     | 
| 
       2232 
920 
     | 
    
         
             
            router.get('/emi-nitta/:type', lazyloadRouteHandler('./routes/emi-nitta/home'));
         
     | 
| 
       2233 
921 
     | 
    
         | 
| 
       2234 
     | 
    
         
            -
            // Alter China
         
     | 
| 
       2235 
     | 
    
         
            -
            router.get('/alter-cn/news', lazyloadRouteHandler('./routes/alter-cn/news'));
         
     | 
| 
       2236 
     | 
    
         
            -
             
     | 
| 
       2237 
922 
     | 
    
         
             
            // Visual Studio Code Marketplace
         
     | 
| 
       2238 
923 
     | 
    
         
             
            router.get('/vscode/marketplace/:type?', lazyloadRouteHandler('./routes/vscode/marketplace'));
         
     | 
| 
       2239 
924 
     | 
    
         | 
| 
       2240 
925 
     | 
    
         
             
            // 饭否
         
     | 
| 
       2241 
     | 
    
         
            -
            router.get('/fanfou/user_timeline/:uid', lazyloadRouteHandler('./routes/fanfou/ 
     | 
| 
       2242 
     | 
    
         
            -
            router.get('/fanfou/home_timeline', lazyloadRouteHandler('./routes/fanfou/ 
     | 
| 
      
 926 
     | 
    
         
            +
            router.get('/fanfou/user_timeline/:uid', lazyloadRouteHandler('./routes/fanfou/user-timeline'));
         
     | 
| 
      
 927 
     | 
    
         
            +
            router.get('/fanfou/home_timeline', lazyloadRouteHandler('./routes/fanfou/home-timeline'));
         
     | 
| 
       2243 
928 
     | 
    
         
             
            router.get('/fanfou/favorites/:uid', lazyloadRouteHandler('./routes/fanfou/favorites'));
         
     | 
| 
       2244 
929 
     | 
    
         
             
            router.get('/fanfou/trends', lazyloadRouteHandler('./routes/fanfou/trends'));
         
     | 
| 
       2245 
     | 
    
         
            -
            router.get('/fanfou/public_timeline/:keyword', lazyloadRouteHandler('./routes/fanfou/ 
     | 
| 
       2246 
     | 
    
         
            -
             
     | 
| 
       2247 
     | 
    
         
            -
            // ITSlide
         
     | 
| 
       2248 
     | 
    
         
            -
            router.get('/itslide/new', lazyloadRouteHandler('./routes/itslide/new'));
         
     | 
| 
      
 930 
     | 
    
         
            +
            router.get('/fanfou/public_timeline/:keyword', lazyloadRouteHandler('./routes/fanfou/public-timeline'));
         
     | 
| 
       2249 
931 
     | 
    
         | 
| 
       2250 
932 
     | 
    
         
             
            // Remote Work
         
     | 
| 
       2251 
933 
     | 
    
         
             
            router.get('/remote-work/:caty?', lazyloadRouteHandler('./routes/remote-work/index'));
         
     | 
| 
       2252 
934 
     | 
    
         | 
| 
       2253 
     | 
    
         
            -
            // China Times
         
     | 
| 
       2254 
     | 
    
         
            -
            router.get('/chinatimes/:caty', lazyloadRouteHandler('./routes/chinatimes/index'));
         
     | 
| 
       2255 
     | 
    
         
            -
             
     | 
| 
       2256 
     | 
    
         
            -
            // TransferWise
         
     | 
| 
       2257 
     | 
    
         
            -
            // router.get('/transferwise/pair/:source/:target', lazyloadRouteHandler('./routes/transferwise/pair'));
         
     | 
| 
       2258 
     | 
    
         
            -
             
     | 
| 
       2259 
935 
     | 
    
         
             
            // chocolatey
         
     | 
| 
       2260 
936 
     | 
    
         
             
            router.get('/chocolatey/software/:name?', lazyloadRouteHandler('./routes/chocolatey/software'));
         
     | 
| 
       2261 
937 
     | 
    
         | 
| 
       2262 
     | 
    
         
            -
            // Nyaa migrated to v2
         
     | 
| 
       2263 
     | 
    
         
            -
            // router.get('/nyaa/search/:query?', lazyloadRouteHandler('./routes/nyaa/search'));
         
     | 
| 
       2264 
     | 
    
         
            -
             
     | 
| 
       2265 
     | 
    
         
            -
            // 片源网 migrated to v2
         
     | 
| 
       2266 
     | 
    
         
            -
            // router.get('/pianyuan/index/:media?', lazyloadRouteHandler('./routes/pianyuan/app'));
         
     | 
| 
       2267 
     | 
    
         
            -
            // router.get('/pianyuan/indexers/pianyuan/results/search/api', lazyloadRouteHandler('./routes/pianyuan/search'));
         
     | 
| 
       2268 
     | 
    
         
            -
             
     | 
| 
       2269 
938 
     | 
    
         
             
            // 巴哈姆特
         
     | 
| 
       2270 
939 
     | 
    
         
             
            router.get('/bahamut/creation/:author/:category?', lazyloadRouteHandler('./routes/bahamut/creation'));
         
     | 
| 
       2271 
     | 
    
         
            -
            router.get('/bahamut/creation_index/:category?/:subcategory?/:type?', lazyloadRouteHandler('./routes/bahamut/ 
     | 
| 
      
 940 
     | 
    
         
            +
            router.get('/bahamut/creation_index/:category?/:subcategory?/:type?', lazyloadRouteHandler('./routes/bahamut/creation-index'));
         
     | 
| 
       2272 
941 
     | 
    
         | 
| 
       2273 
942 
     | 
    
         
             
            // CentBrowser
         
     | 
| 
       2274 
943 
     | 
    
         
             
            router.get('/centbrowser/history', lazyloadRouteHandler('./routes/centbrowser/history'));
         
     | 
| 
         @@ -2276,19 +945,6 @@ router.get('/centbrowser/history', lazyloadRouteHandler('./routes/centbrowser/hi 
     | 
|
| 
       2276 
945 
     | 
    
         
             
            // 755
         
     | 
| 
       2277 
946 
     | 
    
         
             
            router.get('/755/user/:username', lazyloadRouteHandler('./routes/755/user'));
         
     | 
| 
       2278 
947 
     | 
    
         | 
| 
       2279 
     | 
    
         
            -
            // IKEA
         
     | 
| 
       2280 
     | 
    
         
            -
            // router.get('/ikea/uk/new', lazyloadRouteHandler('./routes/ikea/uk/new'));
         
     | 
| 
       2281 
     | 
    
         
            -
            // router.get('/ikea/uk/offer', lazyloadRouteHandler('./routes/ikea/uk/offer'));
         
     | 
| 
       2282 
     | 
    
         
            -
             
     | 
| 
       2283 
     | 
    
         
            -
            // Mastodon
         
     | 
| 
       2284 
     | 
    
         
            -
            router.get('/mastodon/timeline/:site/:only_media?', lazyloadRouteHandler('./routes/mastodon/timeline_local'));
         
     | 
| 
       2285 
     | 
    
         
            -
            router.get('/mastodon/remote/:site/:only_media?', lazyloadRouteHandler('./routes/mastodon/timeline_remote'));
         
     | 
| 
       2286 
     | 
    
         
            -
            router.get('/mastodon/account_id/:site/:account_id/statuses/:only_media?', lazyloadRouteHandler('./routes/mastodon/account_id'));
         
     | 
| 
       2287 
     | 
    
         
            -
            router.get('/mastodon/acct/:acct/statuses/:only_media?', lazyloadRouteHandler('./routes/mastodon/acct'));
         
     | 
| 
       2288 
     | 
    
         
            -
             
     | 
| 
       2289 
     | 
    
         
            -
            // Kernel Aliyun
         
     | 
| 
       2290 
     | 
    
         
            -
            router.get('/aliyun-kernel/index', lazyloadRouteHandler('./routes/aliyun-kernel/index'));
         
     | 
| 
       2291 
     | 
    
         
            -
             
     | 
| 
       2292 
948 
     | 
    
         
             
            // Vulture
         
     | 
| 
       2293 
949 
     | 
    
         
             
            router.get('/vulture/:tag/:excludetags?', lazyloadRouteHandler('./routes/vulture/index'));
         
     | 
| 
       2294 
950 
     | 
    
         | 
| 
         @@ -2296,33 +952,17 @@ router.get('/vulture/:tag/:excludetags?', lazyloadRouteHandler('./routes/vulture 
     | 
|
| 
       2296 
952 
     | 
    
         
             
            router.get('/xinwenlianbo/index', lazyloadRouteHandler('./routes/xinwenlianbo/index'));
         
     | 
| 
       2297 
953 
     | 
    
         | 
| 
       2298 
954 
     | 
    
         
             
            // Paul Graham - Essays
         
     | 
| 
       2299 
     | 
    
         
            -
            router.get('/blogs/paulgraham', lazyloadRouteHandler('./routes/blogs/paulgraham'));
         
     | 
| 
      
 955 
     | 
    
         
            +
            // router.get('/blogs/paulgraham', lazyloadRouteHandler('./routes/blogs/paulgraham'));
         
     | 
| 
       2300 
956 
     | 
    
         | 
| 
       2301 
957 
     | 
    
         
             
            // invisionapp
         
     | 
| 
       2302 
958 
     | 
    
         
             
            router.get('/invisionapp/inside-design', lazyloadRouteHandler('./routes/invisionapp/inside-design'));
         
     | 
| 
       2303 
959 
     | 
    
         | 
| 
       2304 
     | 
    
         
            -
            // mlog.club
         
     | 
| 
       2305 
     | 
    
         
            -
            router.get('/mlog-club/topics/:node', lazyloadRouteHandler('./routes/mlog-club/topics'));
         
     | 
| 
       2306 
     | 
    
         
            -
            router.get('/mlog-club/projects', lazyloadRouteHandler('./routes/mlog-club/projects'));
         
     | 
| 
       2307 
     | 
    
         
            -
             
     | 
| 
       2308 
     | 
    
         
            -
            // Chrome 网上应用店
         
     | 
| 
       2309 
     | 
    
         
            -
            router.get('/chrome/webstore/extensions/:id', lazyloadRouteHandler('./routes/chrome/extensions'));
         
     | 
| 
       2310 
     | 
    
         
            -
             
     | 
| 
       2311 
960 
     | 
    
         
             
            // RTHK
         
     | 
| 
       2312 
961 
     | 
    
         
             
            router.get('/rthk-news/:lang/:category', lazyloadRouteHandler('./routes/rthk-news/index'));
         
     | 
| 
       2313 
962 
     | 
    
         | 
| 
       2314 
     | 
    
         
            -
            // yahoo
         
     | 
| 
       2315 
     | 
    
         
            -
            // router.get('/yahoo-news/:region/:category?', lazyloadRouteHandler('./routes/yahoo-news/index'));
         
     | 
| 
       2316 
     | 
    
         
            -
             
     | 
| 
       2317 
     | 
    
         
            -
            // Yahoo!テレビ
         
     | 
| 
       2318 
     | 
    
         
            -
            router.get('/yahoo-jp-tv/:query', lazyloadRouteHandler('./routes/yahoo-jp-tv/index'));
         
     | 
| 
       2319 
     | 
    
         
            -
             
     | 
| 
       2320 
963 
     | 
    
         
             
            // Yahoo! by Author
         
     | 
| 
       2321 
964 
     | 
    
         
             
            router.get('/yahoo-author/:author', lazyloadRouteHandler('./routes/yahoo-author/index'));
         
     | 
| 
       2322 
965 
     | 
    
         | 
| 
       2323 
     | 
    
         
            -
            // 白鲸出海
         
     | 
| 
       2324 
     | 
    
         
            -
            // router.get('/baijing', lazyloadRouteHandler('./routes/baijing'));
         
     | 
| 
       2325 
     | 
    
         
            -
             
     | 
| 
       2326 
966 
     | 
    
         
             
            // 低端影视
         
     | 
| 
       2327 
967 
     | 
    
         
             
            router.get('/ddrk/update/:name/:season?', lazyloadRouteHandler('./routes/ddrk/index'));
         
     | 
| 
       2328 
968 
     | 
    
         
             
            router.get('/ddrk/tag/:tag', lazyloadRouteHandler('./routes/ddrk/list'));
         
     | 
| 
         @@ -2333,94 +973,36 @@ router.get('/ddrk/index', lazyloadRouteHandler('./routes/ddrk/list')); 
     | 
|
| 
       2333 
973 
     | 
    
         
             
            router.get('/avgle/videos/:order?/:time?/:top?', lazyloadRouteHandler('./routes/avgle/videos.js'));
         
     | 
| 
       2334 
974 
     | 
    
         
             
            router.get('/avgle/search/:keyword/:order?/:time?/:top?', lazyloadRouteHandler('./routes/avgle/videos.js'));
         
     | 
| 
       2335 
975 
     | 
    
         | 
| 
       2336 
     | 
    
         
            -
            // 公主链接公告
         
     | 
| 
       2337 
     | 
    
         
            -
            router.get('/pcr/news', lazyloadRouteHandler('./routes/pcr/news'));
         
     | 
| 
       2338 
     | 
    
         
            -
            router.get('/pcr/news-tw', lazyloadRouteHandler('./routes/pcr/news-tw'));
         
     | 
| 
       2339 
     | 
    
         
            -
            router.get('/pcr/news-cn', lazyloadRouteHandler('./routes/pcr/news-cn'));
         
     | 
| 
       2340 
     | 
    
         
            -
             
     | 
| 
       2341 
976 
     | 
    
         
             
            // project-zero issues
         
     | 
| 
       2342 
977 
     | 
    
         
             
            router.get('/project-zero-issues', lazyloadRouteHandler('./routes/project-zero-issues/index'));
         
     | 
| 
       2343 
978 
     | 
    
         | 
| 
       2344 
     | 
    
         
            -
            // 平安银河实验室
         
     | 
| 
       2345 
     | 
    
         
            -
            router.get('/galaxylab', lazyloadRouteHandler('./routes/galaxylab/index'));
         
     | 
| 
       2346 
     | 
    
         
            -
             
     | 
| 
       2347 
     | 
    
         
            -
            // NOSEC 安全讯息平台
         
     | 
| 
       2348 
     | 
    
         
            -
            router.get('/nosec/:keykind?', lazyloadRouteHandler('./routes/nosec/index'));
         
     | 
| 
       2349 
     | 
    
         
            -
             
     | 
| 
       2350 
     | 
    
         
            -
            // Hex-Rays News migrated to v2
         
     | 
| 
       2351 
     | 
    
         
            -
            // router.get('/hex-rays/news', lazyloadRouteHandler('./routes/hex-rays/index'));
         
     | 
| 
       2352 
     | 
    
         
            -
             
     | 
| 
       2353 
     | 
    
         
            -
            // 新趣集
         
     | 
| 
       2354 
     | 
    
         
            -
            router.get('/xinquji/today', lazyloadRouteHandler('./routes/xinquji/today'));
         
     | 
| 
       2355 
     | 
    
         
            -
            router.get('/xinquji/today/internal', lazyloadRouteHandler('./routes/xinquji/internal'));
         
     | 
| 
       2356 
     | 
    
         
            -
             
     | 
| 
       2357 
     | 
    
         
            -
            // 英中协会
         
     | 
| 
       2358 
     | 
    
         
            -
            router.get('/gbcc/trust', lazyloadRouteHandler('./routes/gbcc/trust'));
         
     | 
| 
       2359 
     | 
    
         
            -
             
     | 
| 
       2360 
     | 
    
         
            -
            // Associated Press
         
     | 
| 
       2361 
     | 
    
         
            -
            // router.get('/apnews/topics/:topic', lazyloadRouteHandler('./routes/apnews/topics'));
         
     | 
| 
      
 979 
     | 
    
         
            +
            // 平安银河实验室
         
     | 
| 
      
 980 
     | 
    
         
            +
            router.get('/galaxylab', lazyloadRouteHandler('./routes/galaxylab/index'));
         
     | 
| 
       2362 
981 
     | 
    
         | 
| 
       2363 
     | 
    
         
            -
            //  
     | 
| 
       2364 
     | 
    
         
            -
            router.get('/ 
     | 
| 
      
 982 
     | 
    
         
            +
            // NOSEC 安全讯息平台
         
     | 
| 
      
 983 
     | 
    
         
            +
            // router.get('/nosec/:keykind?', lazyloadRouteHandler('./routes/nosec/index'));
         
     | 
| 
       2365 
984 
     | 
    
         | 
| 
       2366 
985 
     | 
    
         
             
            // discuz
         
     | 
| 
       2367 
     | 
    
         
            -
            router.get('/discuz/:ver([7|x])/:cid([0-9]{2})/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
         
     | 
| 
       2368 
     | 
    
         
            -
            router.get('/discuz/:ver([7|x])/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
         
     | 
| 
       2369 
     | 
    
         
            -
            router.get('/discuz/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
         
     | 
| 
       2370 
     | 
    
         
            -
             
     | 
| 
       2371 
     | 
    
         
            -
            // China Dialogue 中外对话
         
     | 
| 
       2372 
     | 
    
         
            -
            router.get('/chinadialogue/topics/:topic', lazyloadRouteHandler('./routes/chinadialogue/topics'));
         
     | 
| 
       2373 
     | 
    
         
            -
            router.get('/chinadialogue/:column', lazyloadRouteHandler('./routes/chinadialogue/column'));
         
     | 
| 
      
 986 
     | 
    
         
            +
            // router.get('/discuz/:ver([7|x])/:cid([0-9]{2})/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
         
     | 
| 
      
 987 
     | 
    
         
            +
            // router.get('/discuz/:ver([7|x])/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
         
     | 
| 
      
 988 
     | 
    
         
            +
            // router.get('/discuz/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
         
     | 
| 
       2374 
989 
     | 
    
         | 
| 
       2375 
990 
     | 
    
         
             
            // 人民日报社 国际金融报
         
     | 
| 
       2376 
991 
     | 
    
         
             
            router.get('/ifnews/:cid', lazyloadRouteHandler('./routes/ifnews/column'));
         
     | 
| 
       2377 
992 
     | 
    
         | 
| 
       2378 
     | 
    
         
            -
            // Scala Blog
         
     | 
| 
       2379 
     | 
    
         
            -
            router.get('/scala/blog/:part?', lazyloadRouteHandler('./routes/scala-blog/scala-blog'));
         
     | 
| 
       2380 
     | 
    
         
            -
             
     | 
| 
       2381 
     | 
    
         
            -
            // Minecraft Java版游戏更新
         
     | 
| 
       2382 
     | 
    
         
            -
            // router.get('/minecraft/version', lazyloadRouteHandler('./routes/minecraft/version'));
         
     | 
| 
       2383 
     | 
    
         
            -
             
     | 
| 
       2384 
993 
     | 
    
         
             
            // 微信更新日志
         
     | 
| 
       2385 
994 
     | 
    
         
             
            router.get('/weixin/miniprogram/release', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/framework')); // 基础库更新日志
         
     | 
| 
       2386 
995 
     | 
    
         
             
            router.get('/weixin/miniprogram/framework', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/framework')); // 基础库更新日志
         
     | 
| 
       2387 
996 
     | 
    
         
             
            router.get('/weixin/miniprogram/devtools', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/devtools')); // 开发者工具更新日志
         
     | 
| 
       2388 
997 
     | 
    
         
             
            router.get('/weixin/miniprogram/wxcloud/:caty?', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/wxcloud')); // 云开发更新日志
         
     | 
| 
       2389 
998 
     | 
    
         | 
| 
       2390 
     | 
    
         
            -
            // 新冠肺炎疫情动态
         
     | 
| 
       2391 
     | 
    
         
            -
            router.get('/coronavirus/caixin', lazyloadRouteHandler('./routes/coronavirus/caixin'));
         
     | 
| 
       2392 
     | 
    
         
            -
            router.get('/coronavirus/dxy/data/:province?/:city?', lazyloadRouteHandler('./routes/coronavirus/dxy-data'));
         
     | 
| 
       2393 
     | 
    
         
            -
            router.get('/coronavirus/dxy', lazyloadRouteHandler('./routes/coronavirus/dxy'));
         
     | 
| 
       2394 
     | 
    
         
            -
            router.get('/coronavirus/scmp', lazyloadRouteHandler('./routes/coronavirus/scmp'));
         
     | 
| 
       2395 
     | 
    
         
            -
            router.get('/coronavirus/nhc', lazyloadRouteHandler('./routes/coronavirus/nhc'));
         
     | 
| 
       2396 
     | 
    
         
            -
            router.get('/coronavirus/mogov-2019ncov/:lang', lazyloadRouteHandler('./routes/coronavirus/mogov-2019ncov'));
         
     | 
| 
       2397 
     | 
    
         
            -
            router.get('/coronavirus/qq/fact', lazyloadRouteHandler('./routes/tencent/factcheck'));
         
     | 
| 
       2398 
     | 
    
         
            -
            router.get('/coronavirus/sg-moh', lazyloadRouteHandler('./routes/coronavirus/sg-moh'));
         
     | 
| 
       2399 
     | 
    
         
            -
            router.get('/coronavirus/yahoo-japan/:tdfk?', lazyloadRouteHandler('./routes/coronavirus/yahoo-japan'));
         
     | 
| 
       2400 
     | 
    
         
            -
             
     | 
| 
       2401 
999 
     | 
    
         
             
            // 南京林业大学教务处
         
     | 
| 
       2402 
1000 
     | 
    
         
             
            router.get('/njfu/jwc/:category?', lazyloadRouteHandler('./routes/universities/njfu/jwc'));
         
     | 
| 
       2403 
1001 
     | 
    
         | 
| 
       2404 
     | 
    
         
            -
            // 日本経済新聞
         
     | 
| 
       2405 
     | 
    
         
            -
            // router.get('/nikkei/index', lazyloadRouteHandler('./routes/nikkei/index'));
         
     | 
| 
       2406 
     | 
    
         
            -
            // router.get('/nikkei/:category/:article_type?', lazyloadRouteHandler('./routes/nikkei/news'));
         
     | 
| 
       2407 
     | 
    
         
            -
             
     | 
| 
       2408 
     | 
    
         
            -
            // MQube
         
     | 
| 
       2409 
     | 
    
         
            -
            router.get('/mqube/user/:user', lazyloadRouteHandler('./routes/mqube/user'));
         
     | 
| 
       2410 
     | 
    
         
            -
            router.get('/mqube/tag/:tag', lazyloadRouteHandler('./routes/mqube/tag'));
         
     | 
| 
       2411 
     | 
    
         
            -
            router.get('/mqube/latest', lazyloadRouteHandler('./routes/mqube/latest'));
         
     | 
| 
       2412 
     | 
    
         
            -
            router.get('/mqube/top', lazyloadRouteHandler('./routes/mqube/top'));
         
     | 
| 
       2413 
     | 
    
         
            -
             
     | 
| 
       2414 
1002 
     | 
    
         
             
            // Letterboxd
         
     | 
| 
       2415 
1003 
     | 
    
         
             
            router.get('/letterboxd/user/diary/:username', lazyloadRouteHandler('./routes/letterboxd/userdiary'));
         
     | 
| 
       2416 
1004 
     | 
    
         
             
            router.get('/letterboxd/user/followingdiary/:username', lazyloadRouteHandler('./routes/letterboxd/followingdiary'));
         
     | 
| 
       2417 
1005 
     | 
    
         | 
| 
       2418 
     | 
    
         
            -
            // javlibrary
         
     | 
| 
       2419 
     | 
    
         
            -
            // router.get('/javlibrary/users/:uid/:utype', lazyloadRouteHandler('./routes/javlibrary/users'));
         
     | 
| 
       2420 
     | 
    
         
            -
            // router.get('/javlibrary/videos/:vtype', lazyloadRouteHandler('./routes/javlibrary/videos'));
         
     | 
| 
       2421 
     | 
    
         
            -
            // router.get('/javlibrary/stars/:sid', lazyloadRouteHandler('./routes/javlibrary/stars'));
         
     | 
| 
       2422 
     | 
    
         
            -
            // router.get('/javlibrary/bestreviews', lazyloadRouteHandler('./routes/javlibrary/bestreviews'));
         
     | 
| 
       2423 
     | 
    
         
            -
             
     | 
| 
       2424 
1006 
     | 
    
         
             
            // Last.FM
         
     | 
| 
       2425 
1007 
     | 
    
         
             
            router.get('/lastfm/recent/:user', lazyloadRouteHandler('./routes/lastfm/recent'));
         
     | 
| 
       2426 
1008 
     | 
    
         
             
            router.get('/lastfm/loved/:user', lazyloadRouteHandler('./routes/lastfm/loved'));
         
     | 
| 
         @@ -2430,17 +1012,6 @@ router.get('/lastfm/top/:country?', lazyloadRouteHandler('./routes/lastfm/top')) 
     | 
|
| 
       2430 
1012 
     | 
    
         
             
            router.get('/piapro/user/:pid', lazyloadRouteHandler('./routes/piapro/user'));
         
     | 
| 
       2431 
1013 
     | 
    
         
             
            router.get('/piapro/public/:type/:tag?/:category?', lazyloadRouteHandler('./routes/piapro/public'));
         
     | 
| 
       2432 
1014 
     | 
    
         | 
| 
       2433 
     | 
    
         
            -
            // 凤凰网 migrated to v2
         
     | 
| 
       2434 
     | 
    
         
            -
            // router.get('/ifeng/feng/:id/:type', lazyloadRouteHandler('./routes/ifeng/feng'));
         
     | 
| 
       2435 
     | 
    
         
            -
             
     | 
| 
       2436 
     | 
    
         
            -
            // 第一版主
         
     | 
| 
       2437 
     | 
    
         
            -
            router.get('/novel/d1bz/:category/:id', lazyloadRouteHandler('./routes/d1bz/novel'));
         
     | 
| 
       2438 
     | 
    
         
            -
             
     | 
| 
       2439 
     | 
    
         
            -
            // 爱下电子书
         
     | 
| 
       2440 
     | 
    
         
            -
            router.get('/axdzs/:novel', lazyloadRouteHandler('./routes/novel/axdzs'));
         
     | 
| 
       2441 
     | 
    
         
            -
            // deprecated
         
     | 
| 
       2442 
     | 
    
         
            -
            router.get('/axdzs/:id1/:id2', lazyloadRouteHandler('./routes/novel/axdzs'));
         
     | 
| 
       2443 
     | 
    
         
            -
             
     | 
| 
       2444 
1015 
     | 
    
         
             
            // HackerOne
         
     | 
| 
       2445 
1016 
     | 
    
         
             
            router.get('/hackerone/hacktivity', lazyloadRouteHandler('./routes/hackerone/hacktivity'));
         
     | 
| 
       2446 
1017 
     | 
    
         
             
            router.get('/hackerone/search/:search', lazyloadRouteHandler('./routes/hackerone/search'));
         
     | 
| 
         @@ -2448,62 +1019,21 @@ router.get('/hackerone/search/:search', lazyloadRouteHandler('./routes/hackerone 
     | 
|
| 
       2448 
1019 
     | 
    
         
             
            // 奶牛关
         
     | 
| 
       2449 
1020 
     | 
    
         
             
            router.get('/cowlevel/element/:id', lazyloadRouteHandler('./routes/cowlevel/element'));
         
     | 
| 
       2450 
1021 
     | 
    
         | 
| 
       2451 
     | 
    
         
            -
            // 2048
         
     | 
| 
       2452 
     | 
    
         
            -
            // router.get('/2048/bbs/:fid', lazyloadRouteHandler('./routes/2048/bbs'));
         
     | 
| 
       2453 
     | 
    
         
            -
             
     | 
| 
       2454 
     | 
    
         
            -
            // Google News
         
     | 
| 
       2455 
     | 
    
         
            -
            // router.get('/google/news/:category/:locale', lazyloadRouteHandler('./routes/google/news'));
         
     | 
| 
       2456 
     | 
    
         
            -
             
     | 
| 
       2457 
1022 
     | 
    
         
             
            // 虛詞
         
     | 
| 
       2458 
1023 
     | 
    
         
             
            router.get('/p-articles/section/:section', lazyloadRouteHandler('./routes/p-articles/section'));
         
     | 
| 
       2459 
1024 
     | 
    
         
             
            router.get('/p-articles/contributors/:author', lazyloadRouteHandler('./routes/p-articles/contributors'));
         
     | 
| 
       2460 
1025 
     | 
    
         | 
| 
       2461 
     | 
    
         
            -
            // finviz
         
     | 
| 
       2462 
     | 
    
         
            -
             
     | 
| 
       2463 
     | 
    
         
            -
            // router.get('/finviz/news/:ticker', lazyloadRouteHandler('./routes/finviz/news'));
         
     | 
| 
       2464 
     | 
    
         
            -
             
     | 
| 
       2465 
1026 
     | 
    
         
             
            // 好好住
         
     | 
| 
       2466 
1027 
     | 
    
         
             
            router.get('/haohaozhu/whole-house/:keyword?', lazyloadRouteHandler('./routes/haohaozhu/whole-house'));
         
     | 
| 
       2467 
1028 
     | 
    
         
             
            router.get('/haohaozhu/discover/:keyword?', lazyloadRouteHandler('./routes/haohaozhu/discover'));
         
     | 
| 
       2468 
1029 
     | 
    
         | 
| 
       2469 
     | 
    
         
            -
            // 东北大学
         
     | 
| 
       2470 
     | 
    
         
            -
            // router.get('/neu/news/:type', lazyloadRouteHandler('./routes/universities/neu/news'));
         
     | 
| 
       2471 
     | 
    
         
            -
             
     | 
| 
       2472 
     | 
    
         
            -
            // 快递100
         
     | 
| 
       2473 
     | 
    
         
            -
            // router.get('/kuaidi100/track/:number/:id/:phone?', lazyloadRouteHandler('./routes/kuaidi100/index'));
         
     | 
| 
       2474 
     | 
    
         
            -
            // router.get('/kuaidi100/company', lazyloadRouteHandler('./routes/kuaidi100/supported_company'));
         
     | 
| 
       2475 
     | 
    
         
            -
             
     | 
| 
       2476 
     | 
    
         
            -
            // 稻草人书屋
         
     | 
| 
       2477 
     | 
    
         
            -
            router.get('/dcrsw/:name/:count?', lazyloadRouteHandler('./routes/novel/dcrsw'));
         
     | 
| 
       2478 
     | 
    
         
            -
             
     | 
| 
       2479 
1030 
     | 
    
         
             
            // 魔法纪录
         
     | 
| 
       2480 
1031 
     | 
    
         
             
            router.get('/magireco/announcements', lazyloadRouteHandler('./routes/magireco/announcements'));
         
     | 
| 
       2481 
     | 
    
         
            -
            router.get('/magireco/event_banner', lazyloadRouteHandler('./routes/magireco/ 
     | 
| 
       2482 
     | 
    
         
            -
             
     | 
| 
       2483 
     | 
    
         
            -
            // wolley
         
     | 
| 
       2484 
     | 
    
         
            -
            router.get('/wolley', lazyloadRouteHandler('./routes/wolley/index'));
         
     | 
| 
       2485 
     | 
    
         
            -
            router.get('/wolley/user/:id', lazyloadRouteHandler('./routes/wolley/user'));
         
     | 
| 
       2486 
     | 
    
         
            -
            router.get('/wolley/host/:host', lazyloadRouteHandler('./routes/wolley/host'));
         
     | 
| 
       2487 
     | 
    
         
            -
             
     | 
| 
       2488 
     | 
    
         
            -
            // 西安交大
         
     | 
| 
       2489 
     | 
    
         
            -
            // router.get('/xjtu/gs/tzgg', lazyloadRouteHandler('./routes/universities/xjtu/gs/tzgg'));
         
     | 
| 
       2490 
     | 
    
         
            -
            // router.get('/xjtu/dean/:subpath+', lazyloadRouteHandler('./routes/universities/xjtu/dean'));
         
     | 
| 
       2491 
     | 
    
         
            -
            // router.get('/xjtu/international/:subpath+', lazyloadRouteHandler('./routes/universities/xjtu/international'));
         
     | 
| 
       2492 
     | 
    
         
            -
            // router.get('/xjtu/job/:subpath?', lazyloadRouteHandler('./routes/universities/xjtu/job'));
         
     | 
| 
       2493 
     | 
    
         
            -
            // router.get('/xjtu/ee/:id?', lazyloadRouteHandler('./routes/universities/xjtu/ee'));
         
     | 
| 
       2494 
     | 
    
         
            -
             
     | 
| 
       2495 
     | 
    
         
            -
            // booksource
         
     | 
| 
       2496 
     | 
    
         
            -
            router.get('/booksource', lazyloadRouteHandler('./routes/booksource/index'));
         
     | 
| 
       2497 
     | 
    
         
            -
             
     | 
| 
       2498 
     | 
    
         
            -
            // ku
         
     | 
| 
       2499 
     | 
    
         
            -
            router.get('/ku/:name?', lazyloadRouteHandler('./routes/ku/index'));
         
     | 
| 
      
 1032 
     | 
    
         
            +
            router.get('/magireco/event_banner', lazyloadRouteHandler('./routes/magireco/event-banner'));
         
     | 
| 
       2500 
1033 
     | 
    
         | 
| 
       2501 
1034 
     | 
    
         
             
            // 我有一片芝麻地
         
     | 
| 
       2502 
1035 
     | 
    
         
             
            router.get('/blogs/hedwig/:type', lazyloadRouteHandler('./routes/blogs/hedwig'));
         
     | 
| 
       2503 
1036 
     | 
    
         | 
| 
       2504 
     | 
    
         
            -
            // LoveHeaven
         
     | 
| 
       2505 
     | 
    
         
            -
            router.get('/loveheaven/update/:slug', lazyloadRouteHandler('./routes/loveheaven/update'));
         
     | 
| 
       2506 
     | 
    
         
            -
             
     | 
| 
       2507 
1037 
     | 
    
         
             
            // 拉勾
         
     | 
| 
       2508 
1038 
     | 
    
         
             
            router.get('/lagou/jobs/:position/:city', lazyloadRouteHandler('./routes/lagou/jobs'));
         
     | 
| 
       2509 
1039 
     | 
    
         | 
| 
         @@ -2511,116 +1041,29 @@ router.get('/lagou/jobs/:position/:city', lazyloadRouteHandler('./routes/lagou/j 
     | 
|
| 
       2511 
1041 
     | 
    
         
             
            router.get('/yzu/home/:type', lazyloadRouteHandler('./routes/universities/yzu/home'));
         
     | 
| 
       2512 
1042 
     | 
    
         
             
            router.get('/yzu/yjszs/:type', lazyloadRouteHandler('./routes/universities/yzu/yjszs'));
         
     | 
| 
       2513 
1043 
     | 
    
         | 
| 
       2514 
     | 
    
         
            -
            // 德国新闻社卫健新闻
         
     | 
| 
       2515 
     | 
    
         
            -
            router.get('/krankenkassen', lazyloadRouteHandler('./routes/krankenkassen'));
         
     | 
| 
       2516 
     | 
    
         
            -
             
     | 
| 
       2517 
1044 
     | 
    
         
             
            // 桂林航天工业学院
         
     | 
| 
       2518 
1045 
     | 
    
         
             
            router.get('/guat/news/:type?', lazyloadRouteHandler('./routes/guat/news'));
         
     | 
| 
       2519 
1046 
     | 
    
         | 
| 
       2520 
     | 
    
         
            -
            // NEEA
         
     | 
| 
       2521 
     | 
    
         
            -
            // router.get('/neea/:type', lazyloadRouteHandler('./routes/neea'));
         
     | 
| 
       2522 
     | 
    
         
            -
             
     | 
| 
       2523 
     | 
    
         
            -
            // 中国农业大学
         
     | 
| 
       2524 
     | 
    
         
            -
            // router.get('/cauyjs', lazyloadRouteHandler('./routes/universities/cauyjs/cauyjs'));
         
     | 
| 
       2525 
     | 
    
         
            -
             
     | 
| 
       2526 
     | 
    
         
            -
            // 南方科技大学
         
     | 
| 
       2527 
     | 
    
         
            -
            // router.get('/sustyjs', lazyloadRouteHandler('./routes/universities/sustyjs/sustyjs'));
         
     | 
| 
       2528 
     | 
    
         
            -
            // router.get('/sustech/newshub-zh', lazyloadRouteHandler('./routes/universities/sustech/newshub-zh'));
         
     | 
| 
       2529 
     | 
    
         
            -
            // router.get('/sustech/bidding', lazyloadRouteHandler('./routes/universities/sustech/bidding'));
         
     | 
| 
       2530 
     | 
    
         
            -
             
     | 
| 
       2531 
1047 
     | 
    
         
             
            // 广州航海学院
         
     | 
| 
       2532 
1048 
     | 
    
         
             
            router.get('/gzmtu/jwc', lazyloadRouteHandler('./routes/universities/gzmtu/jwc'));
         
     | 
| 
       2533 
1049 
     | 
    
         
             
            router.get('/gzmtu/tsg', lazyloadRouteHandler('./routes/universities/gzmtu/tsg'));
         
     | 
| 
       2534 
1050 
     | 
    
         | 
| 
       2535 
     | 
    
         
            -
            // 广州大学
         
     | 
| 
       2536 
     | 
    
         
            -
            // router.get('/gzyjs', lazyloadRouteHandler('./routes/universities/gzyjs/gzyjs'));
         
     | 
| 
       2537 
     | 
    
         
            -
             
     | 
| 
       2538 
1051 
     | 
    
         
             
            // 暨南大学
         
     | 
| 
       2539 
1052 
     | 
    
         
             
            router.get('/jnu/xysx/:type', lazyloadRouteHandler('./routes/universities/jnu/xysx/index'));
         
     | 
| 
       2540 
1053 
     | 
    
         
             
            router.get('/jnu/yw/:type?', lazyloadRouteHandler('./routes/universities/jnu/yw/index'));
         
     | 
| 
       2541 
1054 
     | 
    
         | 
| 
       2542 
     | 
    
         
            -
            // 深圳大学
         
     | 
| 
       2543 
     | 
    
         
            -
            // router.get('/szuyjs', lazyloadRouteHandler('./routes/universities/szuyjs/szuyjs'));
         
     | 
| 
       2544 
     | 
    
         
            -
             
     | 
| 
       2545 
     | 
    
         
            -
            // 中国传媒大学
         
     | 
| 
       2546 
     | 
    
         
            -
            // router.get('/cucyjs', lazyloadRouteHandler('./routes/universities/cucyjs/cucyjs'));
         
     | 
| 
       2547 
     | 
    
         
            -
             
     | 
| 
       2548 
     | 
    
         
            -
            // 中国农业大学信电学院
         
     | 
| 
       2549 
     | 
    
         
            -
            // router.get('/cauele', lazyloadRouteHandler('./routes/universities/cauyjs/cauyjs'));
         
     | 
| 
       2550 
     | 
    
         
            -
             
     | 
| 
       2551 
1055 
     | 
    
         
             
            // moxingfans
         
     | 
| 
       2552 
1056 
     | 
    
         
             
            router.get('/moxingfans', lazyloadRouteHandler('./routes/moxingfans'));
         
     | 
| 
       2553 
1057 
     | 
    
         | 
| 
       2554 
1058 
     | 
    
         
             
            // Chiphell
         
     | 
| 
       2555 
1059 
     | 
    
         
             
            router.get('/chiphell/forum/:forumId?', lazyloadRouteHandler('./routes/chiphell/forum'));
         
     | 
| 
       2556 
1060 
     | 
    
         | 
| 
       2557 
     | 
    
         
            -
            // 华东理工大学研究生院
         
     | 
| 
       2558 
     | 
    
         
            -
            // router.get('/ecustyjs', lazyloadRouteHandler('./routes/universities/ecustyjs/ecustyjs'));
         
     | 
| 
       2559 
     | 
    
         
            -
             
     | 
| 
       2560 
     | 
    
         
            -
            // 同济大学研究生院
         
     | 
| 
       2561 
     | 
    
         
            -
            // router.get('/tjuyjs', lazyloadRouteHandler('./routes/universities/tjuyjs/tjuyjs'));
         
     | 
| 
       2562 
     | 
    
         
            -
             
     | 
| 
       2563 
     | 
    
         
            -
            // 中国石油大学研究生院
         
     | 
| 
       2564 
     | 
    
         
            -
            // router.get('/upcyjs', lazyloadRouteHandler('./routes/universities/upcyjs/upcyjs'));
         
     | 
| 
       2565 
     | 
    
         
            -
             
     | 
| 
       2566 
     | 
    
         
            -
            // 中国海洋大学研究生院
         
     | 
| 
       2567 
     | 
    
         
            -
            // router.get('/outyjs', lazyloadRouteHandler('./routes/universities/outyjs/outyjs'));
         
     | 
| 
       2568 
     | 
    
         
            -
             
     | 
| 
       2569 
     | 
    
         
            -
            // 中科院人工智能所
         
     | 
| 
       2570 
     | 
    
         
            -
            // router.get('/zkyai', lazyloadRouteHandler('./routes/universities/zkyai/zkyai'));
         
     | 
| 
       2571 
     | 
    
         
            -
             
     | 
| 
       2572 
     | 
    
         
            -
            // 中科院自动化所
         
     | 
| 
       2573 
     | 
    
         
            -
            // router.get('/zkyyjs', lazyloadRouteHandler('./routes/universities/zkyyjs/zkyyjs'));
         
     | 
| 
       2574 
     | 
    
         
            -
             
     | 
| 
       2575 
     | 
    
         
            -
            // 中国海洋大学信电学院
         
     | 
| 
       2576 
     | 
    
         
            -
            // router.get('/outele', lazyloadRouteHandler('./routes/universities/outele/outele'));
         
     | 
| 
       2577 
     | 
    
         
            -
             
     | 
| 
       2578 
     | 
    
         
            -
            // 华东师范大学研究生院 migrated to v2
         
     | 
| 
       2579 
     | 
    
         
            -
            // router.get('/ecnuyjs', lazyloadRouteHandler('./routes/universities/ecnuyjs/ecnuyjs'));
         
     | 
| 
       2580 
     | 
    
         
            -
             
     | 
| 
       2581 
1061 
     | 
    
         
             
            // 考研帮调剂信息
         
     | 
| 
       2582 
1062 
     | 
    
         
             
            router.get('/kaoyan', lazyloadRouteHandler('./routes/kaoyan/kaoyan'));
         
     | 
| 
       2583 
1063 
     | 
    
         | 
| 
       2584 
     | 
    
         
            -
            // 华中科技大学研究生院
         
     | 
| 
       2585 
     | 
    
         
            -
            // router.get('/hustyjs', lazyloadRouteHandler('./routes/universities/hustyjs/hustyjs'));
         
     | 
| 
       2586 
     | 
    
         
            -
             
     | 
| 
       2587 
     | 
    
         
            -
            // 华中师范大学研究生院
         
     | 
| 
       2588 
     | 
    
         
            -
            // router.get('/ccnuyjs', lazyloadRouteHandler('./routes/universities/ccnu/ccnuyjs'));
         
     | 
| 
       2589 
     | 
    
         
            -
             
     | 
| 
       2590 
     | 
    
         
            -
            // 华中师范大学计算机学院
         
     | 
| 
       2591 
     | 
    
         
            -
            // router.get('/ccnucs', lazyloadRouteHandler('./routes/universities/ccnu/ccnucs'));
         
     | 
| 
       2592 
     | 
    
         
            -
             
     | 
| 
       2593 
     | 
    
         
            -
            // 华中师范大学伍论贡学院
         
     | 
| 
       2594 
     | 
    
         
            -
            // router.get('/ccnuwu', lazyloadRouteHandler('./routes/universities/ccnu/ccnuwu'));
         
     | 
| 
       2595 
     | 
    
         
            -
             
     | 
| 
       2596 
1064 
     | 
    
         
             
            // WEEX
         
     | 
| 
       2597 
1065 
     | 
    
         
             
            router.get('/weexcn/news/:typeid', lazyloadRouteHandler('./routes/weexcn/index'));
         
     | 
| 
       2598 
1066 
     | 
    
         | 
| 
       2599 
     | 
    
         
            -
            // 天天基金 migrated to v2
         
     | 
| 
       2600 
     | 
    
         
            -
            // router.get('/eastmoney/ttjj/user/:uid', lazyloadRouteHandler('./routes/eastmoney/ttjj/user'));
         
     | 
| 
       2601 
     | 
    
         
            -
             
     | 
| 
       2602 
     | 
    
         
            -
            // 紳士漫畫
         
     | 
| 
       2603 
     | 
    
         
            -
            // router.get('/ssmh', lazyloadRouteHandler('./routes/ssmh'));
         
     | 
| 
       2604 
     | 
    
         
            -
            // router.get('/ssmh/category/:cid', lazyloadRouteHandler('./routes/ssmh/category'));
         
     | 
| 
       2605 
     | 
    
         
            -
             
     | 
| 
       2606 
     | 
    
         
            -
            // 华南师范大学研究生学院
         
     | 
| 
       2607 
     | 
    
         
            -
            // router.get('/scnuyjs', lazyloadRouteHandler('./routes/universities/scnu/scnuyjs'));
         
     | 
| 
       2608 
     | 
    
         
            -
             
     | 
| 
       2609 
     | 
    
         
            -
            // 华南师范大学软件学院
         
     | 
| 
       2610 
     | 
    
         
            -
            // router.get('/scnucs', lazyloadRouteHandler('./routes/universities/scnu/scnucs'));
         
     | 
| 
       2611 
     | 
    
         
            -
             
     | 
| 
       2612 
     | 
    
         
            -
            // 华南理工大学研究生院
         
     | 
| 
       2613 
     | 
    
         
            -
            // router.get('/scutyjs', lazyloadRouteHandler('./routes/universities/scut/scutyjs'));
         
     | 
| 
       2614 
     | 
    
         
            -
             
     | 
| 
       2615 
     | 
    
         
            -
            // 华南农业大学研究生院通知公告
         
     | 
| 
       2616 
     | 
    
         
            -
            // router.get('/scauyjs', lazyloadRouteHandler('./routes/universities/scauyjs/scauyjs'));
         
     | 
| 
       2617 
     | 
    
         
            -
             
     | 
| 
       2618 
     | 
    
         
            -
            // 北京大学研究生招生网通知公告 migrated to v2
         
     | 
| 
       2619 
     | 
    
         
            -
            // router.get('/pkuyjs', lazyloadRouteHandler('./routes/universities/pku/pkuyjs'));
         
     | 
| 
       2620 
     | 
    
         
            -
             
     | 
| 
       2621 
     | 
    
         
            -
            // 北京理工大学研究生通知公告
         
     | 
| 
       2622 
     | 
    
         
            -
            // router.get('/bityjs', lazyloadRouteHandler('./routes/universities/bit/bityjs'));
         
     | 
| 
       2623 
     | 
    
         
            -
             
     | 
| 
       2624 
1067 
     | 
    
         
             
            // 湖南科技大学教务处
         
     | 
| 
       2625 
1068 
     | 
    
         
             
            router.get('/hnust/jwc', lazyloadRouteHandler('./routes/universities/hnust/jwc/index'));
         
     | 
| 
       2626 
1069 
     | 
    
         
             
            router.get('/hnust/computer', lazyloadRouteHandler('./routes/universities/hnust/computer/index'));
         
     | 
| 
         @@ -2628,23 +1071,9 @@ router.get('/hnust/art', lazyloadRouteHandler('./routes/universities/hnust/art/i 
     | 
|
| 
       2628 
1071 
     | 
    
         
             
            router.get('/hnust/chem', lazyloadRouteHandler('./routes/universities/hnust/chem/index'));
         
     | 
| 
       2629 
1072 
     | 
    
         
             
            router.get('/hnust/graduate/:type?', lazyloadRouteHandler('./routes/universities/hnust/graduate/index'));
         
     | 
| 
       2630 
1073 
     | 
    
         | 
| 
       2631 
     | 
    
         
            -
            // AGE动漫
         
     | 
| 
       2632 
     | 
    
         
            -
            // router.get('/agefans/detail/:id', lazyloadRouteHandler('./routes/agefans/detail'));
         
     | 
| 
       2633 
     | 
    
         
            -
            // router.get('/agefans/update', lazyloadRouteHandler('./routes/agefans/update'));
         
     | 
| 
       2634 
     | 
    
         
            -
             
     | 
| 
       2635 
1074 
     | 
    
         
             
            // Checkra1n
         
     | 
| 
       2636 
1075 
     | 
    
         
             
            router.get('/checkra1n/releases', lazyloadRouteHandler('./routes/checkra1n/releases'));
         
     | 
| 
       2637 
1076 
     | 
    
         | 
| 
       2638 
     | 
    
         
            -
            // 四川省科学技术厅
         
     | 
| 
       2639 
     | 
    
         
            -
            router.get('/sckjt/news/:type?', lazyloadRouteHandler('./routes/sckjt/news'));
         
     | 
| 
       2640 
     | 
    
         
            -
             
     | 
| 
       2641 
     | 
    
         
            -
            // 绝对领域
         
     | 
| 
       2642 
     | 
    
         
            -
            router.get('/jdlingyu/:type', lazyloadRouteHandler('./routes/jdlingyu/index'));
         
     | 
| 
       2643 
     | 
    
         
            -
             
     | 
| 
       2644 
     | 
    
         
            -
            // Hi, DIYgod
         
     | 
| 
       2645 
     | 
    
         
            -
            router.get('/blogs/diygod/animal-crossing', lazyloadRouteHandler('./routes/blogs/diygod/animal-crossing'));
         
     | 
| 
       2646 
     | 
    
         
            -
            router.get('/blogs/diygod/gk', lazyloadRouteHandler('./routes/blogs/diygod/gk'));
         
     | 
| 
       2647 
     | 
    
         
            -
             
     | 
| 
       2648 
1077 
     | 
    
         
             
            // 湖北工业大学
         
     | 
| 
       2649 
1078 
     | 
    
         
             
            router.get('/hbut/news/:type', lazyloadRouteHandler('./routes/universities/hbut/news'));
         
     | 
| 
       2650 
1079 
     | 
    
         
             
            router.get('/hbut/cs/:type', lazyloadRouteHandler('./routes/universities/hbut/cs'));
         
     | 
| 
         @@ -2653,14 +1082,7 @@ router.get('/hbut/cs/:type', lazyloadRouteHandler('./routes/universities/hbut/cs 
     | 
|
| 
       2653 
1082 
     | 
    
         
             
            router.get('/acwifi', lazyloadRouteHandler('./routes/acwifi'));
         
     | 
| 
       2654 
1083 
     | 
    
         | 
| 
       2655 
1084 
     | 
    
         
             
            // MIT科技评论
         
     | 
| 
       2656 
     | 
    
         
            -
            router.get('/mittrchina/:type', lazyloadRouteHandler('./routes/mittrchina'));
         
     | 
| 
       2657 
     | 
    
         
            -
             
     | 
| 
       2658 
     | 
    
         
            -
            // iYouPort
         
     | 
| 
       2659 
     | 
    
         
            -
            router.get('/iyouport/article', lazyloadRouteHandler('./routes/iyouport'));
         
     | 
| 
       2660 
     | 
    
         
            -
            router.get('/iyouport/:category?', lazyloadRouteHandler('./routes/iyouport'));
         
     | 
| 
       2661 
     | 
    
         
            -
             
     | 
| 
       2662 
     | 
    
         
            -
            // girlimg
         
     | 
| 
       2663 
     | 
    
         
            -
            router.get('/girlimg/album/:tag?/:mode?', lazyloadRouteHandler('./routes/girlimg/album'));
         
     | 
| 
      
 1085 
     | 
    
         
            +
            // router.get('/mittrchina/:type', lazyloadRouteHandler('./routes/mittrchina'));
         
     | 
| 
       2664 
1086 
     | 
    
         | 
| 
       2665 
1087 
     | 
    
         
             
            // etoland
         
     | 
| 
       2666 
1088 
     | 
    
         
             
            router.get('/etoland/:bo_table', lazyloadRouteHandler('./routes/etoland/board'));
         
     | 
| 
         @@ -2668,15 +1090,9 @@ router.get('/etoland/:bo_table', lazyloadRouteHandler('./routes/etoland/board')) 
     | 
|
| 
       2668 
1090 
     | 
    
         
             
            // 辽宁工程技术大学教务在线公告
         
     | 
| 
       2669 
1091 
     | 
    
         
             
            router.get('/lntu/jwnews', lazyloadRouteHandler('./routes/universities/lntu/jwnews'));
         
     | 
| 
       2670 
1092 
     | 
    
         | 
| 
       2671 
     | 
    
         
            -
            // 51voa
         
     | 
| 
       2672 
     | 
    
         
            -
            router.get('/51voa/:channel', lazyloadRouteHandler('./routes/51voa/channel'));
         
     | 
| 
       2673 
     | 
    
         
            -
             
     | 
| 
       2674 
1093 
     | 
    
         
             
            // 追新番
         
     | 
| 
       2675 
     | 
    
         
            -
            router.get('/fanxinzhui', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
         
     | 
| 
       2676 
     | 
    
         
            -
            router.get('/zhuixinfan/list', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
         
     | 
| 
       2677 
     | 
    
         
            -
             
     | 
| 
       2678 
     | 
    
         
            -
            // scoresaber
         
     | 
| 
       2679 
     | 
    
         
            -
            router.get('/scoresaber/user/:id', lazyloadRouteHandler('./routes/scoresaber/user'));
         
     | 
| 
      
 1094 
     | 
    
         
            +
            // router.get('/fanxinzhui', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
         
     | 
| 
      
 1095 
     | 
    
         
            +
            // router.get('/zhuixinfan/list', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
         
     | 
| 
       2680 
1096 
     | 
    
         | 
| 
       2681 
1097 
     | 
    
         
             
            // blur-studio
         
     | 
| 
       2682 
1098 
     | 
    
         
             
            router.get('/blur-studio', lazyloadRouteHandler('./routes/blur-studio/index'));
         
     | 
| 
         @@ -2693,27 +1109,9 @@ router.get('/axis-studios/:type/:tag?', lazyloadRouteHandler('./routes/axis-stud 
     | 
|
| 
       2693 
1109 
     | 
    
         
             
            // 人民邮电出版社
         
     | 
| 
       2694 
1110 
     | 
    
         
             
            router.get('/ptpress/book/:type?', lazyloadRouteHandler('./routes/ptpress/book'));
         
     | 
| 
       2695 
1111 
     | 
    
         | 
| 
       2696 
     | 
    
         
            -
            // uniqlo styling book
         
     | 
| 
       2697 
     | 
    
         
            -
            router.get('/uniqlo/stylingbook/:category?', lazyloadRouteHandler('./routes/uniqlo/stylingbook'));
         
     | 
| 
       2698 
     | 
    
         
            -
             
     | 
| 
       2699 
     | 
    
         
            -
            // 本地宝焦点资讯
         
     | 
| 
       2700 
     | 
    
         
            -
            // router.get('/bendibao/news/:city', lazyloadRouteHandler('./routes/bendibao/news'));
         
     | 
| 
       2701 
     | 
    
         
            -
             
     | 
| 
       2702 
1112 
     | 
    
         
             
            // unit-image
         
     | 
| 
       2703 
1113 
     | 
    
         
             
            router.get('/unit-image/films/:type?', lazyloadRouteHandler('./routes/unit-image/films'));
         
     | 
| 
       2704 
1114 
     | 
    
         | 
| 
       2705 
     | 
    
         
            -
            // digic-picture
         
     | 
| 
       2706 
     | 
    
         
            -
            router.get('/digic-pictures/:menu/:tags?', lazyloadRouteHandler('./routes/digic-pictures/index'));
         
     | 
| 
       2707 
     | 
    
         
            -
             
     | 
| 
       2708 
     | 
    
         
            -
            // cve.mitre.org
         
     | 
| 
       2709 
     | 
    
         
            -
            router.get('/cve/search/:keyword', lazyloadRouteHandler('./routes/cve/search'));
         
     | 
| 
       2710 
     | 
    
         
            -
             
     | 
| 
       2711 
     | 
    
         
            -
            // Xposed Module Repository
         
     | 
| 
       2712 
     | 
    
         
            -
            router.get('/xposed/module/:mod', lazyloadRouteHandler('./routes/xposed/module'));
         
     | 
| 
       2713 
     | 
    
         
            -
             
     | 
| 
       2714 
     | 
    
         
            -
            // Microsoft Edge
         
     | 
| 
       2715 
     | 
    
         
            -
            router.get('/edge/addon/:crxid', lazyloadRouteHandler('./routes/edge/addon'));
         
     | 
| 
       2716 
     | 
    
         
            -
             
     | 
| 
       2717 
1115 
     | 
    
         
             
            // Microsoft Store
         
     | 
| 
       2718 
1116 
     | 
    
         
             
            router.get('/microsoft-store/updates/:productid/:market?', lazyloadRouteHandler('./routes/microsoft-store/updates'));
         
     | 
| 
       2719 
1117 
     | 
    
         | 
| 
         @@ -2729,26 +1127,16 @@ router.get('/slu/csggxy/:id', lazyloadRouteHandler('./routes/universities/slu/cs 
     | 
|
| 
       2729 
1127 
     | 
    
         
             
            router.get('/ruby-china/topics/:type?', lazyloadRouteHandler('./routes/ruby-china/topics'));
         
     | 
| 
       2730 
1128 
     | 
    
         
             
            router.get('/ruby-china/jobs', lazyloadRouteHandler('./routes/ruby-china/jobs'));
         
     | 
| 
       2731 
1129 
     | 
    
         | 
| 
       2732 
     | 
    
         
            -
            // 中国人事考试网
         
     | 
| 
       2733 
     | 
    
         
            -
            router.get('/cpta/notice', lazyloadRouteHandler('./routes/cpta/notice'));
         
     | 
| 
       2734 
     | 
    
         
            -
             
     | 
| 
       2735 
1130 
     | 
    
         
             
            // 广告网
         
     | 
| 
       2736 
1131 
     | 
    
         
             
            router.get('/adquan/:type?', lazyloadRouteHandler('./routes/adquan/index'));
         
     | 
| 
       2737 
1132 
     | 
    
         | 
| 
       2738 
     | 
    
         
            -
            // 齐鲁晚报
         
     | 
| 
       2739 
     | 
    
         
            -
            router.get('/qlwb/news', lazyloadRouteHandler('./routes/qlwb/news'));
         
     | 
| 
       2740 
     | 
    
         
            -
            router.get('/qlwb/city/:city', lazyloadRouteHandler('./routes/qlwb/city'));
         
     | 
| 
       2741 
     | 
    
         
            -
             
     | 
| 
       2742 
     | 
    
         
            -
            // 蜻蜓FM
         
     | 
| 
       2743 
     | 
    
         
            -
            // router.get('/qingting/channel/:id', lazyloadRouteHandler('./routes/qingting/channel'));
         
     | 
| 
       2744 
     | 
    
         
            -
             
     | 
| 
       2745 
1133 
     | 
    
         
             
            // 金色财经
         
     | 
| 
       2746 
     | 
    
         
            -
            router.get('/jinse/lives', lazyloadRouteHandler('./routes/jinse/lives'));
         
     | 
| 
       2747 
     | 
    
         
            -
            router.get('/jinse/timeline', lazyloadRouteHandler('./routes/jinse/timeline'));
         
     | 
| 
       2748 
     | 
    
         
            -
            router.get('/jinse/catalogue/:caty', lazyloadRouteHandler('./routes/jinse/catalogue'));
         
     | 
| 
      
 1134 
     | 
    
         
            +
            // router.get('/jinse/lives', lazyloadRouteHandler('./routes/jinse/lives'));
         
     | 
| 
      
 1135 
     | 
    
         
            +
            // router.get('/jinse/timeline', lazyloadRouteHandler('./routes/jinse/timeline'));
         
     | 
| 
      
 1136 
     | 
    
         
            +
            // router.get('/jinse/catalogue/:caty', lazyloadRouteHandler('./routes/jinse/catalogue'));
         
     | 
| 
       2749 
1137 
     | 
    
         | 
| 
       2750 
1138 
     | 
    
         
             
            // deeplearning.ai
         
     | 
| 
       2751 
     | 
    
         
            -
            router.get('/deeplearningai/thebatch', lazyloadRouteHandler('./routes/deeplearningai/thebatch'));
         
     | 
| 
      
 1139 
     | 
    
         
            +
            // router.get('/deeplearningai/thebatch', lazyloadRouteHandler('./routes/deeplearningai/thebatch'));
         
     | 
| 
       2752 
1140 
     | 
    
         | 
| 
       2753 
1141 
     | 
    
         
             
            // Fate Grand Order
         
     | 
| 
       2754 
1142 
     | 
    
         
             
            router.get('/fgo/news', lazyloadRouteHandler('./routes/fgo/news'));
         
     | 
| 
         @@ -2763,63 +1151,24 @@ router.get('/umass/amherst/csnews', lazyloadRouteHandler('./routes/umass/amherst 
     | 
|
| 
       2763 
1151 
     | 
    
         
             
            router.get('/umass/amherst/ipoevents', lazyloadRouteHandler('./routes/umass/amherst/ipoevents'));
         
     | 
| 
       2764 
1152 
     | 
    
         
             
            router.get('/umass/amherst/ipostories', lazyloadRouteHandler('./routes/umass/amherst/ipostories'));
         
     | 
| 
       2765 
1153 
     | 
    
         | 
| 
       2766 
     | 
    
         
            -
            // 飘花电影网
         
     | 
| 
       2767 
     | 
    
         
            -
            router.get('/piaohua/hot', lazyloadRouteHandler('./routes/piaohua/hot'));
         
     | 
| 
       2768 
     | 
    
         
            -
             
     | 
| 
       2769 
1154 
     | 
    
         
             
            // 快媒体
         
     | 
| 
       2770 
1155 
     | 
    
         
             
            router.get('/kuai', lazyloadRouteHandler('./routes/kuai/index'));
         
     | 
| 
       2771 
1156 
     | 
    
         
             
            router.get('/kuai/:id', lazyloadRouteHandler('./routes/kuai/id'));
         
     | 
| 
       2772 
1157 
     | 
    
         | 
| 
       2773 
     | 
    
         
            -
            // 生物帮
         
     | 
| 
       2774 
     | 
    
         
            -
            router.get('/biobio/:id', lazyloadRouteHandler('./routes/biobio/index'));
         
     | 
| 
       2775 
     | 
    
         
            -
            router.get('/biobio/:column/:id', lazyloadRouteHandler('./routes/biobio/others'));
         
     | 
| 
       2776 
     | 
    
         
            -
             
     | 
| 
       2777 
1158 
     | 
    
         
             
            // 199it
         
     | 
| 
       2778 
1159 
     | 
    
         
             
            router.get('/199it', lazyloadRouteHandler('./routes/199it/index'));
         
     | 
| 
       2779 
1160 
     | 
    
         
             
            router.get('/199it/category/:caty', lazyloadRouteHandler('./routes/199it/category'));
         
     | 
| 
       2780 
1161 
     | 
    
         
             
            router.get('/199it/tag/:tag', lazyloadRouteHandler('./routes/199it/tag'));
         
     | 
| 
       2781 
1162 
     | 
    
         | 
| 
       2782 
     | 
    
         
            -
            // 唧唧堂
         
     | 
| 
       2783 
     | 
    
         
            -
            router.get('/jijitang/article/:id', lazyloadRouteHandler('./routes/jijitang/article'));
         
     | 
| 
       2784 
     | 
    
         
            -
            router.get('/jijitang/publication', lazyloadRouteHandler('./routes/jijitang/publication'));
         
     | 
| 
       2785 
     | 
    
         
            -
             
     | 
| 
       2786 
     | 
    
         
            -
            // 新闻联播
         
     | 
| 
       2787 
     | 
    
         
            -
            // router.get('/xwlb', lazyloadRouteHandler('./routes/xwlb/index'));
         
     | 
| 
       2788 
     | 
    
         
            -
             
     | 
| 
       2789 
     | 
    
         
            -
            // 端传媒
         
     | 
| 
       2790 
     | 
    
         
            -
            // router.get('/initium/:type?/:language?', lazyloadRouteHandler('./routes/initium/full'));
         
     | 
| 
       2791 
     | 
    
         
            -
            // router.get('/theinitium/:model/:type?/:language?', lazyloadRouteHandler('./routes/initium/full'));
         
     | 
| 
       2792 
     | 
    
         
            -
             
     | 
| 
       2793 
1163 
     | 
    
         
             
            // Grub Street
         
     | 
| 
       2794 
     | 
    
         
            -
            router.get('/grubstreet', lazyloadRouteHandler('./routes/grubstreet/index'));
         
     | 
| 
       2795 
     | 
    
         
            -
             
     | 
| 
       2796 
     | 
    
         
            -
            // 漫画堆
         
     | 
| 
       2797 
     | 
    
         
            -
            router.get('/manhuadui/manhua/:name/:serial?', lazyloadRouteHandler('./routes/manhuadui/manhua'));
         
     | 
| 
       2798 
     | 
    
         
            -
             
     | 
| 
       2799 
     | 
    
         
            -
            // 风之漫画
         
     | 
| 
       2800 
     | 
    
         
            -
            // router.get('/fzdm/manhua/:id', lazyloadRouteHandler('./routes/fzdm/manhua'));
         
     | 
| 
       2801 
     | 
    
         
            -
             
     | 
| 
       2802 
     | 
    
         
            -
            // Aljazeera 半岛网
         
     | 
| 
       2803 
     | 
    
         
            -
            // router.get('/aljazeera/news', lazyloadRouteHandler('./routes/aljazeera/news'));
         
     | 
| 
       2804 
     | 
    
         
            -
             
     | 
| 
       2805 
     | 
    
         
            -
            // CFD indices dividend adjustment
         
     | 
| 
       2806 
     | 
    
         
            -
            router.get('/cfd/gbp_div', lazyloadRouteHandler('./routes/cfd/gbp_div'));
         
     | 
| 
      
 1164 
     | 
    
         
            +
            // router.get('/grubstreet', lazyloadRouteHandler('./routes/grubstreet/index'));
         
     | 
| 
       2807 
1165 
     | 
    
         | 
| 
       2808 
1166 
     | 
    
         
             
            // Monotype
         
     | 
| 
       2809 
1167 
     | 
    
         
             
            router.get('/monotype/article', lazyloadRouteHandler('./routes/monotype/article'));
         
     | 
| 
       2810 
1168 
     | 
    
         | 
| 
       2811 
     | 
    
         
            -
            // Stork
         
     | 
| 
       2812 
     | 
    
         
            -
            router.get('/stork/keyword/:trackID/:displayKey', lazyloadRouteHandler('./routes/stork/keyword'));
         
     | 
| 
       2813 
     | 
    
         
            -
             
     | 
| 
       2814 
     | 
    
         
            -
            // 致美化
         
     | 
| 
       2815 
     | 
    
         
            -
            router.get('/zhutix/latest', lazyloadRouteHandler('./routes/zhutix/latest'));
         
     | 
| 
       2816 
     | 
    
         
            -
             
     | 
| 
       2817 
1169 
     | 
    
         
             
            // arXiv
         
     | 
| 
       2818 
1170 
     | 
    
         
             
            router.get('/arxiv/:query', lazyloadRouteHandler('./routes/arxiv/query'));
         
     | 
| 
       2819 
1171 
     | 
    
         | 
| 
       2820 
     | 
    
         
            -
            // 生物谷
         
     | 
| 
       2821 
     | 
    
         
            -
            router.get('/shengwugu/:uid?', lazyloadRouteHandler('./routes/shengwugu/index'));
         
     | 
| 
       2822 
     | 
    
         
            -
             
     | 
| 
       2823 
1172 
     | 
    
         
             
            // 环球律师事务所文章
         
     | 
| 
       2824 
1173 
     | 
    
         
             
            router.get('/law/hq', lazyloadRouteHandler('./routes/law/hq'));
         
     | 
| 
       2825 
1174 
     | 
    
         | 
| 
         @@ -2850,77 +1199,26 @@ router.get('/law/jctd', lazyloadRouteHandler('./routes/law/jctd')); 
     | 
|
| 
       2850 
1199 
     | 
    
         
             
            // 三星盖乐世社区
         
     | 
| 
       2851 
1200 
     | 
    
         
             
            router.get('/samsungmembers/latest', lazyloadRouteHandler('./routes/samsungmembers/latest'));
         
     | 
| 
       2852 
1201 
     | 
    
         | 
| 
       2853 
     | 
    
         
            -
            // 东莞教研网
         
     | 
| 
       2854 
     | 
    
         
            -
            // router.get('/dgjyw/:type', lazyloadRouteHandler('./routes/dgjyw/index'));
         
     | 
| 
       2855 
     | 
    
         
            -
             
     | 
| 
       2856 
1202 
     | 
    
         
             
            // 中国信息通信研究院
         
     | 
| 
       2857 
1203 
     | 
    
         
             
            router.get('/gov/caict/bps', lazyloadRouteHandler('./routes/gov/caict/bps'));
         
     | 
| 
       2858 
1204 
     | 
    
         
             
            router.get('/gov/caict/qwsj', lazyloadRouteHandler('./routes/gov/caict/qwsj'));
         
     | 
| 
       2859 
1205 
     | 
    
         
             
            router.get('/gov/caict/caictgd', lazyloadRouteHandler('./routes/gov/caict/caictgd'));
         
     | 
| 
       2860 
1206 
     | 
    
         | 
| 
       2861 
1207 
     | 
    
         
             
            // 中证网
         
     | 
| 
       2862 
     | 
    
         
            -
            router.get('/cs/news/:caty', lazyloadRouteHandler('./routes/cs/news'));
         
     | 
| 
       2863 
     | 
    
         
            -
             
     | 
| 
       2864 
     | 
    
         
            -
            // 财联社
         
     | 
| 
       2865 
     | 
    
         
            -
            // router.get('/cls/depth/:category?', lazyloadRouteHandler('./routes/cls/depth'));
         
     | 
| 
       2866 
     | 
    
         
            -
            // router.get('/cls/telegraph/:category?', lazyloadRouteHandler('./routes/cls/telegraph'));
         
     | 
| 
      
 1208 
     | 
    
         
            +
            // router.get('/cs/news/:caty', lazyloadRouteHandler('./routes/cs/news'));
         
     | 
| 
       2867 
1209 
     | 
    
         | 
| 
       2868 
1210 
     | 
    
         
             
            // hentai-cosplays
         
     | 
| 
       2869 
     | 
    
         
            -
            router.get('/hentai-cosplays/:type?/:name?', lazyloadRouteHandler('./routes/hentai-cosplays/hentai-cosplays'));
         
     | 
| 
       2870 
1211 
     | 
    
         
             
            router.get('/porn-images-xxx/:type?/:name?', lazyloadRouteHandler('./routes/hentai-cosplays/porn-images-xxx'));
         
     | 
| 
       2871 
1212 
     | 
    
         | 
| 
       2872 
1213 
     | 
    
         
             
            // dcinside
         
     | 
| 
       2873 
1214 
     | 
    
         
             
            router.get('/dcinside/board/:id', lazyloadRouteHandler('./routes/dcinside/board'));
         
     | 
| 
       2874 
1215 
     | 
    
         | 
| 
       2875 
     | 
    
         
            -
            // 企鹅电竞
         
     | 
| 
       2876 
     | 
    
         
            -
            router.get('/egameqq/room/:id', lazyloadRouteHandler('./routes/tencent/egame/room'));
         
     | 
| 
       2877 
     | 
    
         
            -
             
     | 
| 
       2878 
     | 
    
         
            -
            // 国家税务总局
         
     | 
| 
       2879 
     | 
    
         
            -
            router.get('/gov/chinatax/latest', lazyloadRouteHandler('./routes/gov/chinatax/latest'));
         
     | 
| 
       2880 
     | 
    
         
            -
             
     | 
| 
       2881 
1216 
     | 
    
         
             
            // 荔枝FM
         
     | 
| 
       2882 
1217 
     | 
    
         
             
            router.get('/lizhi/user/:id', lazyloadRouteHandler('./routes/lizhi/user'));
         
     | 
| 
       2883 
1218 
     | 
    
         | 
| 
       2884 
     | 
    
         
            -
            // 富途牛牛
         
     | 
| 
       2885 
     | 
    
         
            -
            router.get('/futunn/highlights', lazyloadRouteHandler('./routes/futunn/highlights'));
         
     | 
| 
       2886 
     | 
    
         
            -
             
     | 
| 
       2887 
     | 
    
         
            -
            // 即刻 migrated to v2
         
     | 
| 
       2888 
     | 
    
         
            -
            // router.get('/jike/topic/:id', lazyloadRouteHandler('./routes/jike/topic'));
         
     | 
| 
       2889 
     | 
    
         
            -
            // router.get('/jike/topic/text/:id', lazyloadRouteHandler('./routes/jike/topicText'));
         
     | 
| 
       2890 
     | 
    
         
            -
            // router.get('/jike/user/:id', lazyloadRouteHandler('./routes/jike/user'));
         
     | 
| 
       2891 
     | 
    
         
            -
             
     | 
| 
       2892 
     | 
    
         
            -
            // 网易新闻
         
     | 
| 
       2893 
     | 
    
         
            -
            // router.get('/netease/news/rank/:category?/:type?/:time?', lazyloadRouteHandler('./routes/netease/news/rank'));
         
     | 
| 
       2894 
     | 
    
         
            -
            // router.get('/netease/news/special/:type?', lazyloadRouteHandler('./routes/netease/news/special'));
         
     | 
| 
       2895 
     | 
    
         
            -
             
     | 
| 
       2896 
     | 
    
         
            -
            // 网易 - 网易号
         
     | 
| 
       2897 
     | 
    
         
            -
            // router.get('/netease/dy/:id', lazyloadRouteHandler('./routes/netease/dy'));
         
     | 
| 
       2898 
     | 
    
         
            -
            // router.get('/netease/dy2/:id', lazyloadRouteHandler('./routes/netease/dy2'));
         
     | 
| 
       2899 
     | 
    
         
            -
             
     | 
| 
       2900 
     | 
    
         
            -
            // 网易大神
         
     | 
| 
       2901 
     | 
    
         
            -
            // router.get('/netease/ds/:id', lazyloadRouteHandler('./routes/netease/ds'));
         
     | 
| 
       2902 
     | 
    
         
            -
             
     | 
| 
       2903 
     | 
    
         
            -
            // 网易公开课
         
     | 
| 
       2904 
     | 
    
         
            -
            // router.get('/open163/vip', lazyloadRouteHandler('./routes/netease/open/vip'));
         
     | 
| 
       2905 
     | 
    
         
            -
            // router.get('/open163/latest', lazyloadRouteHandler('./routes/netease/open/latest'));
         
     | 
| 
       2906 
     | 
    
         
            -
             
     | 
| 
       2907 
     | 
    
         
            -
            // Boston.com
         
     | 
| 
       2908 
     | 
    
         
            -
            router.get('/boston/:tag?', lazyloadRouteHandler('./routes/boston/index'));
         
     | 
| 
       2909 
     | 
    
         
            -
             
     | 
| 
       2910 
     | 
    
         
            -
            // 场库
         
     | 
| 
       2911 
     | 
    
         
            -
            router.get('/changku', lazyloadRouteHandler('./routes/changku/index'));
         
     | 
| 
       2912 
     | 
    
         
            -
            router.get('/changku/cate/:postid', lazyloadRouteHandler('./routes/changku/index'));
         
     | 
| 
       2913 
     | 
    
         
            -
             
     | 
| 
       2914 
     | 
    
         
            -
            // SCMP
         
     | 
| 
       2915 
     | 
    
         
            -
            // router.get('/scmp/:category_id', lazyloadRouteHandler('./routes/scmp/index'));
         
     | 
| 
       2916 
     | 
    
         
            -
             
     | 
| 
       2917 
1219 
     | 
    
         
             
            // 上海市生态环境局
         
     | 
| 
       2918 
1220 
     | 
    
         
             
            router.get('/gov/shanghai/sthj', lazyloadRouteHandler('./routes/gov/shanghai/sthj'));
         
     | 
| 
       2919 
1221 
     | 
    
         | 
| 
       2920 
     | 
    
         
            -
            // 才符
         
     | 
| 
       2921 
     | 
    
         
            -
            router.get('/91ddcc/user/:user', lazyloadRouteHandler('./routes/91ddcc/user'));
         
     | 
| 
       2922 
     | 
    
         
            -
            router.get('/91ddcc/stage/:stage', lazyloadRouteHandler('./routes/91ddcc/stage'));
         
     | 
| 
       2923 
     | 
    
         
            -
             
     | 
| 
       2924 
1222 
     | 
    
         
             
            // BookwalkerTW热门新书
         
     | 
| 
       2925 
1223 
     | 
    
         
             
            router.get('/bookwalkertw/news', lazyloadRouteHandler('./routes/bookwalkertw/news'));
         
     | 
| 
       2926 
1224 
     | 
    
         | 
| 
         @@ -2937,32 +1235,9 @@ router.get('/amazfitwatchfaces/search/:model/:keyword?/:sortBy?', lazyloadRouteH 
     | 
|
| 
       2937 
1235 
     | 
    
         
             
            router.get('/missevan/drama/latest', lazyloadRouteHandler('./routes/missevan/latest'));
         
     | 
| 
       2938 
1236 
     | 
    
         
             
            router.get('/missevan/drama/:id', lazyloadRouteHandler('./routes/missevan/drama'));
         
     | 
| 
       2939 
1237 
     | 
    
         | 
| 
       2940 
     | 
    
         
            -
            // Go语言爱好者周刊
         
     | 
| 
       2941 
     | 
    
         
            -
            // router.get('/go-weekly', lazyloadRouteHandler('./routes/go-weekly'));
         
     | 
| 
       2942 
     | 
    
         
            -
             
     | 
| 
       2943 
     | 
    
         
            -
            // popiask提问箱
         
     | 
| 
       2944 
     | 
    
         
            -
            router.get('/popiask/:sharecode/:pagesize?', lazyloadRouteHandler('./routes/popiask/questions'));
         
     | 
| 
       2945 
     | 
    
         
            -
             
     | 
| 
       2946 
     | 
    
         
            -
            // Tapechat提问箱
         
     | 
| 
       2947 
     | 
    
         
            -
            router.get('/tapechat/questionbox/:sharecode/:pagesize?', lazyloadRouteHandler('./routes/popiask/tapechat_questions'));
         
     | 
| 
       2948 
     | 
    
         
            -
             
     | 
| 
       2949 
1238 
     | 
    
         
             
            // AMD
         
     | 
| 
       2950 
1239 
     | 
    
         
             
            router.get('/amd/graphicsdrivers/:id/:rid?', lazyloadRouteHandler('./routes/amd/graphicsdrivers'));
         
     | 
| 
       2951 
1240 
     | 
    
         | 
| 
       2952 
     | 
    
         
            -
            // 二柄APP
         
     | 
| 
       2953 
     | 
    
         
            -
            // router.get('/erbingapp/news', lazyloadRouteHandler('./routes/erbingapp/news'));
         
     | 
| 
       2954 
     | 
    
         
            -
             
     | 
| 
       2955 
     | 
    
         
            -
            // 电商报
         
     | 
| 
       2956 
     | 
    
         
            -
            router.get('/dsb/area/:area', lazyloadRouteHandler('./routes/dsb/area'));
         
     | 
| 
       2957 
     | 
    
         
            -
             
     | 
| 
       2958 
     | 
    
         
            -
            // 靠谱新闻
         
     | 
| 
       2959 
     | 
    
         
            -
            router.get('/kaopunews/:language?', lazyloadRouteHandler('./routes/kaopunews'));
         
     | 
| 
       2960 
     | 
    
         
            -
             
     | 
| 
       2961 
     | 
    
         
            -
            // 格隆汇 migrated to v2
         
     | 
| 
       2962 
     | 
    
         
            -
            // router.get('/gelonghui/user/:id', lazyloadRouteHandler('./routes/gelonghui/user'));
         
     | 
| 
       2963 
     | 
    
         
            -
            // router.get('/gelonghui/subject/:id', lazyloadRouteHandler('./routes/gelonghui/subject'));
         
     | 
| 
       2964 
     | 
    
         
            -
            // router.get('/gelonghui/keyword/:keyword', lazyloadRouteHandler('./routes/gelonghui/keyword'));
         
     | 
| 
       2965 
     | 
    
         
            -
             
     | 
| 
       2966 
1241 
     | 
    
         
             
            // 光谷社区
         
     | 
| 
       2967 
1242 
     | 
    
         
             
            router.get('/guanggoo/:category?', lazyloadRouteHandler('./routes/guanggoo/index'));
         
     | 
| 
       2968 
1243 
     | 
    
         | 
| 
         @@ -2980,9 +1255,9 @@ router.get('/gov/chongqing/ljxq/zwgk/:caty', lazyloadRouteHandler('./routes/gov/ 
     | 
|
| 
       2980 
1255 
     | 
    
         
             
            router.get('/12379', lazyloadRouteHandler('./routes/12379/index'));
         
     | 
| 
       2981 
1256 
     | 
    
         | 
| 
       2982 
1257 
     | 
    
         
             
            // 鸟哥笔记
         
     | 
| 
       2983 
     | 
    
         
            -
            router.get('/ngbj', lazyloadRouteHandler('./routes/niaogebiji/index'));
         
     | 
| 
       2984 
     | 
    
         
            -
            router.get('/ngbj/today', lazyloadRouteHandler('./routes/niaogebiji/today'));
         
     | 
| 
       2985 
     | 
    
         
            -
            router.get('/ngbj/cat/:cat', lazyloadRouteHandler('./routes/niaogebiji/cat'));
         
     | 
| 
      
 1258 
     | 
    
         
            +
            // router.get('/ngbj', lazyloadRouteHandler('./routes/niaogebiji/index'));
         
     | 
| 
      
 1259 
     | 
    
         
            +
            // router.get('/ngbj/today', lazyloadRouteHandler('./routes/niaogebiji/today'));
         
     | 
| 
      
 1260 
     | 
    
         
            +
            // router.get('/ngbj/cat/:cat', lazyloadRouteHandler('./routes/niaogebiji/cat'));
         
     | 
| 
       2986 
1261 
     | 
    
         | 
| 
       2987 
1262 
     | 
    
         
             
            // 梅花网
         
     | 
| 
       2988 
1263 
     | 
    
         
             
            router.get('/meihua/shots/:caty', lazyloadRouteHandler('./routes/meihua/shots'));
         
     | 
| 
         @@ -2993,109 +1268,34 @@ router.get('/kuaibao', lazyloadRouteHandler('./routes/kuaibao/index')); 
     | 
|
| 
       2993 
1268 
     | 
    
         | 
| 
       2994 
1269 
     | 
    
         
             
            // SocialBeta
         
     | 
| 
       2995 
1270 
     | 
    
         
             
            router.get('/socialbeta/home', lazyloadRouteHandler('./routes/socialbeta/home'));
         
     | 
| 
       2996 
     | 
    
         
            -
            router.get('/socialbeta/hunt', lazyloadRouteHandler('./routes/socialbeta/hunt'));
         
     | 
| 
       2997 
1271 
     | 
    
         | 
| 
       2998 
1272 
     | 
    
         
             
            // 东方我乐多丛志
         
     | 
| 
       2999 
1273 
     | 
    
         
             
            router.get('/touhougarakuta/:language/:type', lazyloadRouteHandler('./routes/touhougarakuta'));
         
     | 
| 
       3000 
1274 
     | 
    
         | 
| 
       3001 
     | 
    
         
            -
            // 猎趣TV
         
     | 
| 
       3002 
     | 
    
         
            -
            router.get('/liequtv/room/:id', lazyloadRouteHandler('./routes/liequtv/room'));
         
     | 
| 
       3003 
     | 
    
         
            -
             
     | 
| 
       3004 
1275 
     | 
    
         
             
            // 北京物资学院
         
     | 
| 
       3005 
1276 
     | 
    
         
             
            router.get('/bwu/news', lazyloadRouteHandler('./routes/universities/bwu/news'));
         
     | 
| 
       3006 
1277 
     | 
    
         | 
| 
       3007 
     | 
    
         
            -
            // 新榜
         
     | 
| 
       3008 
     | 
    
         
            -
            // router.get('/newrank/wechat/:wxid', lazyloadRouteHandler('./routes/newrank/wechat'));
         
     | 
| 
       3009 
     | 
    
         
            -
            // router.get('/newrank/douyin/:dyid', lazyloadRouteHandler('./routes/newrank/douyin'));
         
     | 
| 
       3010 
     | 
    
         
            -
             
     | 
| 
       3011 
1278 
     | 
    
         
             
            // 漫小肆
         
     | 
| 
       3012 
1279 
     | 
    
         
             
            router.get('/manxiaosi/book/:id', lazyloadRouteHandler('./routes/manxiaosi/book'));
         
     | 
| 
       3013 
1280 
     | 
    
         | 
| 
       3014 
1281 
     | 
    
         
             
            // 吉林大学校内通知
         
     | 
| 
       3015 
1282 
     | 
    
         
             
            router.get('/jlu/oa', lazyloadRouteHandler('./routes/universities/jlu/oa'));
         
     | 
| 
       3016 
1283 
     | 
    
         | 
| 
       3017 
     | 
    
         
            -
            // 小宇宙 migrated to v2
         
     | 
| 
       3018 
     | 
    
         
            -
            // router.get('/xiaoyuzhou', lazyloadRouteHandler('./routes/xiaoyuzhou/pickup'));
         
     | 
| 
       3019 
     | 
    
         
            -
            // router.get('/xiaoyuzhou/podcast/:id', lazyloadRouteHandler('./routes/xiaoyuzhou/podcast'));
         
     | 
| 
       3020 
     | 
    
         
            -
             
     | 
| 
       3021 
1284 
     | 
    
         
             
            // 合肥工业大学
         
     | 
| 
       3022 
1285 
     | 
    
         
             
            router.get('/hfut/tzgg', lazyloadRouteHandler('./routes/universities/hfut/tzgg'));
         
     | 
| 
       3023 
1286 
     | 
    
         | 
| 
       3024 
     | 
    
         
            -
            // Darwin Awards
         
     | 
| 
       3025 
     | 
    
         
            -
            // router.get('/darwinawards/all', lazyloadRouteHandler('./routes/darwinawards/articles'));
         
     | 
| 
       3026 
     | 
    
         
            -
             
     | 
| 
       3027 
     | 
    
         
            -
            // 四川职业技术学院
         
     | 
| 
       3028 
     | 
    
         
            -
            // router.get('/scvtc/xygg', lazyloadRouteHandler('./routes/universities/scvtc/xygg'));
         
     | 
| 
       3029 
     | 
    
         
            -
             
     | 
| 
       3030 
     | 
    
         
            -
            // 华南理工大学土木与交通学院
         
     | 
| 
       3031 
     | 
    
         
            -
            // router.get('/scut/scet/notice', lazyloadRouteHandler('./routes/universities/scut/scet/notice'));
         
     | 
| 
       3032 
     | 
    
         
            -
             
     | 
| 
       3033 
     | 
    
         
            -
            // 华南理工大学电子与信息学院
         
     | 
| 
       3034 
     | 
    
         
            -
            // router.get('/scut/seie/news_center', lazyloadRouteHandler('./routes/universities/scut/seie/news_center'));
         
     | 
| 
       3035 
     | 
    
         
            -
             
     | 
| 
       3036 
1287 
     | 
    
         
             
            // OneJAV
         
     | 
| 
       3037 
1288 
     | 
    
         
             
            router.get('/onejav/:type/:key?', lazyloadRouteHandler('./routes/onejav/one'));
         
     | 
| 
       3038 
1289 
     | 
    
         | 
| 
       3039 
     | 
    
         
            -
            // 141jav
         
     | 
| 
       3040 
     | 
    
         
            -
            router.get('/141jav/:type/:key?', lazyloadRouteHandler('./routes/141jav/141jav'));
         
     | 
| 
       3041 
     | 
    
         
            -
             
     | 
| 
       3042 
     | 
    
         
            -
            // 141ppv
         
     | 
| 
       3043 
     | 
    
         
            -
            router.get('/141ppv/:type/:key?', lazyloadRouteHandler('./routes/141ppv/141ppv'));
         
     | 
| 
       3044 
     | 
    
         
            -
             
     | 
| 
       3045 
     | 
    
         
            -
            // CuriousCat
         
     | 
| 
       3046 
     | 
    
         
            -
            router.get('/curiouscat/user/:id', lazyloadRouteHandler('./routes/curiouscat/user'));
         
     | 
| 
       3047 
     | 
    
         
            -
             
     | 
| 
       3048 
     | 
    
         
            -
            // Telecompaper
         
     | 
| 
       3049 
     | 
    
         
            -
            router.get('/telecompaper/news/:caty/:year?/:country?/:type?', lazyloadRouteHandler('./routes/telecompaper/news'));
         
     | 
| 
       3050 
     | 
    
         
            -
            router.get('/telecompaper/search/:keyword?/:company?/:sort?/:period?', lazyloadRouteHandler('./routes/telecompaper/search'));
         
     | 
| 
       3051 
     | 
    
         
            -
             
     | 
| 
       3052 
     | 
    
         
            -
            // 水木社区
         
     | 
| 
       3053 
     | 
    
         
            -
            router.get('/newsmth/account/:id', lazyloadRouteHandler('./routes/newsmth/account'));
         
     | 
| 
       3054 
     | 
    
         
            -
            router.get('/newsmth/section/:section', lazyloadRouteHandler('./routes/newsmth/section'));
         
     | 
| 
       3055 
     | 
    
         
            -
             
     | 
| 
       3056 
1290 
     | 
    
         
             
            // Kotaku
         
     | 
| 
       3057 
1291 
     | 
    
         
             
            router.get('/kotaku/story/:type', lazyloadRouteHandler('./routes/kotaku/story'));
         
     | 
| 
       3058 
1292 
     | 
    
         | 
| 
       3059 
1293 
     | 
    
         
             
            // 梅斯医学
         
     | 
| 
       3060 
1294 
     | 
    
         
             
            router.get('/medsci/recommend', lazyloadRouteHandler('./routes/medsci/recommend'));
         
     | 
| 
       3061 
1295 
     | 
    
         | 
| 
       3062 
     | 
    
         
            -
            // Wallpaperhub migrated to v2
         
     | 
| 
       3063 
     | 
    
         
            -
            // router.get('/wallpaperhub', lazyloadRouteHandler('./routes/wallpaperhub/index'));
         
     | 
| 
       3064 
     | 
    
         
            -
             
     | 
| 
       3065 
     | 
    
         
            -
            // 悟空问答
         
     | 
| 
       3066 
     | 
    
         
            -
            router.get('/wukong/user/:id/:type?', lazyloadRouteHandler('./routes/wukong/user'));
         
     | 
| 
       3067 
     | 
    
         
            -
             
     | 
| 
       3068 
     | 
    
         
            -
            // 腾讯大数据
         
     | 
| 
       3069 
     | 
    
         
            -
            router.get('/tencent/bigdata', lazyloadRouteHandler('./routes/tencent/bigdata/index'));
         
     | 
| 
       3070 
     | 
    
         
            -
             
     | 
| 
       3071 
1296 
     | 
    
         
             
            // 搜韵网
         
     | 
| 
       3072 
1297 
     | 
    
         
             
            router.get('/souyun/today', lazyloadRouteHandler('./routes/souyun/today'));
         
     | 
| 
       3073 
1298 
     | 
    
         | 
| 
       3074 
     | 
    
         
            -
            // 生物谷
         
     | 
| 
       3075 
     | 
    
         
            -
            router.get('/bioon/latest', lazyloadRouteHandler('./routes/bioon/latest'));
         
     | 
| 
       3076 
     | 
    
         
            -
             
     | 
| 
       3077 
     | 
    
         
            -
            // soomal
         
     | 
| 
       3078 
     | 
    
         
            -
            router.get('/soomal/topics/:category/:language?', lazyloadRouteHandler('./routes/soomal/topics'));
         
     | 
| 
       3079 
     | 
    
         
            -
             
     | 
| 
       3080 
     | 
    
         
            -
            // NASA
         
     | 
| 
       3081 
     | 
    
         
            -
            router.get('/nasa/apod', lazyloadRouteHandler('./routes/nasa/apod'));
         
     | 
| 
       3082 
     | 
    
         
            -
            router.get('/nasa/apod-ncku', lazyloadRouteHandler('./routes/nasa/apod-ncku'));
         
     | 
| 
       3083 
     | 
    
         
            -
            router.get('/nasa/apod-cn', lazyloadRouteHandler('./routes/nasa/apod-cn'));
         
     | 
| 
       3084 
     | 
    
         
            -
             
     | 
| 
       3085 
     | 
    
         
            -
            // 爱Q生活网
         
     | 
| 
       3086 
     | 
    
         
            -
            // router.get('/iqshw/latest', lazyloadRouteHandler('./routes/3k8/latest'));
         
     | 
| 
       3087 
     | 
    
         
            -
            // router.get('/3k8/latest', lazyloadRouteHandler('./routes/3k8/latest'));
         
     | 
| 
       3088 
     | 
    
         
            -
             
     | 
| 
       3089 
     | 
    
         
            -
            // JustRun
         
     | 
| 
       3090 
     | 
    
         
            -
            router.get('/justrun', lazyloadRouteHandler('./routes/justrun/index'));
         
     | 
| 
       3091 
     | 
    
         
            -
             
     | 
| 
       3092 
     | 
    
         
            -
            // 上海电力大学 migrated to v2
         
     | 
| 
       3093 
     | 
    
         
            -
            // router.get('/shiep/:type/:id?', lazyloadRouteHandler('./routes/universities/shiep/index'));
         
     | 
| 
       3094 
     | 
    
         
            -
             
     | 
| 
       3095 
     | 
    
         
            -
            // 福建新闻
         
     | 
| 
       3096 
     | 
    
         
            -
            router.get('/fjnews/:city/:limit', lazyloadRouteHandler('./routes/fjnews/fznews'));
         
     | 
| 
       3097 
     | 
    
         
            -
            router.get('/fjnews/jjnews', lazyloadRouteHandler('./routes/fjnews/jjnews'));
         
     | 
| 
       3098 
     | 
    
         
            -
             
     | 
| 
       3099 
1299 
     | 
    
         
             
            // 中山网新闻
         
     | 
| 
       3100 
1300 
     | 
    
         
             
            router.get('/zsnews/index/:cateid', lazyloadRouteHandler('./routes/zsnews/index'));
         
     | 
| 
       3101 
1301 
     | 
    
         | 
| 
         @@ -3106,21 +1306,9 @@ router.get('/kongfz/shop/:id/:cat?', lazyloadRouteHandler('./routes/kongfz/shop' 
     | 
|
| 
       3106 
1306 
     | 
    
         
             
            // XMind
         
     | 
| 
       3107 
1307 
     | 
    
         
             
            router.get('/xmind/mindmap/:lang?', lazyloadRouteHandler('./routes/xmind/mindmap'));
         
     | 
| 
       3108 
1308 
     | 
    
         | 
| 
       3109 
     | 
    
         
            -
            // 小刀娱乐网
         
     | 
| 
       3110 
     | 
    
         
            -
            // router.get('/x6d/:id?', lazyloadRouteHandler('./routes/x6d/index'));
         
     | 
| 
       3111 
     | 
    
         
            -
             
     | 
| 
       3112 
1309 
     | 
    
         
             
            // 思维导图社区
         
     | 
| 
       3113 
1310 
     | 
    
         
             
            router.get('/edrawsoft/mindmap/:classId?/:order?/:sort?/:lang?/:price?/:search?', lazyloadRouteHandler('./routes/edrawsoft/mindmap'));
         
     | 
| 
       3114 
1311 
     | 
    
         | 
| 
       3115 
     | 
    
         
            -
            // 它惠网
         
     | 
| 
       3116 
     | 
    
         
            -
            router.get('/tahui/rptlist', lazyloadRouteHandler('./routes/tahui/rptlist'));
         
     | 
| 
       3117 
     | 
    
         
            -
             
     | 
| 
       3118 
     | 
    
         
            -
            // Guiltfree
         
     | 
| 
       3119 
     | 
    
         
            -
            router.get('/guiltfree/onsale', lazyloadRouteHandler('./routes/guiltfree/onsale'));
         
     | 
| 
       3120 
     | 
    
         
            -
             
     | 
| 
       3121 
     | 
    
         
            -
            // 消费明鉴
         
     | 
| 
       3122 
     | 
    
         
            -
            router.get('/mingjian', lazyloadRouteHandler('./routes/mingjian/index'));
         
     | 
| 
       3123 
     | 
    
         
            -
             
     | 
| 
       3124 
1312 
     | 
    
         
             
            // hentaimama
         
     | 
| 
       3125 
1313 
     | 
    
         
             
            router.get('/hentaimama/videos', lazyloadRouteHandler('./routes/hentaimama/videos'));
         
     | 
| 
       3126 
1314 
     | 
    
         | 
| 
         @@ -3133,9 +1321,6 @@ router.get('/wenxuecity/bbs/:cat/:elite?', lazyloadRouteHandler('./routes/wenxue 
     | 
|
| 
       3133 
1321 
     | 
    
         
             
            router.get('/wenxuecity/hot/:cid', lazyloadRouteHandler('./routes/wenxuecity/hot'));
         
     | 
| 
       3134 
1322 
     | 
    
         
             
            router.get('/wenxuecity/news', lazyloadRouteHandler('./routes/wenxuecity/news'));
         
     | 
| 
       3135 
1323 
     | 
    
         | 
| 
       3136 
     | 
    
         
            -
            // 不安全
         
     | 
| 
       3137 
     | 
    
         
            -
            router.get('/buaq', lazyloadRouteHandler('./routes/buaq/index'));
         
     | 
| 
       3138 
     | 
    
         
            -
             
     | 
| 
       3139 
1324 
     | 
    
         
             
            // 快出海
         
     | 
| 
       3140 
1325 
     | 
    
         
             
            router.get('/kchuhai', lazyloadRouteHandler('./routes/kchuhai/index'));
         
     | 
| 
       3141 
1326 
     | 
    
         | 
| 
         @@ -3154,124 +1339,49 @@ router.get('/secshi', lazyloadRouteHandler('./routes/secshi/index')); 
     | 
|
| 
       3154 
1339 
     | 
    
         
             
            // 出海笔记
         
     | 
| 
       3155 
1340 
     | 
    
         
             
            router.get('/chuhaibiji', lazyloadRouteHandler('./routes/chuhaibiji/index'));
         
     | 
| 
       3156 
1341 
     | 
    
         | 
| 
       3157 
     | 
    
         
            -
            // 建宁闲谈
         
     | 
| 
       3158 
     | 
    
         
            -
            router.get('/blogs/jianning', lazyloadRouteHandler('./routes/blogs/jianning'));
         
     | 
| 
       3159 
     | 
    
         
            -
             
     | 
| 
       3160 
     | 
    
         
            -
            // 妖火网
         
     | 
| 
       3161 
     | 
    
         
            -
            // router.get('/yaohuo/:type?', lazyloadRouteHandler('./routes/yaohuo/index'));
         
     | 
| 
       3162 
     | 
    
         
            -
             
     | 
| 
       3163 
1342 
     | 
    
         
             
            // 互动吧
         
     | 
| 
       3164 
1343 
     | 
    
         
             
            router.get('/hudongba/:city/:id', lazyloadRouteHandler('./routes/hudongba/index'));
         
     | 
| 
       3165 
1344 
     | 
    
         | 
| 
       3166 
     | 
    
         
            -
            // 飞雪娱乐网
         
     | 
| 
       3167 
     | 
    
         
            -
            router.get('/feixuew/:id?', lazyloadRouteHandler('./routes/feixuew/index'));
         
     | 
| 
       3168 
     | 
    
         
            -
             
     | 
| 
       3169 
1345 
     | 
    
         
             
            // 1X
         
     | 
| 
       3170 
1346 
     | 
    
         
             
            router.get('/1x/:category?', lazyloadRouteHandler('./routes/1x/index'));
         
     | 
| 
       3171 
1347 
     | 
    
         | 
| 
       3172 
1348 
     | 
    
         
             
            // 剑网3
         
     | 
| 
       3173 
1349 
     | 
    
         
             
            router.get('/jx3/:caty?', lazyloadRouteHandler('./routes/jx3/news'));
         
     | 
| 
       3174 
1350 
     | 
    
         | 
| 
       3175 
     | 
    
         
            -
            // GQ
         
     | 
| 
       3176 
     | 
    
         
            -
            // router.get('/gq/tw/:caty?/:subcaty?', lazyloadRouteHandler('./routes/gq/tw/index'));
         
     | 
| 
       3177 
     | 
    
         
            -
             
     | 
| 
       3178 
1351 
     | 
    
         
             
            // 泉州市跨境电子商务协会
         
     | 
| 
       3179 
1352 
     | 
    
         
             
            router.get('/qzcea/:caty?', lazyloadRouteHandler('./routes/qzcea/index'));
         
     | 
| 
       3180 
1353 
     | 
    
         | 
| 
       3181 
     | 
    
         
            -
            // 福利年
         
     | 
| 
       3182 
     | 
    
         
            -
            router.get('/fulinian/:caty?', lazyloadRouteHandler('./routes/fulinian/index'));
         
     | 
| 
       3183 
     | 
    
         
            -
             
     | 
| 
       3184 
1354 
     | 
    
         
             
            // CGTN
         
     | 
| 
       3185 
     | 
    
         
            -
            router.get('/cgtn/top', lazyloadRouteHandler('./routes/cgtn/top'));
         
     | 
| 
       3186 
1355 
     | 
    
         
             
            router.get('/cgtn/most/:type?/:time?', lazyloadRouteHandler('./routes/cgtn/most'));
         
     | 
| 
       3187 
     | 
    
         
            -
             
     | 
| 
       3188 
     | 
    
         
            -
            router.get('/cgtn/pick', lazyloadRouteHandler('./routes/cgtn/pick'));
         
     | 
| 
       3189 
     | 
    
         
            -
             
     | 
| 
       3190 
1356 
     | 
    
         
             
            router.get('/cgtn/opinions', lazyloadRouteHandler('./routes/cgtn/opinions'));
         
     | 
| 
       3191 
1357 
     | 
    
         | 
| 
       3192 
1358 
     | 
    
         
             
            // AppSales
         
     | 
| 
       3193 
1359 
     | 
    
         
             
            router.get('/appsales/:caty?/:time?', lazyloadRouteHandler('./routes/appsales/index'));
         
     | 
| 
       3194 
1360 
     | 
    
         | 
| 
       3195 
     | 
    
         
            -
            // Academy of Management
         
     | 
| 
       3196 
     | 
    
         
            -
            router.get('/aom/journal/:id', lazyloadRouteHandler('./routes/aom/journal'));
         
     | 
| 
       3197 
     | 
    
         
            -
             
     | 
| 
       3198 
     | 
    
         
            -
            // 巴哈姆特電玩資訊站 migrated to v2
         
     | 
| 
       3199 
     | 
    
         
            -
            // router.get('/gamer/hot/:bsn', lazyloadRouteHandler('./routes/gamer/hot'));
         
     | 
| 
       3200 
     | 
    
         
            -
             
     | 
| 
       3201 
1361 
     | 
    
         
             
            // iCity
         
     | 
| 
       3202 
1362 
     | 
    
         
             
            router.get('/icity/:id', lazyloadRouteHandler('./routes/icity/index'));
         
     | 
| 
       3203 
1363 
     | 
    
         | 
| 
       3204 
     | 
    
         
            -
            // Anki
         
     | 
| 
       3205 
     | 
    
         
            -
            router.get('/anki/changes', lazyloadRouteHandler('./routes/anki/changes'));
         
     | 
| 
       3206 
     | 
    
         
            -
             
     | 
| 
       3207 
1364 
     | 
    
         
             
            // ABC News
         
     | 
| 
       3208 
     | 
    
         
            -
            router.get('/abc/:id?', lazyloadRouteHandler('./routes/abc'));
         
     | 
| 
      
 1365 
     | 
    
         
            +
            // router.get('/abc/:id?', lazyloadRouteHandler('./routes/abc'));
         
     | 
| 
       3209 
1366 
     | 
    
         | 
| 
       3210 
1367 
     | 
    
         
             
            // 台湾中央通讯社
         
     | 
| 
       3211 
     | 
    
         
            -
            router.get('/cna/:id?', lazyloadRouteHandler('./routes/cna/index'));
         
     | 
| 
       3212 
     | 
    
         
            -
             
     | 
| 
       3213 
     | 
    
         
            -
            // 华为心声社区
         
     | 
| 
       3214 
     | 
    
         
            -
            router.get('/huawei/xinsheng/:caty?/:order?/:keyword?', lazyloadRouteHandler('./routes/huawei/xinsheng/index'));
         
     | 
| 
       3215 
     | 
    
         
            -
             
     | 
| 
       3216 
     | 
    
         
            -
            // 守望先锋
         
     | 
| 
       3217 
     | 
    
         
            -
            router.get('/ow/patch', lazyloadRouteHandler('./routes/ow/patch'));
         
     | 
| 
       3218 
     | 
    
         
            -
             
     | 
| 
       3219 
     | 
    
         
            -
            // MM范
         
     | 
| 
       3220 
     | 
    
         
            -
            // router.get('/95mm/tab/:tab?', lazyloadRouteHandler('./routes/95mm/tab'));
         
     | 
| 
       3221 
     | 
    
         
            -
            // router.get('/95mm/tag/:tag', lazyloadRouteHandler('./routes/95mm/tag'));
         
     | 
| 
       3222 
     | 
    
         
            -
            // router.get('/95mm/category/:category', lazyloadRouteHandler('./routes/95mm/category'));
         
     | 
| 
       3223 
     | 
    
         
            -
             
     | 
| 
       3224 
     | 
    
         
            -
            // 中国工程科技知识中心
         
     | 
| 
       3225 
     | 
    
         
            -
            router.get('/cktest/app/:ctgroup?/:domain?', lazyloadRouteHandler('./routes/cktest/app'));
         
     | 
| 
       3226 
     | 
    
         
            -
            router.get('/cktest/policy', lazyloadRouteHandler('./routes/cktest/policy'));
         
     | 
| 
      
 1368 
     | 
    
         
            +
            // router.get('/cna/:id?', lazyloadRouteHandler('./routes/cna/index'));
         
     | 
| 
       3227 
1369 
     | 
    
         | 
| 
       3228 
1370 
     | 
    
         
             
            // 妈咪帮
         
     | 
| 
       3229 
1371 
     | 
    
         
             
            router.get('/mamibuy/:caty?/:age?/:sort?', lazyloadRouteHandler('./routes/mamibuy/index'));
         
     | 
| 
       3230 
1372 
     | 
    
         | 
| 
       3231 
     | 
    
         
            -
            // Mercari
         
     | 
| 
       3232 
     | 
    
         
            -
            router.get('/mercari/:type/:id', lazyloadRouteHandler('./routes/mercari/index'));
         
     | 
| 
       3233 
     | 
    
         
            -
             
     | 
| 
       3234 
     | 
    
         
            -
            // notefolio
         
     | 
| 
       3235 
     | 
    
         
            -
            router.get('/notefolio/:caty?/:order?/:time?/:query?', lazyloadRouteHandler('./routes/notefolio/index'));
         
     | 
| 
       3236 
     | 
    
         
            -
             
     | 
| 
       3237 
     | 
    
         
            -
            // JavDB
         
     | 
| 
       3238 
     | 
    
         
            -
            // router.get('/javdb/home/:category?/:sort?/:filter?', lazyloadRouteHandler('./routes/javdb'));
         
     | 
| 
       3239 
     | 
    
         
            -
            // router.get('/javdb/search/:keyword?/:filter?', lazyloadRouteHandler('./routes/javdb/search'));
         
     | 
| 
       3240 
     | 
    
         
            -
            // router.get('/javdb/tags/:query?/:caty?', lazyloadRouteHandler('./routes/javdb/tags'));
         
     | 
| 
       3241 
     | 
    
         
            -
            // router.get('/javdb/actors/:id/:filter?', lazyloadRouteHandler('./routes/javdb/actors'));
         
     | 
| 
       3242 
     | 
    
         
            -
            // router.get('/javdb/makers/:id/:filter?', lazyloadRouteHandler('./routes/javdb/makers'));
         
     | 
| 
       3243 
     | 
    
         
            -
            // router.get('/javdb/series/:id/:filter?', lazyloadRouteHandler('./routes/javdb/series'));
         
     | 
| 
       3244 
     | 
    
         
            -
            // router.get('/javdb/rankings/:caty?/:time?', lazyloadRouteHandler('./routes/javdb/rankings'));
         
     | 
| 
       3245 
     | 
    
         
            -
            // router.get('/javdb/:category?/:sort?/:filter?', lazyloadRouteHandler('./routes/javdb'));
         
     | 
| 
       3246 
     | 
    
         
            -
             
     | 
| 
       3247 
     | 
    
         
            -
            // World Economic Forum
         
     | 
| 
       3248 
     | 
    
         
            -
            router.get('/weforum/report/:lang?/:year?/:platform?', lazyloadRouteHandler('./routes/weforum/report'));
         
     | 
| 
       3249 
     | 
    
         
            -
             
     | 
| 
       3250 
1373 
     | 
    
         
             
            // Nobel Prize
         
     | 
| 
       3251 
1374 
     | 
    
         
             
            router.get('/nobelprize/:caty?', lazyloadRouteHandler('./routes/nobelprize/index'));
         
     | 
| 
       3252 
1375 
     | 
    
         | 
| 
       3253 
1376 
     | 
    
         
             
            // 中華民國國防部
         
     | 
| 
       3254 
1377 
     | 
    
         
             
            router.get('/gov/taiwan/mnd', lazyloadRouteHandler('./routes/gov/taiwan/mnd'));
         
     | 
| 
       3255 
1378 
     | 
    
         | 
| 
       3256 
     | 
    
         
            -
            // 読売新聞 to v2
         
     | 
| 
       3257 
     | 
    
         
            -
            // router.get('/yomiuri/:category', lazyloadRouteHandler('./routes/yomiuri/news'));
         
     | 
| 
       3258 
     | 
    
         
            -
             
     | 
| 
       3259 
     | 
    
         
            -
            // 巴哈姆特
         
     | 
| 
       3260 
     | 
    
         
            -
            // GNN新闻 migrated to v2
         
     | 
| 
       3261 
     | 
    
         
            -
            // router.get('/gamer/gnn/:category?', lazyloadRouteHandler('./routes/gamer/gnn_index'));
         
     | 
| 
       3262 
     | 
    
         
            -
             
     | 
| 
       3263 
1379 
     | 
    
         
             
            // 中国人大网
         
     | 
| 
       3264 
     | 
    
         
            -
            router.get('/npc/:caty', lazyloadRouteHandler('./routes/npc/index'));
         
     | 
| 
      
 1380 
     | 
    
         
            +
            // router.get('/npc/:caty', lazyloadRouteHandler('./routes/npc/index'));
         
     | 
| 
       3265 
1381 
     | 
    
         | 
| 
       3266 
1382 
     | 
    
         
             
            // 高科技行业门户
         
     | 
| 
       3267 
1383 
     | 
    
         
             
            router.get('/ofweek/news', lazyloadRouteHandler('./routes/ofweek/news'));
         
     | 
| 
       3268 
1384 
     | 
    
         | 
| 
       3269 
     | 
    
         
            -
            // 八阕
         
     | 
| 
       3270 
     | 
    
         
            -
            router.get('/popyard/:caty?', lazyloadRouteHandler('./routes/popyard/index'));
         
     | 
| 
       3271 
     | 
    
         
            -
             
     | 
| 
       3272 
     | 
    
         
            -
            // 原神 migrated to v2
         
     | 
| 
       3273 
     | 
    
         
            -
            // router.get('/yuanshen/:location?/:category?', lazyloadRouteHandler('./routes/yuanshen/index'));
         
     | 
| 
       3274 
     | 
    
         
            -
             
     | 
| 
       3275 
1385 
     | 
    
         
             
            // World Trade Organization
         
     | 
| 
       3276 
1386 
     | 
    
         
             
            router.get('/wto/dispute-settlement/:year?', lazyloadRouteHandler('./routes/wto/dispute-settlement'));
         
     | 
| 
       3277 
1387 
     | 
    
         | 
| 
         @@ -3281,17 +1391,6 @@ router.get('/forum4399/:mtag', lazyloadRouteHandler('./routes/game4399/forum')); 
     | 
|
| 
       3281 
1391 
     | 
    
         
             
            // 国防科技大学
         
     | 
| 
       3282 
1392 
     | 
    
         
             
            router.get('/nudt/yjszs/:id?', lazyloadRouteHandler('./routes/universities/nudt/yjszs'));
         
     | 
| 
       3283 
1393 
     | 
    
         | 
| 
       3284 
     | 
    
         
            -
            // 全现在
         
     | 
| 
       3285 
     | 
    
         
            -
            router.get('/allnow/column/:id', lazyloadRouteHandler('./routes/allnow/column'));
         
     | 
| 
       3286 
     | 
    
         
            -
            router.get('/allnow/tag/:id', lazyloadRouteHandler('./routes/allnow/tag'));
         
     | 
| 
       3287 
     | 
    
         
            -
            router.get('/allnow/user/:id', lazyloadRouteHandler('./routes/allnow/user'));
         
     | 
| 
       3288 
     | 
    
         
            -
            router.get('/allnow', lazyloadRouteHandler('./routes/allnow/index'));
         
     | 
| 
       3289 
     | 
    
         
            -
             
     | 
| 
       3290 
     | 
    
         
            -
            // 证券时报网
         
     | 
| 
       3291 
     | 
    
         
            -
            // router.get('/stcn/news/:id?', lazyloadRouteHandler('./routes/stcn/news'));
         
     | 
| 
       3292 
     | 
    
         
            -
            // router.get('/stcn/data/:id?', lazyloadRouteHandler('./routes/stcn/data'));
         
     | 
| 
       3293 
     | 
    
         
            -
            // router.get('/stcn/kuaixun/:id?', lazyloadRouteHandler('./routes/stcn/kuaixun'));
         
     | 
| 
       3294 
     | 
    
         
            -
             
     | 
| 
       3295 
1394 
     | 
    
         
             
            // dev.to
         
     | 
| 
       3296 
1395 
     | 
    
         
             
            router.get('/dev.to/top/:period', lazyloadRouteHandler('./routes/dev.to/top'));
         
     | 
| 
       3297 
1396 
     | 
    
         | 
| 
         @@ -3305,30 +1404,21 @@ router.get('/manictime/releases', lazyloadRouteHandler('./routes/manictime/relea 
     | 
|
| 
       3305 
1404 
     | 
    
         
             
            // Deutsche Welle 德国之声
         
     | 
| 
       3306 
1405 
     | 
    
         
             
            router.get('/dw/:lang?/:caty?', lazyloadRouteHandler('./routes/dw/index'));
         
     | 
| 
       3307 
1406 
     | 
    
         | 
| 
       3308 
     | 
    
         
            -
            // Amazon
         
     | 
| 
       3309 
     | 
    
         
            -
            router.get('/amazon/ku/:type?', lazyloadRouteHandler('./routes/amazon/ku'));
         
     | 
| 
       3310 
     | 
    
         
            -
             
     | 
| 
       3311 
1407 
     | 
    
         
             
            // Citavi 中文网站论坛
         
     | 
| 
       3312 
1408 
     | 
    
         
             
            router.get('/citavi/:caty?', lazyloadRouteHandler('./routes/citavi/index'));
         
     | 
| 
       3313 
1409 
     | 
    
         | 
| 
       3314 
1410 
     | 
    
         
             
            // Sesame
         
     | 
| 
       3315 
     | 
    
         
            -
            router.get('/sesame/release_notes', lazyloadRouteHandler('./routes/sesame/ 
     | 
| 
       3316 
     | 
    
         
            -
             
     | 
| 
       3317 
     | 
    
         
            -
            // 佐川急便
         
     | 
| 
       3318 
     | 
    
         
            -
            router.get('/sagawa/:id', lazyloadRouteHandler('./routes/sagawa/index'));
         
     | 
| 
      
 1411 
     | 
    
         
            +
            router.get('/sesame/release_notes', lazyloadRouteHandler('./routes/sesame/release-notes'));
         
     | 
| 
       3319 
1412 
     | 
    
         | 
| 
       3320 
1413 
     | 
    
         
             
            // QNAP
         
     | 
| 
       3321 
1414 
     | 
    
         
             
            router.get('/qnap/release-notes/:id', lazyloadRouteHandler('./routes/qnap/release-notes'));
         
     | 
| 
       3322 
1415 
     | 
    
         | 
| 
       3323 
1416 
     | 
    
         
             
            // Liquipedia
         
     | 
| 
       3324 
     | 
    
         
            -
            router.get('/liquipedia/dota2/matches/:id', lazyloadRouteHandler('./routes/liquipedia/dota2_matches.js'));
         
     | 
| 
      
 1417 
     | 
    
         
            +
            // router.get('/liquipedia/dota2/matches/:id', lazyloadRouteHandler('./routes/liquipedia/dota2_matches.js'));
         
     | 
| 
       3325 
1418 
     | 
    
         | 
| 
       3326 
1419 
     | 
    
         
             
            // 哈尔滨市科技局
         
     | 
| 
       3327 
1420 
     | 
    
         
             
            router.get('/gov/harbin/kjj', lazyloadRouteHandler('./routes/gov/harbin/kjj'));
         
     | 
| 
       3328 
1421 
     | 
    
         | 
| 
       3329 
     | 
    
         
            -
            // WSJ migrated to v2
         
     | 
| 
       3330 
     | 
    
         
            -
            // router.get('/wsj/:lang/:category?', lazyloadRouteHandler('./routes/wsj/index'));
         
     | 
| 
       3331 
     | 
    
         
            -
             
     | 
| 
       3332 
1422 
     | 
    
         
             
            // China File
         
     | 
| 
       3333 
1423 
     | 
    
         
             
            router.get('/chinafile/:category?', lazyloadRouteHandler('./routes/chinafile/index'));
         
     | 
| 
       3334 
1424 
     | 
    
         | 
| 
         @@ -3343,39 +1433,10 @@ router.get('/grandchallenge/challenges', lazyloadRouteHandler('./routes/grandcha 
     | 
|
| 
       3343 
1433 
     | 
    
         
             
            router.get('/nwpu/:column', lazyloadRouteHandler('./routes/nwpu/index'));
         
     | 
| 
       3344 
1434 
     | 
    
         | 
| 
       3345 
1435 
     | 
    
         
             
            // 美国联邦最高法院
         
     | 
| 
       3346 
     | 
    
         
            -
            router.get('/us/supremecourt/argument_audio/:year?', lazyloadRouteHandler('./routes/us/supremecourt/ 
     | 
| 
       3347 
     | 
    
         
            -
             
     | 
| 
       3348 
     | 
    
         
            -
            // 得到
         
     | 
| 
       3349 
     | 
    
         
            -
            // router.get('/dedao/list/:caty?', lazyloadRouteHandler('./routes/dedao/list'));
         
     | 
| 
       3350 
     | 
    
         
            -
            // router.get('/dedao/knowledge/:topic?/:type?', lazyloadRouteHandler('./routes/dedao/knowledge'));
         
     | 
| 
       3351 
     | 
    
         
            -
            // router.get('/dedao/:caty?', lazyloadRouteHandler('./routes/dedao/index'));
         
     | 
| 
       3352 
     | 
    
         
            -
             
     | 
| 
       3353 
     | 
    
         
            -
            // 未名新闻
         
     | 
| 
       3354 
     | 
    
         
            -
            router.get('/mitbbs/:caty?', lazyloadRouteHandler('./routes/mitbbs/index'));
         
     | 
| 
       3355 
     | 
    
         
            -
             
     | 
| 
       3356 
     | 
    
         
            -
            // 8kcos migrated to v2
         
     | 
| 
       3357 
     | 
    
         
            -
            // router.get('/8kcos/', lazyloadRouteHandler('./routes/8kcos/latest'));
         
     | 
| 
       3358 
     | 
    
         
            -
            // router.get('/8kcos/cat/:cat*', lazyloadRouteHandler('./routes/8kcos/cat'));
         
     | 
| 
       3359 
     | 
    
         
            -
            // router.get('/8kcos/tag/:tag', lazyloadRouteHandler('./routes/8kcos/tag'));
         
     | 
| 
       3360 
     | 
    
         
            -
             
     | 
| 
       3361 
     | 
    
         
            -
            // 贾真的电商108将
         
     | 
| 
       3362 
     | 
    
         
            -
            router.get('/jiazhen108', lazyloadRouteHandler('./routes/jiazhen108/index'));
         
     | 
| 
       3363 
     | 
    
         
            -
             
     | 
| 
       3364 
     | 
    
         
            -
            // Instagram
         
     | 
| 
       3365 
     | 
    
         
            -
            // router.get('/instagram/:category/:key', lazyloadRouteHandler('./routes/instagram/index'));
         
     | 
| 
      
 1436 
     | 
    
         
            +
            router.get('/us/supremecourt/argument_audio/:year?', lazyloadRouteHandler('./routes/us/supremecourt/argument-audio'));
         
     | 
| 
       3366 
1437 
     | 
    
         | 
| 
       3367 
1438 
     | 
    
         
             
            // 优设网
         
     | 
| 
       3368 
     | 
    
         
            -
            router.get('/uisdc/talk/:sort?', lazyloadRouteHandler('./routes/uisdc/talk'));
         
     | 
| 
       3369 
1439 
     | 
    
         
             
            router.get('/uisdc/hangye/:caty?', lazyloadRouteHandler('./routes/uisdc/hangye'));
         
     | 
| 
       3370 
     | 
    
         
            -
            router.get('/uisdc/news', lazyloadRouteHandler('./routes/uisdc/news'));
         
     | 
| 
       3371 
     | 
    
         
            -
            router.get('/uisdc/zt/:title?', lazyloadRouteHandler('./routes/uisdc/zt'));
         
     | 
| 
       3372 
     | 
    
         
            -
            router.get('/uisdc/topic/:title?/:sort?', lazyloadRouteHandler('./routes/uisdc/topic'));
         
     | 
| 
       3373 
     | 
    
         
            -
             
     | 
| 
       3374 
     | 
    
         
            -
            // 中国劳工观察
         
     | 
| 
       3375 
     | 
    
         
            -
            router.get('/chinalaborwatch/reports/:lang?/:industry?', lazyloadRouteHandler('./routes/chinalaborwatch/reports'));
         
     | 
| 
       3376 
     | 
    
         
            -
             
     | 
| 
       3377 
     | 
    
         
            -
            // Phoronix
         
     | 
| 
       3378 
     | 
    
         
            -
            // router.get('/phoronix/:page/:queryOrItem?', lazyloadRouteHandler('./routes/phoronix/index'));
         
     | 
| 
       3379 
1440 
     | 
    
         | 
| 
       3380 
1441 
     | 
    
         
             
            // 美国中央情报局
         
     | 
| 
       3381 
1442 
     | 
    
         
             
            router.get('/cia/foia-annual-report', lazyloadRouteHandler('./routes/us/cia/foia-annual-report'));
         
     | 
| 
         @@ -3386,18 +1447,9 @@ router.get('/everything/changes', lazyloadRouteHandler('./routes/everything/chan 
     | 
|
| 
       3386 
1447 
     | 
    
         
             
            // 中国劳工通讯
         
     | 
| 
       3387 
1448 
     | 
    
         
             
            router.get('/clb/commentary/:lang?', lazyloadRouteHandler('./routes/clb/commentary'));
         
     | 
| 
       3388 
1449 
     | 
    
         | 
| 
       3389 
     | 
    
         
            -
            // 国际教育研究所
         
     | 
| 
       3390 
     | 
    
         
            -
            router.get('/iie/blog', lazyloadRouteHandler('./routes/iie/blog'));
         
     | 
| 
       3391 
     | 
    
         
            -
             
     | 
| 
       3392 
     | 
    
         
            -
            // McKinsey Greater China
         
     | 
| 
       3393 
     | 
    
         
            -
            // router.get('/mckinsey/:category?', lazyloadRouteHandler('./routes/mckinsey/index'));
         
     | 
| 
       3394 
     | 
    
         
            -
             
     | 
| 
       3395 
1450 
     | 
    
         
             
            // 超理论坛
         
     | 
| 
       3396 
1451 
     | 
    
         
             
            router.get('/chaoli/:channel?', lazyloadRouteHandler('./routes/chaoli/index'));
         
     | 
| 
       3397 
1452 
     | 
    
         | 
| 
       3398 
     | 
    
         
            -
            // Polar
         
     | 
| 
       3399 
     | 
    
         
            -
            router.get('/polar/blog', lazyloadRouteHandler('./routes/polar/blog'));
         
     | 
| 
       3400 
     | 
    
         
            -
             
     | 
| 
       3401 
1453 
     | 
    
         
             
            // XYplorer
         
     | 
| 
       3402 
1454 
     | 
    
         
             
            router.get('/xyplorer/whatsnew', lazyloadRouteHandler('./routes/xyplorer/whatsnew'));
         
     | 
| 
       3403 
1455 
     | 
    
         | 
| 
         @@ -3407,15 +1459,6 @@ router.get('/rescuetime/release-notes/:os?', lazyloadRouteHandler('./routes/resc 
     | 
|
| 
       3407 
1459 
     | 
    
         
             
            // Total Commander
         
     | 
| 
       3408 
1460 
     | 
    
         
             
            router.get('/totalcommander/whatsnew', lazyloadRouteHandler('./routes/totalcommander/whatsnew'));
         
     | 
| 
       3409 
1461 
     | 
    
         | 
| 
       3410 
     | 
    
         
            -
            // Blizzard
         
     | 
| 
       3411 
     | 
    
         
            -
            router.get('/blizzard/news/:language?/:category?', lazyloadRouteHandler('./routes/blizzard/news'));
         
     | 
| 
       3412 
     | 
    
         
            -
             
     | 
| 
       3413 
     | 
    
         
            -
            // DeepMind
         
     | 
| 
       3414 
     | 
    
         
            -
            // router.get('/deepmind/blog/:category?', lazyloadRouteHandler('./routes/deepmind/blog'));
         
     | 
| 
       3415 
     | 
    
         
            -
             
     | 
| 
       3416 
     | 
    
         
            -
            // 东西智库
         
     | 
| 
       3417 
     | 
    
         
            -
            // router.get('/dx2025/:type?/:category?', lazyloadRouteHandler('./routes/dx2025/index'));
         
     | 
| 
       3418 
     | 
    
         
            -
             
     | 
| 
       3419 
1462 
     | 
    
         
             
            // DeepL
         
     | 
| 
       3420 
1463 
     | 
    
         
             
            router.get('/deepl/blog/:lang?', lazyloadRouteHandler('./routes/deepl/blog'));
         
     | 
| 
       3421 
1464 
     | 
    
         | 
| 
         @@ -3429,64 +1472,18 @@ router.get('/qstheory/:category?', lazyloadRouteHandler('./routes/qstheory/index 
     | 
|
| 
       3429 
1472 
     | 
    
         
             
            // 生命时报
         
     | 
| 
       3430 
1473 
     | 
    
         
             
            router.get('/lifetimes/:category?', lazyloadRouteHandler('./routes/lifetimes/index'));
         
     | 
| 
       3431 
1474 
     | 
    
         | 
| 
       3432 
     | 
    
         
            -
            // MakeUseOf
         
     | 
| 
       3433 
     | 
    
         
            -
            router.get('/makeuseof/:category?', lazyloadRouteHandler('./routes/makeuseof/index'));
         
     | 
| 
       3434 
     | 
    
         
            -
             
     | 
| 
       3435 
     | 
    
         
            -
            // 瞬Matataki
         
     | 
| 
       3436 
     | 
    
         
            -
            // 热门作品
         
     | 
| 
       3437 
     | 
    
         
            -
            router.get('/matataki/posts/hot/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/scoreranking'));
         
     | 
| 
       3438 
     | 
    
         
            -
            // 最新作品
         
     | 
| 
       3439 
     | 
    
         
            -
            router.get('/matataki/posts/latest/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/timeranking'));
         
     | 
| 
       3440 
     | 
    
         
            -
            // 作者创作
         
     | 
| 
       3441 
     | 
    
         
            -
            router.get('/matataki/users/:authorId/posts/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/author'));
         
     | 
| 
       3442 
     | 
    
         
            -
            // Fan票关联作品
         
     | 
| 
       3443 
     | 
    
         
            -
            router.get('/matataki/tokens/:id/posts/:filterCode/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/token'));
         
     | 
| 
       3444 
     | 
    
         
            -
            // 标签关联作品
         
     | 
| 
       3445 
     | 
    
         
            -
            router.get('/matataki/tags/:tagId/:tagName/posts/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/tag'));
         
     | 
| 
       3446 
     | 
    
         
            -
            // 收藏夹
         
     | 
| 
       3447 
     | 
    
         
            -
            router.get('/matataki/users/:userId/favorites/:favoriteListId/posts/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/favorite'));
         
     | 
| 
       3448 
     | 
    
         
            -
             
     | 
| 
       3449 
     | 
    
         
            -
            // SoBooks
         
     | 
| 
       3450 
     | 
    
         
            -
            // router.get('/sobooks/tag/:id?', lazyloadRouteHandler('./routes/sobooks/tag'));
         
     | 
| 
       3451 
     | 
    
         
            -
            // router.get('/sobooks/date/:date?', lazyloadRouteHandler('./routes/sobooks/date'));
         
     | 
| 
       3452 
     | 
    
         
            -
            // router.get('/sobooks/:category?', lazyloadRouteHandler('./routes/sobooks/index'));
         
     | 
| 
       3453 
     | 
    
         
            -
             
     | 
| 
       3454 
1475 
     | 
    
         
             
            // Zhimap 知识导图社区
         
     | 
| 
       3455 
1476 
     | 
    
         
             
            router.get('/zhimap/:categoryUuid?/:recommend?', lazyloadRouteHandler('./routes/zhimap/index'));
         
     | 
| 
       3456 
1477 
     | 
    
         | 
| 
       3457 
     | 
    
         
            -
            // Fantia
         
     | 
| 
       3458 
     | 
    
         
            -
            // router.get('/fantia/search/:type?/:caty?/:peroid?/:order?/:rating?/:keyword?', lazyloadRouteHandler('./routes/fantia/search'));
         
     | 
| 
       3459 
     | 
    
         
            -
            // router.get('/fantia/user/:id', lazyloadRouteHandler('./routes/fantia/user'));
         
     | 
| 
       3460 
     | 
    
         
            -
             
     | 
| 
       3461 
     | 
    
         
            -
            // i-Cable
         
     | 
| 
       3462 
     | 
    
         
            -
            router.get('/icable/:category/:option?', lazyloadRouteHandler('./routes/icable/category'));
         
     | 
| 
       3463 
     | 
    
         
            -
             
     | 
| 
       3464 
     | 
    
         
            -
            // ProcessOn
         
     | 
| 
       3465 
     | 
    
         
            -
            router.get('/processon/popular/:cate?/:sort?', lazyloadRouteHandler('./routes/processon/popular'));
         
     | 
| 
       3466 
     | 
    
         
            -
             
     | 
| 
       3467 
1478 
     | 
    
         
             
            // Mathpix
         
     | 
| 
       3468 
1479 
     | 
    
         
             
            router.get('/mathpix/blog', lazyloadRouteHandler('./routes/mathpix/blog'));
         
     | 
| 
       3469 
1480 
     | 
    
         | 
| 
       3470 
1481 
     | 
    
         
             
            // OneNote Gem Add-Ins
         
     | 
| 
       3471 
1482 
     | 
    
         
             
            router.get('/onenotegem/release', lazyloadRouteHandler('./routes/onenotegem/release'));
         
     | 
| 
       3472 
1483 
     | 
    
         | 
| 
       3473 
     | 
    
         
            -
            // Mind42
         
     | 
| 
       3474 
     | 
    
         
            -
            router.get('/mind42/tag/:id', lazyloadRouteHandler('./routes/mind42/tag'));
         
     | 
| 
       3475 
     | 
    
         
            -
            router.get('/mind42/search/:keyword', lazyloadRouteHandler('./routes/mind42/search'));
         
     | 
| 
       3476 
     | 
    
         
            -
            router.get('/mind42/:caty?', lazyloadRouteHandler('./routes/mind42/index'));
         
     | 
| 
       3477 
     | 
    
         
            -
             
     | 
| 
       3478 
1484 
     | 
    
         
             
            // 幕布网
         
     | 
| 
       3479 
1485 
     | 
    
         
             
            router.get('/mubu/explore/:category?/:title?', lazyloadRouteHandler('./routes/mubu/explore'));
         
     | 
| 
       3480 
1486 
     | 
    
         | 
| 
       3481 
     | 
    
         
            -
            // Esquirehk
         
     | 
| 
       3482 
     | 
    
         
            -
            router.get('/esquirehk/tag/:id', lazyloadRouteHandler('./routes/esquirehk/tag'));
         
     | 
| 
       3483 
     | 
    
         
            -
             
     | 
| 
       3484 
     | 
    
         
            -
            // 国家普通话测试 杭州市
         
     | 
| 
       3485 
     | 
    
         
            -
            router.get('/putonghua', lazyloadRouteHandler('./routes/putonghua/hangzhou'));
         
     | 
| 
       3486 
     | 
    
         
            -
             
     | 
| 
       3487 
     | 
    
         
            -
            // 国家自学考试 上海市 migrated to v2 /shmeea/self-study
         
     | 
| 
       3488 
     | 
    
         
            -
            // router.get('/self-study/shanghai', require('./routes/self-study/shanghai'));
         
     | 
| 
       3489 
     | 
    
         
            -
             
     | 
| 
       3490 
1487 
     | 
    
         
             
            // 有道云笔记
         
     | 
| 
       3491 
1488 
     | 
    
         
             
            router.get('/youdao/xueba', lazyloadRouteHandler('./routes/youdao/xueba'));
         
     | 
| 
       3492 
1489 
     | 
    
         
             
            router.get('/youdao/latest', lazyloadRouteHandler('./routes/youdao/latest'));
         
     | 
| 
         @@ -3498,48 +1495,27 @@ router.get('/yinxiang/card/:id', lazyloadRouteHandler('./routes/yinxiang/card')) 
     | 
|
| 
       3498 
1495 
     | 
    
         
             
            router.get('/yinxiang/personal/:id', lazyloadRouteHandler('./routes/yinxiang/personal'));
         
     | 
| 
       3499 
1496 
     | 
    
         
             
            router.get('/yinxiang/category/:id', lazyloadRouteHandler('./routes/yinxiang/category'));
         
     | 
| 
       3500 
1497 
     | 
    
         | 
| 
       3501 
     | 
    
         
            -
            // 晚点LatePost
         
     | 
| 
       3502 
     | 
    
         
            -
            // router.get('/latepost/:proma?', lazyloadRouteHandler('./routes/latepost/index'));
         
     | 
| 
       3503 
     | 
    
         
            -
             
     | 
| 
       3504 
     | 
    
         
            -
            // 遠見 gvm.com.tw
         
     | 
| 
       3505 
     | 
    
         
            -
            router.get('/gvm/index/:category?', lazyloadRouteHandler('./routes/gvm/index'));
         
     | 
| 
       3506 
     | 
    
         
            -
             
     | 
| 
       3507 
1498 
     | 
    
         
             
            // 触乐
         
     | 
| 
       3508 
1499 
     | 
    
         
             
            router.get('/chuapp/index/:category?', lazyloadRouteHandler('./routes/chuapp/index'));
         
     | 
| 
       3509 
1500 
     | 
    
         | 
| 
       3510 
1501 
     | 
    
         
             
            // Deloitte
         
     | 
| 
       3511 
1502 
     | 
    
         
             
            router.get('/deloitte/industries/:category?', lazyloadRouteHandler('./routes/deloitte/industries'));
         
     | 
| 
       3512 
1503 
     | 
    
         | 
| 
       3513 
     | 
    
         
            -
            // 特斯拉系统更新
         
     | 
| 
       3514 
     | 
    
         
            -
            router.get('/tesla', lazyloadRouteHandler('./routes/tesla/update'));
         
     | 
| 
       3515 
     | 
    
         
            -
             
     | 
| 
       3516 
1504 
     | 
    
         
             
            // 复旦大学继续教育学院
         
     | 
| 
       3517 
1505 
     | 
    
         
             
            router.get('/fudan/cce', lazyloadRouteHandler('./routes/universities/fudan/cce'));
         
     | 
| 
       3518 
1506 
     | 
    
         | 
| 
       3519 
     | 
    
         
            -
            // LowEndTalk
         
     | 
| 
       3520 
     | 
    
         
            -
            router.get('/lowendtalk/discussion/:id?', lazyloadRouteHandler('./routes/lowendtalk/discussion'));
         
     | 
| 
       3521 
     | 
    
         
            -
             
     | 
| 
       3522 
1507 
     | 
    
         
             
            // 无产者评论
         
     | 
| 
       3523 
1508 
     | 
    
         
             
            router.get('/proletar/:type?/:id?', lazyloadRouteHandler('./routes/proletar/index'));
         
     | 
| 
       3524 
1509 
     | 
    
         | 
| 
       3525 
1510 
     | 
    
         
             
            // QTTabBar
         
     | 
| 
       3526 
1511 
     | 
    
         
             
            router.get('/qttabbar/change-log', lazyloadRouteHandler('./routes/qttabbar/change-log'));
         
     | 
| 
       3527 
1512 
     | 
    
         | 
| 
       3528 
     | 
    
         
            -
            // 酷18
         
     | 
| 
       3529 
     | 
    
         
            -
            // router.get('/cool18/:id?/:type?/:keyword?', lazyloadRouteHandler('./routes/cool18/index'));
         
     | 
| 
       3530 
     | 
    
         
            -
             
     | 
| 
       3531 
1513 
     | 
    
         
             
            // 美国贸易代表办公室
         
     | 
| 
       3532 
1514 
     | 
    
         
             
            router.get('/ustr/press-releases/:year?/:month?', lazyloadRouteHandler('./routes/us/ustr/press-releases'));
         
     | 
| 
       3533 
1515 
     | 
    
         | 
| 
       3534 
1516 
     | 
    
         
             
            // 游戏动力
         
     | 
| 
       3535 
1517 
     | 
    
         
             
            router.get('/vgn/:platform?', lazyloadRouteHandler('./routes/vgn/index'));
         
     | 
| 
       3536 
1518 
     | 
    
         | 
| 
       3537 
     | 
    
         
            -
            // 国际能源署
         
     | 
| 
       3538 
     | 
    
         
            -
            router.get('/iea/:category?', lazyloadRouteHandler('./routes/iea/index'));
         
     | 
| 
       3539 
     | 
    
         
            -
             
     | 
| 
       3540 
     | 
    
         
            -
            // 中国计算机学会
         
     | 
| 
       3541 
     | 
    
         
            -
            // router.get('/ccf/news/:category?', lazyloadRouteHandler('./routes/ccf/news'));
         
     | 
| 
       3542 
     | 
    
         
            -
             
     | 
| 
       3543 
1519 
     | 
    
         
             
            // The Brain
         
     | 
| 
       3544 
1520 
     | 
    
         
             
            router.get('/thebrain/:category?', lazyloadRouteHandler('./routes/thebrain/blog'));
         
     | 
| 
       3545 
1521 
     | 
    
         | 
| 
         @@ -3555,14 +1531,8 @@ router.get('/marginnote/tag/:id?', lazyloadRouteHandler('./routes/marginnote/tag 
     | 
|
| 
       3555 
1531 
     | 
    
         
             
            // ASML
         
     | 
| 
       3556 
1532 
     | 
    
         
             
            router.get('/asml/press-releases', lazyloadRouteHandler('./routes/asml/press-releases'));
         
     | 
| 
       3557 
1533 
     | 
    
         | 
| 
       3558 
     | 
    
         
            -
            // 中国机械工程学会
         
     | 
| 
       3559 
     | 
    
         
            -
            router.get('/cmes/news/:category?', lazyloadRouteHandler('./routes/cmes/news'));
         
     | 
| 
       3560 
     | 
    
         
            -
             
     | 
| 
       3561 
     | 
    
         
            -
            // Craigslist
         
     | 
| 
       3562 
     | 
    
         
            -
            router.get('/craigslist/:location/:type', lazyloadRouteHandler('./routes/craigslist/search'));
         
     | 
| 
       3563 
     | 
    
         
            -
             
     | 
| 
       3564 
1534 
     | 
    
         
             
            // 有趣天文奇观
         
     | 
| 
       3565 
     | 
    
         
            -
            router.get('/interesting-sky/astronomical_events/:year?', lazyloadRouteHandler('./routes/interesting-sky/ 
     | 
| 
      
 1535 
     | 
    
         
            +
            router.get('/interesting-sky/astronomical_events/:year?', lazyloadRouteHandler('./routes/interesting-sky/astronomical-events'));
         
     | 
| 
       3566 
1536 
     | 
    
         
             
            router.get('/interesting-sky/recent-interesting', lazyloadRouteHandler('./routes/interesting-sky/recent-interesting'));
         
     | 
| 
       3567 
1537 
     | 
    
         
             
            router.get('/interesting-sky', lazyloadRouteHandler('./routes/interesting-sky/index'));
         
     | 
| 
       3568 
1538 
     | 
    
         | 
| 
         @@ -3572,12 +1542,6 @@ router.get('/mathunion/fields-medal', lazyloadRouteHandler('./routes/mathunion/f 
     | 
|
| 
       3572 
1542 
     | 
    
         
             
            // ACM
         
     | 
| 
       3573 
1543 
     | 
    
         
             
            router.get('/acm/amturingaward', lazyloadRouteHandler('./routes/acm/amturingaward'));
         
     | 
| 
       3574 
1544 
     | 
    
         | 
| 
       3575 
     | 
    
         
            -
            // 網路天文館
         
     | 
| 
       3576 
     | 
    
         
            -
            router.get('/tam/forecast', lazyloadRouteHandler('./routes/tam/forecast'));
         
     | 
| 
       3577 
     | 
    
         
            -
             
     | 
| 
       3578 
     | 
    
         
            -
            // Day One
         
     | 
| 
       3579 
     | 
    
         
            -
            router.get('/dayone/blog', lazyloadRouteHandler('./routes/dayone/blog'));
         
     | 
| 
       3580 
     | 
    
         
            -
             
     | 
| 
       3581 
1545 
     | 
    
         
             
            // 滴答清单
         
     | 
| 
       3582 
1546 
     | 
    
         
             
            router.get('/dida365/habit/checkins', lazyloadRouteHandler('./routes/dida365/habit-checkins'));
         
     | 
| 
       3583 
1547 
     | 
    
         | 
| 
         @@ -3585,10 +1549,7 @@ router.get('/dida365/habit/checkins', lazyloadRouteHandler('./routes/dida365/hab 
     | 
|
| 
       3585 
1549 
     | 
    
         
             
            router.get('/ditto/changes/:type?', lazyloadRouteHandler('./routes/ditto/changes'));
         
     | 
| 
       3586 
1550 
     | 
    
         | 
| 
       3587 
1551 
     | 
    
         
             
            // iDaily 每日环球视野
         
     | 
| 
       3588 
     | 
    
         
            -
            router.get('/idaily/today', lazyloadRouteHandler('./routes/idaily/index'));
         
     | 
| 
       3589 
     | 
    
         
            -
             
     | 
| 
       3590 
     | 
    
         
            -
            // 北屋
         
     | 
| 
       3591 
     | 
    
         
            -
            router.get('/northhouse/:category?', lazyloadRouteHandler('./routes/northhouse/index'));
         
     | 
| 
      
 1552 
     | 
    
         
            +
            // router.get('/idaily/today', lazyloadRouteHandler('./routes/idaily/index'));
         
     | 
| 
       3592 
1553 
     | 
    
         | 
| 
       3593 
1554 
     | 
    
         
             
            // Oak Ridge National Laboratory
         
     | 
| 
       3594 
1555 
     | 
    
         
             
            router.get('/ornl/news', lazyloadRouteHandler('./routes/ornl/news'));
         
     | 
| 
         @@ -3596,24 +1557,9 @@ router.get('/ornl/news', lazyloadRouteHandler('./routes/ornl/news')); 
     | 
|
| 
       3596 
1557 
     | 
    
         
             
            // 信阳师范学院 自考办
         
     | 
| 
       3597 
1558 
     | 
    
         
             
            router.get('/xynu/zkb/:category', lazyloadRouteHandler('./routes/universities/xynu/zkb'));
         
     | 
| 
       3598 
1559 
     | 
    
         | 
| 
       3599 
     | 
    
         
            -
            // Bell Labs
         
     | 
| 
       3600 
     | 
    
         
            -
            router.get('/bell-labs/events-news/:category?', lazyloadRouteHandler('./routes/bell-labs/events-news.js'));
         
     | 
| 
       3601 
     | 
    
         
            -
             
     | 
| 
       3602 
     | 
    
         
            -
            // 中国科学院青年创新促进会
         
     | 
| 
       3603 
     | 
    
         
            -
            router.get('/yicas/blog', lazyloadRouteHandler('./routes/yicas/blog'));
         
     | 
| 
       3604 
     | 
    
         
            -
             
     | 
| 
       3605 
     | 
    
         
            -
            // 九三学社
         
     | 
| 
       3606 
     | 
    
         
            -
            router.get('/93/:category?', lazyloadRouteHandler('./routes/93/index'));
         
     | 
| 
       3607 
     | 
    
         
            -
             
     | 
| 
       3608 
     | 
    
         
            -
            // 科学网
         
     | 
| 
       3609 
     | 
    
         
            -
            // router.get('/sciencenet/blog/:type?/:time?/:sort?', lazyloadRouteHandler('./routes/sciencenet/blog'));
         
     | 
| 
       3610 
     | 
    
         
            -
             
     | 
| 
       3611 
1560 
     | 
    
         
             
            // DailyArt
         
     | 
| 
       3612 
1561 
     | 
    
         
             
            router.get('/dailyart/:language?', lazyloadRouteHandler('./routes/dailyart/index'));
         
     | 
| 
       3613 
1562 
     | 
    
         | 
| 
       3614 
     | 
    
         
            -
            // SCBOY
         
     | 
| 
       3615 
     | 
    
         
            -
            router.get('/scboy/thread/:tid', lazyloadRouteHandler('./routes/scboy/thread'));
         
     | 
| 
       3616 
     | 
    
         
            -
             
     | 
| 
       3617 
1563 
     | 
    
         
             
            // 猿料
         
     | 
| 
       3618 
1564 
     | 
    
         
             
            router.get('/yuanliao/:tag?/:sort?', lazyloadRouteHandler('./routes/yuanliao/index'));
         
     | 
| 
       3619 
1565 
     | 
    
         | 
| 
         @@ -3623,37 +1569,15 @@ router.get('/cppcc/:slug?', lazyloadRouteHandler('./routes/gov/cppcc/index')); 
     | 
|
| 
       3623 
1569 
     | 
    
         
             
            // National Association of Colleges and Employers
         
     | 
| 
       3624 
1570 
     | 
    
         
             
            router.get('/nace/blog/:sort?', lazyloadRouteHandler('./routes/nace/blog'));
         
     | 
| 
       3625 
1571 
     | 
    
         | 
| 
       3626 
     | 
    
         
            -
            // Caixin Latest
         
     | 
| 
       3627 
     | 
    
         
            -
            // router.get('/caixin/latest', lazyloadRouteHandler('./routes/caixin/latest'));
         
     | 
| 
       3628 
     | 
    
         
            -
             
     | 
| 
       3629 
1572 
     | 
    
         
             
            // Semiconductor Industry Association
         
     | 
| 
       3630 
1573 
     | 
    
         
             
            router.get('/semiconductors/latest-news', lazyloadRouteHandler('./routes/semiconductors/latest-news'));
         
     | 
| 
       3631 
1574 
     | 
    
         | 
| 
       3632 
     | 
    
         
            -
            // VOA News
         
     | 
| 
       3633 
     | 
    
         
            -
            router.get('/voa/day-photos', lazyloadRouteHandler('./routes/voa/day-photos'));
         
     | 
| 
       3634 
     | 
    
         
            -
             
     | 
| 
       3635 
1575 
     | 
    
         
             
            // Voice of America
         
     | 
| 
       3636 
1576 
     | 
    
         
             
            router.get('/voa/:language/:channel?', lazyloadRouteHandler('./routes/voa/index'));
         
     | 
| 
       3637 
1577 
     | 
    
         | 
| 
       3638 
     | 
    
         
            -
            // 留园网
         
     | 
| 
       3639 
     | 
    
         
            -
            // router.get('/6park/:id?/:type?/:keyword?', lazyloadRouteHandler('./routes/6park/index'));
         
     | 
| 
       3640 
     | 
    
         
            -
             
     | 
| 
       3641 
     | 
    
         
            -
            // 哔嘀影视
         
     | 
| 
       3642 
     | 
    
         
            -
            // router.get('/mp4er/:type?/:caty?/:area?/:year?/:order?', lazyloadRouteHandler('./routes/mp4er/index'));
         
     | 
| 
       3643 
     | 
    
         
            -
            // router.get('/bde4/:type?/:caty?/:area?/:year?/:order?', lazyloadRouteHandler('./routes/mp4er/index'));
         
     | 
| 
       3644 
     | 
    
         
            -
             
     | 
| 
       3645 
     | 
    
         
            -
            // 上海证券交易所
         
     | 
| 
       3646 
     | 
    
         
            -
            // router.get('/sse/sserules/:slug?', lazyloadRouteHandler('./routes/sse/sserules'));
         
     | 
| 
       3647 
     | 
    
         
            -
             
     | 
| 
       3648 
     | 
    
         
            -
            // 游戏葡萄
         
     | 
| 
       3649 
     | 
    
         
            -
            router.get('/gamegrape/:id?', lazyloadRouteHandler('./routes/gamegrape/index'));
         
     | 
| 
       3650 
     | 
    
         
            -
             
     | 
| 
       3651 
1578 
     | 
    
         
             
            // 阳光高考
         
     | 
| 
       3652 
1579 
     | 
    
         
             
            router.get('/chsi/zszcgd/:category?', lazyloadRouteHandler('./routes/chsi/zszcgd'));
         
     | 
| 
       3653 
1580 
     | 
    
         | 
| 
       3654 
     | 
    
         
            -
            // 眾新聞
         
     | 
| 
       3655 
     | 
    
         
            -
            router.get('/hkcnews/news/:category?', lazyloadRouteHandler('./routes/hkcnews/news'));
         
     | 
| 
       3656 
     | 
    
         
            -
             
     | 
| 
       3657 
1581 
     | 
    
         
             
            // AnyTXT
         
     | 
| 
       3658 
1582 
     | 
    
         
             
            router.get('/anytxt/release-notes', lazyloadRouteHandler('./routes/anytxt/release-notes'));
         
     | 
| 
       3659 
1583 
     | 
    
         | 
| 
         @@ -3663,17 +1587,9 @@ router.get('/mofish/:id', lazyloadRouteHandler('./routes/mofish/index')); 
     | 
|
| 
       3663 
1587 
     | 
    
         
             
            // Mcdonalds
         
     | 
| 
       3664 
1588 
     | 
    
         
             
            router.get('/mcdonalds/:category', lazyloadRouteHandler('./routes/mcdonalds/news'));
         
     | 
| 
       3665 
1589 
     | 
    
         | 
| 
       3666 
     | 
    
         
            -
            // Pincong 品葱 migrated to v2
         
     | 
| 
       3667 
     | 
    
         
            -
            // router.get('/pincong/category/:category?/:sort?', lazyloadRouteHandler('./routes/pincong/index'));
         
     | 
| 
       3668 
     | 
    
         
            -
            // router.get('/pincong/hot/:category?', lazyloadRouteHandler('./routes/pincong/hot'));
         
     | 
| 
       3669 
     | 
    
         
            -
            // router.get('/pincong/topic/:topic', lazyloadRouteHandler('./routes/pincong/topic'));
         
     | 
| 
       3670 
     | 
    
         
            -
             
     | 
| 
       3671 
1590 
     | 
    
         
             
            // GoComics
         
     | 
| 
       3672 
1591 
     | 
    
         
             
            router.get('/gocomics/:name', lazyloadRouteHandler('./routes/gocomics/index'));
         
     | 
| 
       3673 
1592 
     | 
    
         | 
| 
       3674 
     | 
    
         
            -
            // Comics Kingdom
         
     | 
| 
       3675 
     | 
    
         
            -
            // router.get('/comicskingdom/:name', lazyloadRouteHandler('./routes/comicskingdom/index'));
         
     | 
| 
       3676 
     | 
    
         
            -
             
     | 
| 
       3677 
1593 
     | 
    
         
             
            // Media Digest
         
     | 
| 
       3678 
1594 
     | 
    
         
             
            router.get('/mediadigest/:range/:category?', lazyloadRouteHandler('./routes/mediadigest/category'));
         
     | 
| 
       3679 
1595 
     | 
    
         | 
| 
         @@ -3688,23 +1604,12 @@ router.get('/simpread/changelog', lazyloadRouteHandler('./routes/simpread/change 
     | 
|
| 
       3688 
1604 
     | 
    
         
             
            // booth.pm
         
     | 
| 
       3689 
1605 
     | 
    
         
             
            router.get('/booth.pm/shop/:subdomain', lazyloadRouteHandler('./routes/booth-pm/shop'));
         
     | 
| 
       3690 
1606 
     | 
    
         | 
| 
       3691 
     | 
    
         
            -
            // Minecraft feed the beast
         
     | 
| 
       3692 
     | 
    
         
            -
            router.get('/feed-the-beast/modpack/:modpackEntry', lazyloadRouteHandler('./routes/feed-the-beast/modpack'));
         
     | 
| 
       3693 
     | 
    
         
            -
             
     | 
| 
       3694 
1607 
     | 
    
         
             
            // Gab
         
     | 
| 
       3695 
1608 
     | 
    
         
             
            router.get('/gab/user/:username', lazyloadRouteHandler('./routes/gab/user'));
         
     | 
| 
       3696 
     | 
    
         
            -
            router.get('/gab/popular/:sort?', lazyloadRouteHandler('./routes/gab/explore'));
         
     | 
| 
       3697 
     | 
    
         
            -
             
     | 
| 
       3698 
     | 
    
         
            -
            // NEW 字幕组
         
     | 
| 
       3699 
     | 
    
         
            -
            // router.get('/newzmz/view/:id', lazyloadRouteHandler('./routes/newzmz/view'));
         
     | 
| 
       3700 
     | 
    
         
            -
            // router.get('/newzmz/:category?', lazyloadRouteHandler('./routes/newzmz/index'));
         
     | 
| 
       3701 
1609 
     | 
    
         | 
| 
       3702 
1610 
     | 
    
         
             
            // Phrack Magazine
         
     | 
| 
       3703 
1611 
     | 
    
         
             
            router.get('/phrack', lazyloadRouteHandler('./routes/phrack/index'));
         
     | 
| 
       3704 
1612 
     | 
    
         | 
| 
       3705 
     | 
    
         
            -
            // 通識·現代中國
         
     | 
| 
       3706 
     | 
    
         
            -
            // router.get('/chiculture/topic/:category?', lazyloadRouteHandler('./routes/chiculture/topic'));
         
     | 
| 
       3707 
     | 
    
         
            -
             
     | 
| 
       3708 
1613 
     | 
    
         
             
            // CQUT News
         
     | 
| 
       3709 
1614 
     | 
    
         
             
            router.get('/cqut/news', lazyloadRouteHandler('./routes/universities/cqut/cqut-news'));
         
     | 
| 
       3710 
1615 
     | 
    
         
             
            router.get('/cqut/libnews', lazyloadRouteHandler('./routes/universities/cqut/cqut-libnews'));
         
     | 
| 
         @@ -3712,66 +1617,27 @@ router.get('/cqut/libnews', lazyloadRouteHandler('./routes/universities/cqut/cqu 
     | 
|
| 
       3712 
1617 
     | 
    
         
             
            // 城农 Growin' City
         
     | 
| 
       3713 
1618 
     | 
    
         
             
            router.get('/growincity/news/:id?', lazyloadRouteHandler('./routes/growincity/news'));
         
     | 
| 
       3714 
1619 
     | 
    
         | 
| 
       3715 
     | 
    
         
            -
            // Thrillist
         
     | 
| 
       3716 
     | 
    
         
            -
            router.get('/thrillist/:tag?', lazyloadRouteHandler('./routes/thrillist/index'));
         
     | 
| 
       3717 
     | 
    
         
            -
             
     | 
| 
       3718 
     | 
    
         
            -
            // 丁香园
         
     | 
| 
       3719 
     | 
    
         
            -
            router.get('/dxy/vaccine/:province?/:city?/:location?', lazyloadRouteHandler('./routes/dxy/vaccine'));
         
     | 
| 
       3720 
     | 
    
         
            -
             
     | 
| 
       3721 
     | 
    
         
            -
            // Wtu
         
     | 
| 
       3722 
     | 
    
         
            -
            router.get('/wtu/:type', lazyloadRouteHandler('./routes/universities/wtu'));
         
     | 
| 
       3723 
     | 
    
         
            -
             
     | 
| 
       3724 
1620 
     | 
    
         
             
            // 中国庭审公开网
         
     | 
| 
       3725 
1621 
     | 
    
         
             
            router.get('/tingshen', lazyloadRouteHandler('./routes/tingshen/tingshen'));
         
     | 
| 
       3726 
1622 
     | 
    
         | 
| 
       3727 
1623 
     | 
    
         
             
            // 中华人民共和国人力资源和社会保障部
         
     | 
| 
       3728 
1624 
     | 
    
         
             
            router.get('/gov/mohrss/sbjm/:category?', lazyloadRouteHandler('./routes/gov/mohrss/sbjm'));
         
     | 
| 
       3729 
1625 
     | 
    
         | 
| 
       3730 
     | 
    
         
            -
            // 深影译站
         
     | 
| 
       3731 
     | 
    
         
            -
            router.get('/shinybbs/latest', lazyloadRouteHandler('./routes/shinybbs/latest'));
         
     | 
| 
       3732 
     | 
    
         
            -
            router.get('/shinybbs/p/:id', lazyloadRouteHandler('./routes/shinybbs/p'));
         
     | 
| 
       3733 
     | 
    
         
            -
            router.get('/shinybbs/page/:id?', lazyloadRouteHandler('./routes/shinybbs/index'));
         
     | 
| 
       3734 
     | 
    
         
            -
            router.get('/shinybbs', lazyloadRouteHandler('./routes/shinybbs/index'));
         
     | 
| 
       3735 
     | 
    
         
            -
             
     | 
| 
       3736 
1626 
     | 
    
         
             
            // 天眼查
         
     | 
| 
       3737 
1627 
     | 
    
         
             
            router.get('/tianyancha/hot', lazyloadRouteHandler('./routes/tianyancha/hot'));
         
     | 
| 
       3738 
1628 
     | 
    
         | 
| 
       3739 
1629 
     | 
    
         
             
            // King Arthur
         
     | 
| 
       3740 
1630 
     | 
    
         
             
            router.get('/kingarthur/:type', lazyloadRouteHandler('./routes/kingarthur/index'));
         
     | 
| 
       3741 
1631 
     | 
    
         | 
| 
       3742 
     | 
    
         
            -
            // 新华网
         
     | 
| 
       3743 
     | 
    
         
            -
            // router.get('/news/whxw', lazyloadRouteHandler('./routes/news/whxw'));
         
     | 
| 
       3744 
     | 
    
         
            -
             
     | 
| 
       3745 
     | 
    
         
            -
            // 游讯网
         
     | 
| 
       3746 
     | 
    
         
            -
            // router.get('/yxdown/recommend', lazyloadRouteHandler('./routes/yxdown/recommend'));
         
     | 
| 
       3747 
     | 
    
         
            -
            // router.get('/yxdown/news/:category?', lazyloadRouteHandler('./routes/yxdown/news'));
         
     | 
| 
       3748 
     | 
    
         
            -
             
     | 
| 
       3749 
     | 
    
         
            -
            // BabeHub
         
     | 
| 
       3750 
     | 
    
         
            -
            router.get('/babehub/search/:keyword?', lazyloadRouteHandler('./routes/babehub/search'));
         
     | 
| 
       3751 
     | 
    
         
            -
            router.get('/babehub/:category?', lazyloadRouteHandler('./routes/babehub/index'));
         
     | 
| 
       3752 
     | 
    
         
            -
             
     | 
| 
       3753 
1632 
     | 
    
         
             
            // 深圳新闻网
         
     | 
| 
       3754 
1633 
     | 
    
         
             
            router.get('/sznews/press', lazyloadRouteHandler('./routes/sznews/press'));
         
     | 
| 
       3755 
1634 
     | 
    
         
             
            router.get('/sznews/ranking', lazyloadRouteHandler('./routes/sznews/ranking'));
         
     | 
| 
       3756 
1635 
     | 
    
         | 
| 
       3757 
     | 
    
         
            -
            // Shuax
         
     | 
| 
       3758 
     | 
    
         
            -
            router.get('/shuax/project/:name?', lazyloadRouteHandler('./routes/shuax/project'));
         
     | 
| 
       3759 
     | 
    
         
            -
             
     | 
| 
       3760 
     | 
    
         
            -
            // BioOne
         
     | 
| 
       3761 
     | 
    
         
            -
            // router.get('/bioone/featured', lazyloadRouteHandler('./routes/bioone/featured'));
         
     | 
| 
       3762 
     | 
    
         
            -
             
     | 
| 
       3763 
     | 
    
         
            -
            // Obsidian
         
     | 
| 
       3764 
     | 
    
         
            -
            router.get('/obsidian/announcements', lazyloadRouteHandler('./routes/obsidian/announcements'));
         
     | 
| 
       3765 
     | 
    
         
            -
             
     | 
| 
       3766 
1636 
     | 
    
         
             
            // 吉林工商学院
         
     | 
| 
       3767 
1637 
     | 
    
         
             
            router.get('/jlbtc/kyc/:category?', lazyloadRouteHandler('./routes/universities/jlbtc/kyc'));
         
     | 
| 
       3768 
1638 
     | 
    
         
             
            router.get('/jlbtc/jwc/:id?', lazyloadRouteHandler('./routes/universities/jlbtc/jwc'));
         
     | 
| 
       3769 
1639 
     | 
    
         
             
            router.get('/jlbtc/:category?', lazyloadRouteHandler('./routes/universities/jlbtc/index'));
         
     | 
| 
       3770 
1640 
     | 
    
         | 
| 
       3771 
     | 
    
         
            -
            // DT 财经 migrated to v2
         
     | 
| 
       3772 
     | 
    
         
            -
            // router.get('/dtcj/datahero/:category?', lazyloadRouteHandler('./routes/dtcj/datahero'));
         
     | 
| 
       3773 
     | 
    
         
            -
            // router.get('/dtcj/datainsight/:id?', lazyloadRouteHandler('./routes/dtcj/datainsight'));
         
     | 
| 
       3774 
     | 
    
         
            -
             
     | 
| 
       3775 
1641 
     | 
    
         
             
            // 劍心.回憶
         
     | 
| 
       3776 
1642 
     | 
    
         
             
            router.get('/kenshin/:category?/:type?', lazyloadRouteHandler('./routes/kenshin/index'));
         
     | 
| 
       3777 
1643 
     | 
    
         | 
| 
         @@ -3779,9 +1645,6 @@ router.get('/kenshin/:category?/:type?', lazyloadRouteHandler('./routes/kenshin/ 
     | 
|
| 
       3779 
1645 
     | 
    
         
             
            router.get('/av01/actor/:name/:type?', lazyloadRouteHandler('./routes/av01/actor'));
         
     | 
| 
       3780 
1646 
     | 
    
         
             
            router.get('/av01/tag/:name/:type?', lazyloadRouteHandler('./routes/av01/tag'));
         
     | 
| 
       3781 
1647 
     | 
    
         | 
| 
       3782 
     | 
    
         
            -
            // macked
         
     | 
| 
       3783 
     | 
    
         
            -
            router.get('/macked/app/:name', lazyloadRouteHandler('./routes/macked/app'));
         
     | 
| 
       3784 
     | 
    
         
            -
             
     | 
| 
       3785 
1648 
     | 
    
         
             
            // 美国劳工联合会-产业工会联合会
         
     | 
| 
       3786 
1649 
     | 
    
         
             
            router.get('/aflcio/blog', lazyloadRouteHandler('./routes/aflcio/blog'));
         
     | 
| 
       3787 
1650 
     | 
    
         | 
| 
         @@ -3799,22 +1662,8 @@ router.get('/furaffinity/journals/:username', lazyloadRouteHandler('./routes/fur 
     | 
|
| 
       3799 
1662 
     | 
    
         
             
            router.get('/furaffinity/gallery/:username/:nsfw?', lazyloadRouteHandler('./routes/furaffinity/gallery'));
         
     | 
| 
       3800 
1663 
     | 
    
         
             
            router.get('/furaffinity/scraps/:username/:nsfw?', lazyloadRouteHandler('./routes/furaffinity/scraps'));
         
     | 
| 
       3801 
1664 
     | 
    
         
             
            router.get('/furaffinity/favorites/:username/:nsfw?', lazyloadRouteHandler('./routes/furaffinity/favorites'));
         
     | 
| 
       3802 
     | 
    
         
            -
            router.get('/furaffinity/submission_comments/:id', lazyloadRouteHandler('./routes/furaffinity/ 
     | 
| 
       3803 
     | 
    
         
            -
            router.get('/furaffinity/journal_comments/:id', lazyloadRouteHandler('./routes/furaffinity/ 
     | 
| 
       3804 
     | 
    
         
            -
             
     | 
| 
       3805 
     | 
    
         
            -
            // 亿欧网
         
     | 
| 
       3806 
     | 
    
         
            -
            router.get('/iyiou', lazyloadRouteHandler('./routes/iyiou'));
         
     | 
| 
       3807 
     | 
    
         
            -
             
     | 
| 
       3808 
     | 
    
         
            -
            // 香港商报
         
     | 
| 
       3809 
     | 
    
         
            -
            router.get('/hkcd/pdf', lazyloadRouteHandler('./routes/hkcd/pdf'));
         
     | 
| 
       3810 
     | 
    
         
            -
             
     | 
| 
       3811 
     | 
    
         
            -
            // 博客来
         
     | 
| 
       3812 
     | 
    
         
            -
            router.get('/bookscomtw/newbooks/:category', lazyloadRouteHandler('./routes/bookscomtw/newbooks'));
         
     | 
| 
       3813 
     | 
    
         
            -
             
     | 
| 
       3814 
     | 
    
         
            -
            // Elite Babes
         
     | 
| 
       3815 
     | 
    
         
            -
            router.get('/elitebabes/videos/:sort?', lazyloadRouteHandler('./routes/elitebabes/videos'));
         
     | 
| 
       3816 
     | 
    
         
            -
            router.get('/elitebabes/search/:keyword?', lazyloadRouteHandler('./routes/elitebabes/search'));
         
     | 
| 
       3817 
     | 
    
         
            -
            router.get('/elitebabes/:category?', lazyloadRouteHandler('./routes/elitebabes/index'));
         
     | 
| 
      
 1665 
     | 
    
         
            +
            router.get('/furaffinity/submission_comments/:id', lazyloadRouteHandler('./routes/furaffinity/submission-comments'));
         
     | 
| 
      
 1666 
     | 
    
         
            +
            router.get('/furaffinity/journal_comments/:id', lazyloadRouteHandler('./routes/furaffinity/journal-comments'));
         
     | 
| 
       3818 
1667 
     | 
    
         | 
| 
       3819 
1668 
     | 
    
         
             
            // Trakt.tv
         
     | 
| 
       3820 
1669 
     | 
    
         
             
            router.get('/trakt/collection/:username/:type?', lazyloadRouteHandler('./routes/trakt/collection'));
         
     | 
| 
         @@ -3822,21 +1671,6 @@ router.get('/trakt/collection/:username/:type?', lazyloadRouteHandler('./routes/ 
     | 
|
| 
       3822 
1671 
     | 
    
         
             
            // 全球化智库
         
     | 
| 
       3823 
1672 
     | 
    
         
             
            router.get('/ccg/:category?', lazyloadRouteHandler('./routes/ccg/index'));
         
     | 
| 
       3824 
1673 
     | 
    
         | 
| 
       3825 
     | 
    
         
            -
            // 少女前线
         
     | 
| 
       3826 
     | 
    
         
            -
            // router.get('/gf-cn/news/:category?', lazyloadRouteHandler('./routes/gf-cn/news'));
         
     | 
| 
       3827 
     | 
    
         
            -
             
     | 
| 
       3828 
     | 
    
         
            -
            // Eagle
         
     | 
| 
       3829 
     | 
    
         
            -
            // router.get('/eagle/changelog/:language?', lazyloadRouteHandler('./routes/eagle/changelog'));
         
     | 
| 
       3830 
     | 
    
         
            -
             
     | 
| 
       3831 
     | 
    
         
            -
            // ezone.hk
         
     | 
| 
       3832 
     | 
    
         
            -
            // router.get('/ezone/:category?', lazyloadRouteHandler('./routes/ezone/index'));
         
     | 
| 
       3833 
     | 
    
         
            -
             
     | 
| 
       3834 
     | 
    
         
            -
            // 中国橡胶网
         
     | 
| 
       3835 
     | 
    
         
            -
            router.get('/cria/news/:id?', lazyloadRouteHandler('./routes/cria/news'));
         
     | 
| 
       3836 
     | 
    
         
            -
             
     | 
| 
       3837 
     | 
    
         
            -
            // 灵异网
         
     | 
| 
       3838 
     | 
    
         
            -
            router.get('/lingyi/:category', lazyloadRouteHandler('./routes/lingyi/index'));
         
     | 
| 
       3839 
     | 
    
         
            -
             
     | 
| 
       3840 
1674 
     | 
    
         
             
            // 歪脑读
         
     | 
| 
       3841 
1675 
     | 
    
         
             
            router.get('/wainao-reads/all-articles', lazyloadRouteHandler('./routes/wainao/index'));
         
     | 
| 
       3842 
1676 
     | 
    
         | 
| 
         @@ -3853,13 +1687,6 @@ router.get('/liyuan-forums/threads/forum/:forum_id', lazyloadRouteHandler('./rou 
     | 
|
| 
       3853 
1687 
     | 
    
         
             
            router.get('/liyuan-forums/threads/topic/:topic_id', lazyloadRouteHandler('./routes/liyuan-forums/threads'));
         
     | 
| 
       3854 
1688 
     | 
    
         
             
            router.get('/liyuan-forums/threads/user/:user_id', lazyloadRouteHandler('./routes/liyuan-forums/threads'));
         
     | 
| 
       3855 
1689 
     | 
    
         | 
| 
       3856 
     | 
    
         
            -
            // 集思录
         
     | 
| 
       3857 
     | 
    
         
            -
            // router.get('/jisilu/reply/:user', lazyloadRouteHandler('./routes/jisilu/reply'));
         
     | 
| 
       3858 
     | 
    
         
            -
            // router.get('/jisilu/topic/:user', lazyloadRouteHandler('./routes/jisilu/topic'));
         
     | 
| 
       3859 
     | 
    
         
            -
             
     | 
| 
       3860 
     | 
    
         
            -
            // Constitutional Court of Baden-Württemberg (Germany) migrated to v2
         
     | 
| 
       3861 
     | 
    
         
            -
            // router.get('/verfghbw/press/:keyword?', lazyloadRouteHandler('./routes/verfghbw/press'));
         
     | 
| 
       3862 
     | 
    
         
            -
             
     | 
| 
       3863 
1690 
     | 
    
         
             
            // Topbook
         
     | 
| 
       3864 
1691 
     | 
    
         
             
            router.get('/topbook/overview/:id?', lazyloadRouteHandler('./routes/topbook/overview'));
         
     | 
| 
       3865 
1692 
     | 
    
         
             
            router.get('/topbook/today', lazyloadRouteHandler('./routes/topbook/today'));
         
     | 
| 
         @@ -3867,37 +1694,12 @@ router.get('/topbook/today', lazyloadRouteHandler('./routes/topbook/today')); 
     | 
|
| 
       3867 
1694 
     | 
    
         
             
            // Melon
         
     | 
| 
       3868 
1695 
     | 
    
         
             
            router.get('/melon/chart/:category?', lazyloadRouteHandler('./routes/melon/chart'));
         
     | 
| 
       3869 
1696 
     | 
    
         | 
| 
       3870 
     | 
    
         
            -
            // 弯弯字幕组
         
     | 
| 
       3871 
     | 
    
         
            -
            router.get('/wanwansub/info/:id', lazyloadRouteHandler('./routes/wanwansub/info'));
         
     | 
| 
       3872 
     | 
    
         
            -
            router.get('/wanwansub/:id?', lazyloadRouteHandler('./routes/wanwansub/index'));
         
     | 
| 
       3873 
     | 
    
         
            -
             
     | 
| 
       3874 
1697 
     | 
    
         
             
            // FIX 字幕侠
         
     | 
| 
       3875 
     | 
    
         
            -
            router.get('/zimuxia/portfolio/:id', lazyloadRouteHandler('./routes/zimuxia/portfolio'));
         
     | 
| 
       3876 
     | 
    
         
            -
            router.get('/zimuxia/:category?', lazyloadRouteHandler('./routes/zimuxia/index'));
         
     | 
| 
       3877 
     | 
    
         
            -
             
     | 
| 
       3878 
     | 
    
         
            -
            // Bandcamp migrated to v2
         
     | 
| 
       3879 
     | 
    
         
            -
            // router.get('/bandcamp/tag/:tag?', lazyloadRouteHandler('./routes/bandcamp/tag'));
         
     | 
| 
       3880 
     | 
    
         
            -
            // router.get('/bandcamp/weekly', lazyloadRouteHandler('./routes/bandcamp/weekly'));
         
     | 
| 
       3881 
     | 
    
         
            -
             
     | 
| 
       3882 
     | 
    
         
            -
            // Hugo 更新日志
         
     | 
| 
       3883 
     | 
    
         
            -
            router.get('/hugo/releases', lazyloadRouteHandler('./routes/hugo/releases'));
         
     | 
| 
      
 1698 
     | 
    
         
            +
            // router.get('/zimuxia/portfolio/:id', lazyloadRouteHandler('./routes/zimuxia/portfolio'));
         
     | 
| 
      
 1699 
     | 
    
         
            +
            // router.get('/zimuxia/:category?', lazyloadRouteHandler('./routes/zimuxia/index'));
         
     | 
| 
       3884 
1700 
     | 
    
         | 
| 
       3885 
1701 
     | 
    
         
             
            // 东立出版
         
     | 
| 
       3886 
     | 
    
         
            -
            router.get('/tongli/news/:type', lazyloadRouteHandler('./routes/tongli/news'));
         
     | 
| 
       3887 
     | 
    
         
            -
             
     | 
| 
       3888 
     | 
    
         
            -
            // OR
         
     | 
| 
       3889 
     | 
    
         
            -
            router.get('/or/:id?', lazyloadRouteHandler('./routes/or'));
         
     | 
| 
       3890 
     | 
    
         
            -
             
     | 
| 
       3891 
     | 
    
         
            -
            // e-hentai migrated to v2
         
     | 
| 
       3892 
     | 
    
         
            -
            // router.get('/ehentai/favorites/:favcat?/:order?/:page?/:routeParams?', lazyloadRouteHandler('./routes/ehentai/favorites'));
         
     | 
| 
       3893 
     | 
    
         
            -
            // router.get('/ehentai/search/:params?/:page?/:routeParams?', lazyloadRouteHandler('./routes/ehentai/search'));
         
     | 
| 
       3894 
     | 
    
         
            -
            // router.get('/ehentai/tag/:tag/:page?/:routeParams?', lazyloadRouteHandler('./routes/ehentai/tag'));
         
     | 
| 
       3895 
     | 
    
         
            -
             
     | 
| 
       3896 
     | 
    
         
            -
            // 字型故事
         
     | 
| 
       3897 
     | 
    
         
            -
            router.get('/fontstory', lazyloadRouteHandler('./routes/fontstory/tw'));
         
     | 
| 
       3898 
     | 
    
         
            -
             
     | 
| 
       3899 
     | 
    
         
            -
            // HKEPC migrated to v2
         
     | 
| 
       3900 
     | 
    
         
            -
            // router.get('/hkepc/:category?', lazyloadRouteHandler('./routes/hkepc/index'));
         
     | 
| 
      
 1702 
     | 
    
         
            +
            // router.get('/tongli/news/:type', lazyloadRouteHandler('./routes/tongli/news'));
         
     | 
| 
       3901 
1703 
     | 
    
         | 
| 
       3902 
1704 
     | 
    
         
             
            // 海南大学
         
     | 
| 
       3903 
1705 
     | 
    
         
             
            router.get('/hainanu/ssszs', lazyloadRouteHandler('./routes/hainanu/ssszs'));
         
     | 
| 
         @@ -3905,26 +1707,17 @@ router.get('/hainanu/ssszs', lazyloadRouteHandler('./routes/hainanu/ssszs')); 
     | 
|
| 
       3905 
1707 
     | 
    
         
             
            // 游戏年轮
         
     | 
| 
       3906 
1708 
     | 
    
         
             
            router.get('/bibgame/:category?/:type?', lazyloadRouteHandler('./routes/bibgame/category'));
         
     | 
| 
       3907 
1709 
     | 
    
         | 
| 
       3908 
     | 
    
         
            -
            // 澳門特別行政區政府各公共部門獎助貸學金服務平台
         
     | 
| 
       3909 
     | 
    
         
            -
            router.get('/macau-bolsas/:lang?', lazyloadRouteHandler('./routes/macau-bolsas/index'));
         
     | 
| 
       3910 
     | 
    
         
            -
             
     | 
| 
       3911 
1710 
     | 
    
         
             
            // PotPlayer
         
     | 
| 
       3912 
1711 
     | 
    
         
             
            router.get('/potplayer/update/:language?', lazyloadRouteHandler('./routes/potplayer/update'));
         
     | 
| 
       3913 
1712 
     | 
    
         | 
| 
       3914 
     | 
    
         
            -
            // 综艺秀
         
     | 
| 
       3915 
     | 
    
         
            -
            // router.get('/zyshow/:name', lazyloadRouteHandler('./routes/zyshow'));
         
     | 
| 
       3916 
     | 
    
         
            -
             
     | 
| 
       3917 
1713 
     | 
    
         
             
            // 加美财经
         
     | 
| 
       3918 
     | 
    
         
            -
            router.get('/caus/:category?', lazyloadRouteHandler('./routes/caus'));
         
     | 
| 
      
 1714 
     | 
    
         
            +
            // router.get('/caus/:category?', lazyloadRouteHandler('./routes/caus'));
         
     | 
| 
       3919 
1715 
     | 
    
         | 
| 
       3920 
1716 
     | 
    
         
             
            // 摩点
         
     | 
| 
       3921 
     | 
    
         
            -
            router.get('/modian/zhongchou/:category?/:sort?/:status?', lazyloadRouteHandler('./routes/modian/zhongchou'));
         
     | 
| 
       3922 
     | 
    
         
            -
             
     | 
| 
       3923 
     | 
    
         
            -
            // MacWk
         
     | 
| 
       3924 
     | 
    
         
            -
            router.get('/macwk/soft/:name', lazyloadRouteHandler('./routes/macwk/soft'));
         
     | 
| 
      
 1717 
     | 
    
         
            +
            // router.get('/modian/zhongchou/:category?/:sort?/:status?', lazyloadRouteHandler('./routes/modian/zhongchou'));
         
     | 
| 
       3925 
1718 
     | 
    
         | 
| 
       3926 
1719 
     | 
    
         
             
            // 世界计划 多彩舞台 feat.初音未来 (ProjectSekai)
         
     | 
| 
       3927 
     | 
    
         
            -
            router.get('/pjsk/news', lazyloadRouteHandler('./routes/pjsk/news'));
         
     | 
| 
      
 1720 
     | 
    
         
            +
            // router.get('/pjsk/news', lazyloadRouteHandler('./routes/pjsk/news'));
         
     | 
| 
       3928 
1721 
     | 
    
         | 
| 
       3929 
1722 
     | 
    
         
             
            // 人民论坛网
         
     | 
| 
       3930 
1723 
     | 
    
         
             
            router.get('/rmlt/idea/:category?', lazyloadRouteHandler('./routes/rmlt/idea'));
         
     | 
| 
         @@ -3936,20 +1729,11 @@ router.get('/cbndata/information/:category?', lazyloadRouteHandler('./routes/cbn 
     | 
|
| 
       3936 
1729 
     | 
    
         
             
            router.get('/tanchinese/:category?', lazyloadRouteHandler('./routes/tanchinese'));
         
     | 
| 
       3937 
1730 
     | 
    
         | 
| 
       3938 
1731 
     | 
    
         
             
            // Harvard
         
     | 
| 
       3939 
     | 
    
         
            -
            router.get('/harvard/health/blog', lazyloadRouteHandler('./routes/universities/harvard/health/blog'));
         
     | 
| 
      
 1732 
     | 
    
         
            +
            // router.get('/harvard/health/blog', lazyloadRouteHandler('./routes/universities/harvard/health/blog'));
         
     | 
| 
       3940 
1733 
     | 
    
         | 
| 
       3941 
1734 
     | 
    
         
             
            // yuzu emulator
         
     | 
| 
       3942 
1735 
     | 
    
         
             
            router.get('/yuzu-emu/entry', lazyloadRouteHandler('./routes/yuzu-emu/entry'));
         
     | 
| 
       3943 
1736 
     | 
    
         | 
| 
       3944 
     | 
    
         
            -
            // Resources - The Partnership on AI
         
     | 
| 
       3945 
     | 
    
         
            -
            router.get('/partnershiponai/resources', lazyloadRouteHandler('./routes/partnershiponai/resources'));
         
     | 
| 
       3946 
     | 
    
         
            -
             
     | 
| 
       3947 
     | 
    
         
            -
            // Common App
         
     | 
| 
       3948 
     | 
    
         
            -
            router.get('/commonapp/blog', lazyloadRouteHandler('./routes/commonapp/blog'));
         
     | 
| 
       3949 
     | 
    
         
            -
             
     | 
| 
       3950 
     | 
    
         
            -
            // Sky Sports
         
     | 
| 
       3951 
     | 
    
         
            -
            // router.get('/skysports/news/:team', lazyloadRouteHandler('./routes/skysports/news'));
         
     | 
| 
       3952 
     | 
    
         
            -
             
     | 
| 
       3953 
1737 
     | 
    
         
             
            // Europa Press
         
     | 
| 
       3954 
1738 
     | 
    
         
             
            router.get('/europapress/:category?', lazyloadRouteHandler('./routes/europapress'));
         
     | 
| 
       3955 
1739 
     | 
    
         | 
| 
         @@ -3978,19 +1762,10 @@ router.get('/fnal/news/:category?', lazyloadRouteHandler('./routes/fnal/news')); 
     | 
|
| 
       3978 
1762 
     | 
    
         
             
            // X410
         
     | 
| 
       3979 
1763 
     | 
    
         
             
            router.get('/x410/news', lazyloadRouteHandler('./routes/x410/news'));
         
     | 
| 
       3980 
1764 
     | 
    
         | 
| 
       3981 
     | 
    
         
            -
            // 恩山无线论坛
         
     | 
| 
       3982 
     | 
    
         
            -
            router.get('/right/forum/:id?', lazyloadRouteHandler('./routes/right/forum'));
         
     | 
| 
       3983 
     | 
    
         
            -
             
     | 
| 
       3984 
     | 
    
         
            -
            // 香港經濟日報 migrated to v2
         
     | 
| 
       3985 
     | 
    
         
            -
            // router.get('/hket/:category?', lazyloadRouteHandler('./routes/hket/index'));
         
     | 
| 
       3986 
     | 
    
         
            -
             
     | 
| 
       3987 
1765 
     | 
    
         
             
            // micmicidol
         
     | 
| 
       3988 
1766 
     | 
    
         
             
            router.get('/micmicidol', lazyloadRouteHandler('./routes/micmicidol/latest'));
         
     | 
| 
       3989 
1767 
     | 
    
         
             
            router.get('/micmicidol/search/:label', lazyloadRouteHandler('./routes/micmicidol/search'));
         
     | 
| 
       3990 
1768 
     | 
    
         | 
| 
       3991 
     | 
    
         
            -
            // 香港高登
         
     | 
| 
       3992 
     | 
    
         
            -
            router.get('/hkgolden/:id?/:limit?/:sort?', lazyloadRouteHandler('./routes/hkgolden'));
         
     | 
| 
       3993 
     | 
    
         
            -
             
     | 
| 
       3994 
1769 
     | 
    
         
             
            // 香港討論區
         
     | 
| 
       3995 
1770 
     | 
    
         
             
            router.get('/discuss/:fid', lazyloadRouteHandler('./routes/discuss'));
         
     | 
| 
       3996 
1771 
     | 
    
         | 
| 
         @@ -4000,9 +1775,6 @@ router.get('/uwants/:fid', lazyloadRouteHandler('./routes/uwants')); 
     | 
|
| 
       4000 
1775 
     | 
    
         
             
            // Now新聞
         
     | 
| 
       4001 
1776 
     | 
    
         
             
            router.get('/now/news/rank', lazyloadRouteHandler('./routes/now/rank'));
         
     | 
| 
       4002 
1777 
     | 
    
         | 
| 
       4003 
     | 
    
         
            -
            // s-hentai
         
     | 
| 
       4004 
     | 
    
         
            -
            router.get('/s-hentai/:id?', lazyloadRouteHandler('./routes/s-hentai'));
         
     | 
| 
       4005 
     | 
    
         
            -
             
     | 
| 
       4006 
1778 
     | 
    
         
             
            // etherscan
         
     | 
| 
       4007 
1779 
     | 
    
         
             
            router.get('/etherscan/transactions/:address', lazyloadRouteHandler('./routes/etherscan/transactions'));
         
     | 
| 
       4008 
1780 
     | 
    
         | 
| 
         @@ -4012,26 +1784,8 @@ router.get('/blogs/foreverblog', lazyloadRouteHandler('./routes/blogs/foreverblo 
     | 
|
| 
       4012 
1784 
     | 
    
         
             
            // Netflix
         
     | 
| 
       4013 
1785 
     | 
    
         
             
            router.get('/netflix/newsroom/:category?/:region?', lazyloadRouteHandler('./routes/netflix/newsroom'));
         
     | 
| 
       4014 
1786 
     | 
    
         | 
| 
       4015 
     | 
    
         
            -
            // SBS
         
     | 
| 
       4016 
     | 
    
         
            -
            router.get('/sbs/chinese/:category?/:id?/:dialect?/:language?', lazyloadRouteHandler('./routes/sbs/chinese'));
         
     | 
| 
       4017 
     | 
    
         
            -
             
     | 
| 
       4018 
     | 
    
         
            -
            // Asian to lick
         
     | 
| 
       4019 
     | 
    
         
            -
            // router.get('/asiantolick/:category?/:keyword?', lazyloadRouteHandler('./routes/asiantolick'));
         
     | 
| 
       4020 
     | 
    
         
            -
             
     | 
| 
       4021 
     | 
    
         
            -
            // Research Gate
         
     | 
| 
       4022 
     | 
    
         
            -
            // router.get('/researchgate/publications/:id', lazyloadRouteHandler('./routes/researchgate/publications'));
         
     | 
| 
       4023 
     | 
    
         
            -
             
     | 
| 
       4024 
1787 
     | 
    
         
             
            // QuestMobile
         
     | 
| 
       4025 
     | 
    
         
            -
            router.get('/questmobile/report/:category?/:label?', lazyloadRouteHandler('./routes/questmobile/report'));
         
     | 
| 
       4026 
     | 
    
         
            -
             
     | 
| 
       4027 
     | 
    
         
            -
            // RSS3
         
     | 
| 
       4028 
     | 
    
         
            -
            router.get('/rss3/blog', lazyloadRouteHandler('./routes/rss3/blog'));
         
     | 
| 
       4029 
     | 
    
         
            -
             
     | 
| 
       4030 
     | 
    
         
            -
            // 星球日报
         
     | 
| 
       4031 
     | 
    
         
            -
            // router.get('/odaily/activity', lazyloadRouteHandler('./routes/odaily/activity'));
         
     | 
| 
       4032 
     | 
    
         
            -
            // router.get('/odaily/newsflash', lazyloadRouteHandler('./routes/odaily/newsflash'));
         
     | 
| 
       4033 
     | 
    
         
            -
            // router.get('/odaily/user/:id', lazyloadRouteHandler('./routes/odaily/user'));
         
     | 
| 
       4034 
     | 
    
         
            -
            // router.get('/odaily/:id?', lazyloadRouteHandler('./routes/odaily/post'));
         
     | 
| 
      
 1788 
     | 
    
         
            +
            // router.get('/questmobile/report/:category?/:label?', lazyloadRouteHandler('./routes/questmobile/report'));
         
     | 
| 
       4035 
1789 
     | 
    
         | 
| 
       4036 
1790 
     | 
    
         
             
            // Fashion Network
         
     | 
| 
       4037 
1791 
     | 
    
         
             
            router.get('/fashionnetwork/news/:sectors?/:categories?/:language?', lazyloadRouteHandler('./routes/fashionnetwork/news.js'));
         
     | 
| 
         @@ -4039,20 +1793,9 @@ router.get('/fashionnetwork/news/:sectors?/:categories?/:language?', lazyloadRou 
     | 
|
| 
       4039 
1793 
     | 
    
         
             
            // dykszx
         
     | 
| 
       4040 
1794 
     | 
    
         
             
            router.get('/dykszx/news/:type?', lazyloadRouteHandler('./routes/dykszx/news'));
         
     | 
| 
       4041 
1795 
     | 
    
         | 
| 
       4042 
     | 
    
         
            -
            // 安全内参
         
     | 
| 
       4043 
     | 
    
         
            -
            // router.get('/secrss/category/:category?', lazyloadRouteHandler('./routes/secrss/category'));
         
     | 
| 
       4044 
     | 
    
         
            -
            // router.get('/secrss/author/:author?', lazyloadRouteHandler('./routes/secrss/author'));
         
     | 
| 
       4045 
     | 
    
         
            -
             
     | 
| 
       4046 
1796 
     | 
    
         
             
            // Fashion Network
         
     | 
| 
       4047 
1797 
     | 
    
         
             
            router.get('/fashionnetwork/headline/:country?', lazyloadRouteHandler('./routes/fashionnetwork/headline.js'));
         
     | 
| 
       4048 
1798 
     | 
    
         | 
| 
       4049 
     | 
    
         
            -
            // mirror.xyz
         
     | 
| 
       4050 
     | 
    
         
            -
            // router.get('/mirror/:id', lazyloadRouteHandler('./routes/mirror/entries'));
         
     | 
| 
       4051 
     | 
    
         
            -
             
     | 
| 
       4052 
     | 
    
         
            -
            // KBS migrated to v2
         
     | 
| 
       4053 
     | 
    
         
            -
            // router.get('/kbs/today/:language?', lazyloadRouteHandler('./routes/kbs/today'));
         
     | 
| 
       4054 
     | 
    
         
            -
            // router.get('/kbs/news/:category?/:language?', lazyloadRouteHandler('./routes/kbs/news'));
         
     | 
| 
       4055 
     | 
    
         
            -
             
     | 
| 
       4056 
1799 
     | 
    
         
             
            // Deprecated: DO NOT ADD ANY NEW ROUTES HERE
         
     | 
| 
       4057 
1800 
     | 
    
         | 
| 
       4058 
1801 
     | 
    
         
             
            module.exports = router;
         
     |