diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index fa0ee89e5..59cf98353 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -1,14 +1,29 @@
name: Build font and specimen
-on: [push, release]
+on:
+ push:
+ # do not run when push tag
+ branches:
+ - '**'
+ workflow_dispatch:
+ inputs:
+ version:
+ description: "版本号,格式vX.XXX"
+ required: true
+ type: string
+ release_date:
+ description: "版本日期,格式MONTH dd, YYYY。若空置将默认使用 UTC+8/上海当前的日期。"
+ type: string
jobs:
build:
runs-on: ubuntu-latest
+ env:
+ VERSION_TAG: ${{ inputs.version }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
- name: Set up Python 3.10
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install sys tools/deps
@@ -16,55 +31,45 @@ jobs:
sudo apt-get update
sudo apt-get install ttfautohint
sudo snap install yq
- - uses: actions/cache@v2
+ - uses: actions/cache@v4
with:
path: ./venv/
key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }}
restore-keys: |
${{ runner.os }}-venv-
- - name: gen zip file name
- id: zip-name
- shell: bash
- # Set the archive name to repo name + "-assets" e.g "MavenPro-assets"
- run: echo "ZIP_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')-fonts" >> $GITHUB_ENV
- # If a new release is cut, use the release tag to auto-bump the source files
+
+ # Use version tag to auto-bump the source files if provided manually
- name: Bump release
- if: github.event_name == 'release'
+ id: bump_release
+ if: github.event_name == 'workflow_dispatch'
run: |
+ make venv
. venv/bin/activate
- SRCS=$(yq e ".sources[]" sources/config.yaml)
- TAG_NAME=${GITHUB_REF/refs\/tags\//}
+ SRCS=$(ls -d sources/*.ufo)
+ TAG_NAME=${{ env.VERSION_TAG }}
echo "Bumping $SRCS to $TAG_NAME"
for src in $SRCS
do
- bumpfontversion sources/$src --new-version $TAG_NAME;
+ python3 sources/scripts/bump_version.py "$src/fontinfo.plist" -v "$TAG_NAME" -d "${{ inputs.release_date }}"
done
+
- name: Build font
run: make build
- release:
- # only run if the commit is tagged...
- if: github.event_name == 'release'
- # ... and it builds successfully
- needs:
- - build
- runs-on: ubuntu-latest
- env:
- ZIP_NAME: ${{ needs.build.outputs.zip_name }}
- steps:
- - uses: actions/checkout@v2
- - name: Download artefact files
- uses: actions/download-artifact@v2
- with:
- name: ${{ env.ZIP_NAME }}
- path: ${{ env.ZIP_NAME }}
- - name: Zip files
- run: zip -r ${{ env.ZIP_NAME }}.zip ${{ env.ZIP_NAME }}
- - name: Upload binaries to release
- uses: svenstaro/upload-release-action@v2
- with:
- repo_token: ${{ secrets.GITHUB_TOKEN }}
- file: ${{ env.ZIP_NAME }}.zip
- asset_name: ${{ env.ZIP_NAME }}.zip
- tag: ${{ github.ref }}
- overwrite: true
- body: "Production ready fonts"
+
+ # Recording files
+ - name: Archive built TTFs
+ uses: actions/upload-artifact@v4
+ with:
+ name: result_ttf
+ path: fonts/TTF/**
+ - name: Archive built UFOs
+ uses: actions/upload-artifact@v4
+ with:
+ name: source_ufos
+ path: sources/build/instance_ufos/**
+ - name: Commit fonts
+ if: github.event_name == 'workflow_dispatch'
+ uses: stefanzweifel/git-auto-commit-action@v5
+ with:
+ commit_message: Bump version to ${{ env.VERSION_TAG }}
+ file_pattern: 'fonts/TTF/*.ttf sources/*.ufo/fontinfo.plist'
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
new file mode 100644
index 000000000..3d85fb0ba
--- /dev/null
+++ b/.github/workflows/release.yaml
@@ -0,0 +1,41 @@
+name: Package fonts and upload to release
+
+on:
+ release:
+ # do not run when created/draft, only when finalised
+ types: [published]
+
+jobs:
+ release:
+ if: github.event_name == 'release'
+ runs-on: ubuntu-latest
+ env:
+ FULL_ZIP_NAME: lxgw-wenkai-tc-${{ github.event.release.tag_name }}
+ steps:
+ - uses: actions/checkout@v4
+
+ # zip license
+ - run: cp OFL.txt fonts/TTF/OFL.txt
+
+ - name: Zip files
+ run: |
+ cd fonts
+ mv TTF ${{ env.FULL_ZIP_NAME }}
+ zip -r ${{ env.FULL_ZIP_NAME }}.zip ${{ env.FULL_ZIP_NAME }}
+ tar -czvf ${{ env.FULL_ZIP_NAME }}.tar.gz ${{ env.FULL_ZIP_NAME }}
+ mv ${{ env.FULL_ZIP_NAME }} TTF
+ cp ${{ env.FULL_ZIP_NAME }}.zip TTF/${{ env.FULL_ZIP_NAME }}.zip
+ cp ${{ env.FULL_ZIP_NAME }}.tar.gz TTF/${{ env.FULL_ZIP_NAME }}.tar.gz
+
+ # remove license
+ - run: rm fonts/TTF/OFL.txt
+
+ # upload files to releases
+ - name: Upload binaries to release
+ uses: svenstaro/upload-release-action@v2
+ with:
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
+ file_glob: true
+ file: fonts/TTF/*
+ tag: ${{ github.ref }}
+ overwrite: true
diff --git a/README.md b/README.md
index ec8ca830f..4e032846e 100644
--- a/README.md
+++ b/README.md
@@ -5,11 +5,14 @@ The Traditional Chinese Version of LXGW WenKai. 霞鶩文楷繁體中文版。
[![開源授權](https://img.shields.io/github/license/lxgw/LxgwWenkaiTC?style=flat-square)](https://github.com/lxgw/LxgwWenkaiTC)
[![最新版](https://img.shields.io/github/release/lxgw/LxgwWenkaiTC?style=flat-square)](https://github.com/lxgw/LxgwWenkaiTC/releases)
[![猫啃网](https://shields.io/badge/%E7%8C%AB%E5%95%83%E7%BD%91-fe5e52?style=flat-square&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAfCAMAAABeSlSAAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHyUExURQAAAAAA//8AAAAA//8AAAAA/wAA//8AAAAA//8AAAAA//8A//8AAAAA//8AAAAA//8AAAAA/wD///8AAAD/////AAD/////AP//AP//////AAD/////AAD/////AP///wD/////AP//AP//////AP//////AP///wD//////wD//wD/////////AP///wD//wD//wD/////AP///////////wD/////AP///wD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f////39/f39/f39/f39/f39/f7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v////7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v////7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///y6UHskAAACldFJOUwADAwQEBQYGBwcICAkLCwwMDQ0NDhESEhMWFxgYGRkbHBwdHR8hIyQlJygpKSwsLS4yMjQ1Njc3ODk6PD5BQkNFRkdNUFFTVldaXF1fYGdqbnBxcnZ4eXt8gIGEhYaJio6RkpWXmJqbnJ2goqOlpqirrrCxs7S1trm7vr/BwsTHyMvMzc/Q0tPU2Nrb3N3f4uTm5+jp6+zt7vDx8vP19vf4+/z9/iyQxCoAAAAJcEhZcwAAFxEAABcRAcom8z8AAAHPSURBVDhPvZDpOxtRFIdvCJ1olaCLoqW1BF1U2tpJSlpFiK17NNE1DbGVoFVL20TRoMFUDDKS83+6Z+6tJjx9Hp+8X+b+fued88xcckLcmnl9nR8PkfVizoDPewHYcRYqVRQZr0TYfYinii0A2LReVOoDEiwrtN5txPNtMTj2B8BTH6OMGHc/A0huaduEoXg52FwwIEPY+7a1+opalV5uts/KEPp0s07aqkIj2wMv1XHmDbo0AqlTQ9rklRtoJI3DWLJ+MsxHf5mtFT7A98toCG/A9/jQBkR6/gNGzqJBLHu8O4pVrRgGiecjBJsUgeiWWPYNOtwBWk99dHlZs17KDO24Ep3nVHdMlV7ffaNRI/SEsPLkMENwYApUkUfb0K/XW0N7XTElv7GbSGZGghOTWBpno29dpT8PfWd0vxQjlRmJw8yItwPM52onAPq5MX3huIbw/n8GvzBC75+mzbJIo3iZVuFn7MIIKcIX5I7TEUZLkFb+ci6Q2G5cstrQC7CQf/4rgKtmEVfYNFwgJO0dXpAs0vbLKLXFHRrBfYmPkZQe3BpFyJXJhwxV/Tc+4fw0n+KjA+Ibhvx8CmvDjf8+IYprJsuTp+0P8ng8OQjZB5l3H1123DZyAAAAAElFTkSuQmCC)](https://www.maoken.com/freefonts/16424.html)
+[![Google Fonts](https://shields.io/badge/Google%20Fonts-4285F4?style=flat-square&logo=googlefonts&logoColor=ffffff)](https://fonts.google.com/specimen/LXGW+WenKai+TC)
## 介紹
本專案爲 [霞鶩文楷](https://github.com/lxgw/LxgwWenkai) 的繁體中文版。最初主要使用 [AFDKO](https://github.com/adobe-type-tools/afdko) 配合 [極限社區 Zonz 提供的傳承字形、康熙舊形 ttx 檔(現已無法訪問)](https://bbs.themex.net/showthread.php?t=16906063) 將 [Klee One](https://github.com/fontworks-fonts/Klee) 中包含的漢字轉換爲舊字形,並補入修改前的舊版「霞鶩文楷」字形,部分部件和單字進一步手動修改;而後參考 [一點字坊「傳承字形標準化文件」](https://github.com/ichitenfont/inheritedglyphs) 對大部分部件進行修改,更適合繁體中文使用者及傳承字形愛好者使用。
+「霞鶩文楷 TC」支援 Unicode 變體序列(Unicode Variation Sequences, UVS),用於標點符號寬度的選擇,[點擊此處查看一覽表](documentation/uvs.pdf)。
+
## 預覽
![](https://raw.githubusercontent.com/lxgw/LxgwWenkaitc/main/documentation/wenkaitc-1.png)
@@ -48,7 +51,7 @@ The Traditional Chinese Version of LXGW WenKai. 霞鶩文楷繁體中文版。
### ⅱ. 從原始碼生成
-請運行 `/sources/build.bat` 或 `/sources/build.sh`。需要安裝 [`fontmake`](https://github.com/googlefonts/fontmake):`pip3 install fontmake` 和 [`fontTools`](https://github.com/fonttools/fonttools):`pip3 install fonttools`。
+可通過 `make` 運行完整的構建流程: `make build`。目前的原始碼只能在類 Unix 系統運行,需要安裝 Python 3。
## 注意事項
@@ -84,7 +87,7 @@ The Traditional Chinese Version of LXGW WenKai. 霞鶩文楷繁體中文版。
- [一點字坊「傳承字形標準化文件」](https://github.com/ichitenfont/inheritedglyphs) 提供部分傳承字形部件和筆畫參照。
- 部分傳承字形與臺標同形或形近的部件借用 [芫荽 / Iansui](https://github.com/ButTaiwan/iansui) 字體。
- [漢文博士](https://www.cnblogs.com/hanbox/)、[國學迷](http://www.guoxuemi.com/zidian/bujian/)、[字統網](https://zi.tools/)提供部件查字服務。
-- [Aaron Bell](https://github.com/aaronbell) 優化構建流程。
+- [Aaron Bell](https://github.com/aaronbell)、[@夜煞之樂](https://github.com/NightFurySL2001) 優化構建流程。
## 關注作者
@@ -97,13 +100,13 @@ The Traditional Chinese Version of LXGW WenKai. 霞鶩文楷繁體中文版。
## 由本字型衍生的字型
- [月星楷 / Moon Stars Kai](https://github.com/GuiWonder/MoonStarsKai)
-- [末綺楷書 / Astalia](https://github.com/Ayaginu-Sue/Astalia)
+- [Astalia](https://github.com/Ayaginu-Sue/Astalia)
- [Y式筆書 / YshiPen-Shuti](https://github.com/Steve-Yuu/YshiPen-Shuti)
- [混菜寫楷 / Mixed-VsWeKai](https://github.com/FWHP-Enfun/Mixed-VsWeKai)
## 更多「霞鶩」系列字型
### 「霞鶩文楷」系列
-- 霞鶩文楷 TC / LXGW WenKai TC
+- **霞鶩文楷 TC / LXGW WenKai TC**
- [霞鶩文楷 GB / LXGW WenKai GB](https://github.com/lxgw/LxgwWenKaiGB) | [Lite](https://github.com/lxgw/LxgwWenKaiGB-Lite)
- [霞鶩文楷 / LXGW WenKai](https://github.com/lxgw/LxgwWenKai) | [Lite](https://github.com/lxgw/LxgwWenKai-Lite)
### 「晰緻尚銘」系列
@@ -111,10 +114,11 @@ The Traditional Chinese Version of LXGW WenKai. 霞鶩文楷繁體中文版。
- [霞鶩緻宋 / LXGW ZhiSong](https://github.com/lxgw/LxgwZhiSong)
- [霞鶩新晰黑 / LXGW Neo XiHei](https://github.com/lxgw/LxgwNeoXiHei)
- [霞鶩新緻宋 / LXGW Neo ZhiSong](https://github.com/lxgw/LxgwNeoZhiSong)
-- [霞鶩尚智黑 / LXGW Fasmart Gothic](https://github.com/lxgw/LxgwFasmartGothic)
-- [霞鶩銘心宋 / LXGW Heart Serif](https://github.com/lxgw/LxgwHeartSerif)
+- [霞鶩尚智黑 / LXGW Fasmart Gothic](https://github.com/lxgw/LxgwFasmartGothic) 停止維護
+- [霞鶩銘心宋 / LXGW Heart Serif](https://github.com/lxgw/LxgwHeartSerif) 停止維護
### 其他
- [霞鶩漫黑 / LXGW Marker Gothic](https://github.com/lxgw/LxgwMarkerGothic)
+- [霞鶩臻楷 / LXGW ZhenKai](https://github.com/lxgw/LxgwZhenKai) 停止維護
- [小賴字體 / Xiaolai](https://github.com/lxgw/kose-font)
- [悠哉字體 / Yozai](https://github.com/lxgw/yozai-font)
diff --git a/documentation/changelog/20240929.md b/documentation/changelog/20240929.md
new file mode 100644
index 000000000..e4be643e8
--- /dev/null
+++ b/documentation/changelog/20240929.md
@@ -0,0 +1,21 @@
+# 霞鶩文楷 TC v1.500 版本更新(2024.09.29)
+> [!WARNING]
+> 本版本起,Bold 字重調整為 Medium 字重。由於本版本改動較大,請在安裝新版字型前,**務必**將以往安裝的「霞鶩文楷 TC」字型**徹底卸載**,不要覆蓋安裝。
+## 漢字部分
+### 1. 調整漢字
+⺗⺜⺲⺳㏐㏑㏒㏓㣺丵佬凿咾壵孬崡悫檴縴虽蟴麝𠂒𠚤𦍌
+#### 以下為 Medium 字重調整漢字:
+㩮檍秡臆蠜饢
+### 2. 新增漢字
+仦鐤屮縉𠔉𡯁𡯂𢡱𦉫𦉰𦍋𧃽𧫴𬦻𬶌𱇏𲍌
+## 其他字元部分
+### 1. 將蘇州碼子更換為「芫荽」樣式
+〡〢〣〤〥〦〧〨〩
+### 2. 調整其他字元
+Ḩⁱⁿₐₑₒₓₔₕₖₗₘₙₚₛₜ℮⏻⏼⏽⭘㎧㎨㎮㎯㏆㏐㏑㏒㏓㏞㏟
+### 3. 新增字元
+ӵỼỽỾỿ₰₱₲₳₵₶₷₸₺₻₼₾₿⃀℠␠ⱤⱥⱦꞍꞪꞭꞮꞲꞳꞴ
+## 其他方面
+- 引入 `halt` 和 `vhal` 特性,可以配合 Chrome 123 及後續版本實現標點擠壓特性;
+- 根據 [Unicode 16.0 相關文檔](https://www.unicode.org/Public/16.0.0/ucd/StandardizedVariants.txt),新增 Unicode 變體序列(UVS)支援,在允許使用 UVS 的情況下,可通過該功能實現標點符號的切換,詳情[點擊此處瞭解](..\uvs.pdf)。
+- 鑒於多數用戶認為 Bold 字重與 Regular 字重分辨不清楚,本版本起,Bold 字重改為 Medium 字重,因此,在將字型更新到本版本前,**必須將舊版本字型徹底卸載,不要覆蓋安裝**,以免影響字型的呈現效果。
\ No newline at end of file
diff --git a/documentation/uvs.pdf b/documentation/uvs.pdf
new file mode 100644
index 000000000..acf7b0d84
Binary files /dev/null and b/documentation/uvs.pdf differ
diff --git a/fonts/TTF/LXGWWenKaiMonoTC-Bold.ttf b/fonts/TTF/LXGWWenKaiMonoTC-Bold.ttf
deleted file mode 100644
index e2550c67e..000000000
Binary files a/fonts/TTF/LXGWWenKaiMonoTC-Bold.ttf and /dev/null differ
diff --git a/fonts/TTF/LXGWWenKaiTC-Bold.ttf b/fonts/TTF/LXGWWenKaiTC-Bold.ttf
deleted file mode 100644
index 7ca179f61..000000000
Binary files a/fonts/TTF/LXGWWenKaiTC-Bold.ttf and /dev/null differ
diff --git a/requirements.txt b/requirements.txt
index 94b17ba21..584ed5737 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,5 @@
fontmake>=2.4
fontbakery>=0.7
gftools>=0.7
-ufomerge
\ No newline at end of file
+ufomerge
+tzdata
\ No newline at end of file
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/fontinfo.plist b/sources/LXGWWenKaiMonoTC-Bold.ufo/fontinfo.plist
deleted file mode 100644
index 2be472400..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/fontinfo.plist
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
-
- ascender
- 880
- capHeight
- 695
- copyright
- Copyright 2024 The LXGW WenKai Project Authors (https://github.com/lxgw/LxgwWenkaiTC)
- descender
- -120
- familyName
- LXGW WenKai Mono TC
- italicAngle
- 0
- openTypeHeadCreated
- 2020/12/15 00:00:00
- openTypeHheaAscender
- 928
- openTypeHheaDescender
- -241
- openTypeHheaLineGap
- 0
- openTypeNameDesigner
- LXGW / Fontworks Inc.
- openTypeNameDesignerURL
- https://github.com/lxgw
- openTypeNameLicense
- This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
- openTypeNameLicenseURL
- https://scripts.sil.org/OFL
- openTypeNameManufacturer
- LXGW / Fontworks Inc.
- openTypeNameManufacturerURL
- https://github.com/lxgw
- openTypeNameRecords
-
-
- encodingID
- 1
- languageID
- 1028
- nameID
- 1
- platformID
- 3
- string
- 霞鶩文楷等寬 TC
-
-
- encodingID
- 1
- languageID
- 2052
- nameID
- 1
- platformID
- 3
- string
- 霞鹜文楷等宽 TC
-
-
- encodingID
- 1
- languageID
- 3076
- nameID
- 1
- platformID
- 3
- string
- 霞鶩文楷等寬 TC
-
-
- encodingID
- 1
- languageID
- 5124
- nameID
- 1
- platformID
- 3
- string
- 霞鶩文楷等寬 TC
-
-
- openTypeNameSampleText
- 酌貪泉而覺爽,處涸轍以猶歡。
- openTypeOS2StrikeoutPosition
- 300
- openTypeOS2StrikeoutSize
- 50
- openTypeOS2SubscriptXOffset
- 0
- openTypeOS2SubscriptXSize
- 650
- openTypeOS2SubscriptYOffset
- 75
- openTypeOS2SubscriptYSize
- 600
- openTypeOS2SuperscriptXOffset
- 0
- openTypeOS2SuperscriptXSize
- 650
- openTypeOS2SuperscriptYOffset
- 350
- openTypeOS2SuperscriptYSize
- 600
- openTypeOS2Type
-
- openTypeOS2TypoAscender
- 880
- openTypeOS2TypoDescender
- -120
- openTypeOS2TypoLineGap
- 0
- openTypeOS2VendorID
- LXGW
- openTypeOS2WinAscent
- 928
- openTypeOS2WinDescent
- 241
- openTypeVheaVertTypoAscender
- 500
- openTypeVheaVertTypoDescender
- -500
- openTypeVheaVertTypoLineGap
- 1000
- postscriptUnderlinePosition
- -200
- postscriptUnderlineThickness
- 50
- styleName
- Bold
- unitsPerEm
- 1000
- versionMajor
- 1
- versionMinor
- 330
- xHeight
- 468
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/contents.plist b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/contents.plist
deleted file mode 100644
index 5ddcb4629..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/contents.plist
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- uni2C65
- uni2C_65.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7B2
- uniA_7B_2.glif
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/estimated.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/estimated.glif
deleted file mode 100644
index f08330825..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/estimated.glif
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.markColor
- 0.85,0.26,0.06,1
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_28.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_28.glif
deleted file mode 100644
index 862489716..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_28.glif
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.markColor
- 0.85,0.26,0.06,1
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2071.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2071.glif
deleted file mode 100644
index 7304ab148..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2071.glif
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.markColor
- 0.85,0.26,0.06,1
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2097.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2097.glif
deleted file mode 100644
index 5b8982e88..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2097.glif
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.markColor
- 0.85,0.26,0.06,1
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2099.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2099.glif
deleted file mode 100644
index 5f9d715b7..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2099.glif
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.markColor
- 0.85,0.26,0.06,1
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u209C_.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u209C_.glif
deleted file mode 100644
index d55e699df..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u209C_.glif
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.markColor
- 0.85,0.26,0.06,1
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni04F_5.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni04F_5.glif
deleted file mode 100644
index 32df1353c..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni04F_5.glif
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:32:27
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni2C_64.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni2C_64.glif
deleted file mode 100644
index 6d38e026f..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni2C_64.glif
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- R
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- R
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni2C_65.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni2C_65.glif
deleted file mode 100644
index 9d80f5e8a..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni2C_65.glif
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- a
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- a
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni2C_66.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni2C_66.glif
deleted file mode 100644
index 115788e14..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uni2C_66.glif
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- t
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- t
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_78D_.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_78D_.glif
deleted file mode 100644
index 61ce3f56f..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_78D_.glif
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u04BA
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u04BA
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7A_A_.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7A_A_.glif
deleted file mode 100644
index f68a3bdf9..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7A_A_.glif
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- H
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7A_D_.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7A_D_.glif
deleted file mode 100644
index 07276371e..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7A_D_.glif
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- L
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7A_E_.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7A_E_.glif
deleted file mode 100644
index 3c8ba29ed..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7A_E_.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:32:27
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7B_2.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7B_2.glif
deleted file mode 100644
index 5366df940..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7B_2.glif
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:57
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7B_3.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7B_3.glif
deleted file mode 100644
index c1cc30dee..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7B_3.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:32:27
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7B_4.glif b/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7B_4.glif
deleted file mode 100644
index fbe41a6f3..000000000
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uniA_7B_4.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:32:27
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/fontinfo.plist b/sources/LXGWWenKaiMonoTC-Light.ufo/fontinfo.plist
index a151bcb43..60c715b7c 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/fontinfo.plist
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/fontinfo.plist
@@ -7,7 +7,8 @@
capHeight
695
copyright
- Copyright 2024 The LXGW WenKai Project Authors (https://github.com/lxgw/LxgwWenkaiTC)
+ Copyright 2022-2024 LXGW (https://github.com/lxgw/LxgwWenkaiTC)
+Copyright 2020 The Klee Project Authors (https://github.com/fontworks-fonts/Klee)
descender
-120
familyName
@@ -34,6 +35,10 @@
LXGW / Fontworks Inc.
openTypeNameManufacturerURL
https://github.com/lxgw
+ openTypeNamePreferredFamilyName
+ LXGW WenKai Mono TC
+ openTypeNamePreferredSubfamilyName
+ Light
openTypeNameRecords
@@ -84,6 +89,54 @@
string
霞鶩文楷等寬 TC Light
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
encodingID
1
@@ -132,9 +185,137 @@
string
霞鶩文楷等寬 TC
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Light
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Light
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Light
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Light
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 酌貪泉而覺爽,處涸轍以猶歡。
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 酌貪泉而覺爽,處涸轍以猶歡。
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 酌貪泉而覺爽,處涸轍以猶歡。
+
+
+ openTypeNameUniqueID
+ LXGW WenKai Mono TC Light:Version 1.330
+ openTypeNameVersion
+ Version 1.330;April 28, 2024
+ openTypeOS2CodePageRanges
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 7
+ 8
+ 18
+ 20
+ 29
+ 30
+ 48
+ 49
+ 50
+ 52
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 62
+ 63
- openTypeNameSampleText
- 酌貪泉而覺爽,處涸轍以猶歡。
+ openTypeOS2Panose
+
+ 2
+ 2
+ 4
+ 9
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+ openTypeOS2Selection
+
openTypeOS2StrikeoutPosition
300
openTypeOS2StrikeoutSize
@@ -163,8 +344,61 @@
-120
openTypeOS2TypoLineGap
0
+ openTypeOS2UnicodeRanges
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 9
+ 29
+ 30
+ 31
+ 32
+ 33
+ 34
+ 35
+ 36
+ 37
+ 38
+ 39
+ 40
+ 41
+ 42
+ 43
+ 44
+ 45
+ 46
+ 47
+ 48
+ 49
+ 50
+ 51
+ 54
+ 55
+ 57
+ 59
+ 60
+ 61
+ 62
+ 65
+ 66
+ 68
+ 90
+ 99
+ 109
+ 111
+
openTypeOS2VendorID
LXGW
+ openTypeOS2WeightClass
+ 300
+ openTypeOS2WidthClass
+ 5
openTypeOS2WinAscent
928
openTypeOS2WinDescent
@@ -174,11 +408,15 @@
openTypeVheaVertTypoDescender
-500
openTypeVheaVertTypoLineGap
- 1000
+ 0
postscriptUnderlinePosition
- -200
+ -175
postscriptUnderlineThickness
50
+ styleMapFamilyName
+ LXGW WenKai Mono TC Light
+ styleMapStyleName
+ regular
styleName
Light
unitsPerEm
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/contents.plist b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/contents.plist
index ee5a748fd..fab1d63a7 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/contents.plist
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/contents.plist
@@ -2,11 +2,11 @@
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7B2
- uniA_7B_2.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7B2
+ uA_7B_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uniA_7A_A_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uA_7A_A_.glif
similarity index 95%
rename from sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uniA_7A_A_.glif
rename to sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uA_7A_A_.glif
index b8320d074..27b129fe3 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uniA_7A_A_.glif
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uA_7A_A_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uniA_7A_D_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uA_7A_D_.glif
similarity index 97%
rename from sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uniA_7A_D_.glif
rename to sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uA_7A_D_.glif
index 290adc65a..81492d179 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uniA_7A_D_.glif
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uA_7A_D_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uniA_7B_2.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uA_7B_2.glif
similarity index 97%
rename from sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uniA_7B_2.glif
rename to sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uA_7B_2.glif
index e32617837..4f85ee6cd 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uniA_7B_2.glif
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uA_7B_2.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/contents.plist b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/contents.plist
index f25b0ad49..6a78410f2 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/contents.plist
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/contents.plist
@@ -476,8 +476,6 @@
epsilontonos.glif
equal
equal.glif
- estimated
- estimated.glif
eta
eta.glif
etatonos
@@ -3414,28 +3412,28 @@
umacron.glif
underscore
underscore.glif
- uni04F5
- uni04F_5.glif
- uni2C64
- uni2C_64.glif
- uni2C65
- uni2C_65.glif
- uni2C66
- uni2C_66.glif
- uniA78D
- uniA_78D_.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7AE
- uniA_7A_E_.glif
- uniA7B2
- uniA_7B_2.glif
- uniA7B3
- uniA_7B_3.glif
- uniA7B4
- uniA_7B_4.glif
+ u04F5
+ u04F_5.glif
+ u2C64
+ u2C_64.glif
+ u2C65
+ u2C_65.glif
+ u2C66
+ u2C_66.glif
+ uA78D
+ uA_78D_.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7AE
+ uA_7A_E_.glif
+ uA7B2
+ uA_7B_2.glif
+ uA7B3
+ uA_7B_3.glif
+ uA7B4
+ uA_7B_4.glif
uogonek
uogonek.glif
upsilon
@@ -3490,5 +3488,43 @@
zero.glif
zeta
zeta.glif
+ u1EFC
+ u1E_F_C_.glif
+ u1EFD
+ u1E_F_D_.glif
+ u1EFE
+ u1E_F_E_.glif
+ u1EFF
+ u1E_F_F_.glif
+ u20B0
+ u20B_0.glif
+ u20B1
+ u20B_1.glif
+ u20B2
+ u20B_2.glif
+ u20B3
+ u20B_3.glif
+ u20B5
+ u20B_5.glif
+ u20B6
+ u20B_6.glif
+ u20B7
+ u20B_7.glif
+ u20B8
+ u20B_8.glif
+ u20BA
+ u20B_A_.glif
+ u20BB
+ u20B_B_.glif
+ u20BC
+ u20B_C_.glif
+ u20BE
+ u20B_E_.glif
+ u20BF
+ u20B_F_.glif
+ u20C0
+ u20C_0.glif
+ u2120
+ u2120.glif
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/estimated.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/estimated.glif
deleted file mode 100644
index 740e7d62b..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/estimated.glif
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.markColor
- 0.85,0.26,0.06,1
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/layerinfo.plist b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/layerinfo.plist
index d8406f427..24b258914 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/layerinfo.plist
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/layerinfo.plist
@@ -3418,27 +3418,27 @@
0
com.schriftgestaltung.layerOrderInGlyph.underscore
0
- com.schriftgestaltung.layerOrderInGlyph.uni04F5
+ com.schriftgestaltung.layerOrderInGlyph.u04F5
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C64
+ com.schriftgestaltung.layerOrderInGlyph.u2C64
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C65
+ com.schriftgestaltung.layerOrderInGlyph.u2C65
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C66
+ com.schriftgestaltung.layerOrderInGlyph.u2C66
0
- com.schriftgestaltung.layerOrderInGlyph.uniA78D
+ com.schriftgestaltung.layerOrderInGlyph.uA78D
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AA
+ com.schriftgestaltung.layerOrderInGlyph.uA7AA
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AD
+ com.schriftgestaltung.layerOrderInGlyph.uA7AD
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AE
+ com.schriftgestaltung.layerOrderInGlyph.uA7AE
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B2
+ com.schriftgestaltung.layerOrderInGlyph.uA7B2
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B3
+ com.schriftgestaltung.layerOrderInGlyph.uA7B3
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B4
+ com.schriftgestaltung.layerOrderInGlyph.uA7B4
0
com.schriftgestaltung.layerOrderInGlyph.uogonek
0
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u04F_5.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u04F_5.glif
new file mode 100644
index 000000000..33fdf5285
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u04F_5.glif
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 8678effa4ca864ba1b6ab687aaa41fd669c1adfac7fe204087789f01a5a9f98b1c5b51c1dd9b499d6c09e0334696707025e502a7ee0a717bb1d7bf93de922b2e
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_28.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_28.glif
index 5dee982fe..5ae757f76 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_28.glif
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_28.glif
@@ -4,142 +4,121 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
+
-
-
-
-
+
+
+
-
+
-
-
+
-
-
+
-
+
-
-
-
-
+
-
-
+
-
-
-
+
-
-
+
+
-
+
-
-
-
+
+
+
-
+
-
+
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e7d927a2bdde2853f6a6af84c47db0778c1e534bc5b6191517aa1ff68b97858285c68944dcbc67a1de103a150e22228cd9686e6965f5df5003fe4d9e4a5dbe1c
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_C_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_C_.glif
new file mode 100644
index 000000000..80e776612
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_C_.glif
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 16d828114fc1156017b3fb25525c8074df469ce41b00f9685f7890a3ae2c0f787e8427245319d11d1cdf1890e5c81145657ae7976752d5b545c70340d16023ae
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_D_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_D_.glif
new file mode 100644
index 000000000..41951fa83
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_D_.glif
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 14bafc041dc4c97a864730009502bc02667d839b6290f3676ff5a030aae3d9b72e5d7175903dfd2ee4325c9d2a4743f0f760616835517ce7e762cbc92fe35b0d
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_E_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_E_.glif
new file mode 100644
index 000000000..c1853b546
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_E_.glif
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e9b4b04eb6cf514cd5d3b0241103aa123439dde3948cd19716539de7f755ac327f31aecd5b0c87a7d592ce5c2e855ed7dbb264ef9451e5bcf5ad74b59f17028c
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_F_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_F_.glif
new file mode 100644
index 000000000..d2fd2f6c5
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u1E_F_F_.glif
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 759fe67abe8227038307877ed745d8e344feb4a9624adcededc388c1d51d85f5e2162d1e1949ed1c2dadc5a5d1836194476eb3a5d59b5d27dfd9b716dadd04d8
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2071.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2071.glif
index 87c3be66a..5f9d6ddf0 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2071.glif
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2071.glif
@@ -4,47 +4,79 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ c60e5a89b42cf24312318edeba18a477dc481b301e0f0904f194d94c30af5405f3715fe72055bbefda3a4a557e0c013afb63869a54cefdb585b725e72089c91b
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2097.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2097.glif
index 110806b5f..f82319e21 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2097.glif
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2097.glif
@@ -4,44 +4,63 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ bc3e8f06370d81d7fe47418513c666a320f73e5d84fafda71faa79d1e36f7e335800202e8b88d584e09d4a544b9de369646a8e4db2068ec496296ea7e5674e95
+
public.verticalOrigin
- 880
+ 881
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2099.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2099.glif
index b2049c62d..c46473a98 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2099.glif
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2099.glif
@@ -4,66 +4,63 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 8c6fbef6d9e2db8091e2dbbe9e80311cc93f31fc13f656ce433f0dd5e1af01eb0cc790bb1af332e6fec6790fea36e7960e97c007700e2a33b7083f80efb6155c
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u209C_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u209C_.glif
index a2789aa2a..066c18d16 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u209C_.glif
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u209C_.glif
@@ -4,81 +4,72 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 82f536c9f47b663905e06f80e77c2f2952a13ab7526a2be003cda553261ef1a2bc0cc19072f87341aa04f35157f59ff64ba0cd937d9dfcd06c2c091d1f748c5b
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_0.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_0.glif
new file mode 100644
index 000000000..eb04898a5
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_0.glif
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a5d6bc989aab6cb66f4196602a15d4ceb6d0cf39024b0cab95cde90fa6a1f24538fd6c6c176798117c6ca26d7ff9d67751009e181501d7876acb85687274ab64
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_1.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_1.glif
new file mode 100644
index 000000000..e120ed1e1
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_1.glif
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 4104e777476748ff319c6b50851a0cc5e67a00a854893b8bfb4f49f0d2d52d4700052e1669fdc7c4f9a16f58c292b3203efd35467894ac8a86614aa0f67fb726
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_2.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_2.glif
new file mode 100644
index 000000000..fb57c527f
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_2.glif
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e06476d8f285ba82a1136c1799bfc049e7cc1e3bd7f7ea133af5dc87658732725cab8f74edfd69f38aca57ad5ebd9f84f86c681322e0b0cf0d63c26501dc7218
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_3.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_3.glif
new file mode 100644
index 000000000..2073b0f76
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_3.glif
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a4ca535b63be32750616566c5262e569c97236540058204df3899b3647560afff76e9f4afdf74882c37a0d93d4f4c548363d8a73cc13291dbbf837087d77a39d
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_5.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_5.glif
new file mode 100644
index 000000000..c9e71bfab
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_5.glif
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e0f115ce5c71baffcc9a0693ef478947bb6fa86057c9fbaaa8173ec094f97154db9a04fd07786408adf09a2e778d9eb5871adbd5461205d12edf23daa94a3adb
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_6.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_6.glif
new file mode 100644
index 000000000..eacc5a50c
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_6.glif
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 89691a2d5498b89f252890e1cc61afceedd424cb7116625c78f7f0a3ffc90b7111fa2829f50259585275cf8155c29b5eb43b488771ac46a986587f5be0357936
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_7.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_7.glif
new file mode 100644
index 000000000..87d176522
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_7.glif
@@ -0,0 +1,173 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 57b3a3188050bd944d31493e1b0a7342fb22ed6f5d5e5f00b0bfbe3705dc9cd1e86269836f74398d0691ac26795afbde7faf28c14c6d1662e9a74d3716185901
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_8.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_8.glif
new file mode 100644
index 000000000..c0f768c3a
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_8.glif
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7ee31bff5ab614697d005f55e0db0d204cbdae47cfa2420efad0abf87c186480906e0f4fc6266bc743d6c108aa31e3e6092b3696db601ef0ca04ceec87d3ccdd
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_A_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_A_.glif
new file mode 100644
index 000000000..86b2aebb8
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_A_.glif
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ d8939318c7a9dc38188e4041591702c4e6b76f164973e2845b25c4bb091ea178200ff95c4471d604fd6d14292cff12e8cd2318cbcf908e2c135c8a4e048933b7
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_B_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_B_.glif
new file mode 100644
index 000000000..9a68f4a6c
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_B_.glif
@@ -0,0 +1,179 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ aeccba0561b26e2561354490de42d42473a79d513ea70f994c7658e0ee7a1465c159b95f18378014fa98c5c49db5ba37836bcfaeec4c71e82b5f2a18ad58d502
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_C_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_C_.glif
new file mode 100644
index 000000000..81cd346e2
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_C_.glif
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7a8a03cc4fbd2fda99e149a543be0b702242d3e8d5fcd92f67f28e02f7f5c7ea005cf6b85f4d89659b2e21e54ebbc6ce0e7ca11bd6dff71edc97f03cb6fcc794
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_E_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_E_.glif
new file mode 100644
index 000000000..975e1e0d9
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_E_.glif
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ bbeef1a297f5a5eb3652aeb69bee46a1aac461fc269b05a563b7eadabeb47a31075a1454905384c2c2de7615b01f71e300585c19054669c8f48d423fe4dec3f6
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_F_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_F_.glif
new file mode 100644
index 000000000..b0a4d7d98
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20B_F_.glif
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 35469ab9d73899289b35ae9df261dc64238a2cec92d1f81ee656f627b647014e2121e690c9bb9ad1883ece83cfe803b6f3ba833b75dd821c6c350ce6a8f7de7b
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20C_0.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20C_0.glif
new file mode 100644
index 000000000..f832260dd
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u20C_0.glif
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a96faff628a9397e2be5bea39f904f73e496c4d64dd59d9177543fe56b3c3b72d82b74780464028a3bae36ec53577c2d874ec44590daf6ea9eff16de9b0246b4
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2120.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2120.glif
new file mode 100644
index 000000000..166436949
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2120.glif
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 852929ece284f110ef05f9f0cea768108425b8425291f3b9f054231b42d8ccd457867ef76d2961d11dd89758c3e884cc5a24ba8bd752de76c5264bc6f3992a24
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2C_64.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2C_64.glif
new file mode 100644
index 000000000..128606be7
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2C_64.glif
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 00f2ab12e3c590feedb18f9e161c0cd346a6d15b559f2c6acb92c501ba5652385c68eaa478536644de21836580e82cc5487477730222b1ad244d6e88748a22b8
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2C_65.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2C_65.glif
new file mode 100644
index 000000000..9848dc37b
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2C_65.glif
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6167d3b4d5ee3689a271f1e00f070e7b382befa54827a99f06d3b33e3b0f512edf39674efee4f3a3d8b46691bbb7f18fcb591a223f73abbe9824e844fa774420
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2C_66.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2C_66.glif
new file mode 100644
index 000000000..44b00fd1c
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/u2C_66.glif
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 5592418ac749926446b63aaac04f7cfc3b79499c1fc24352018c2ec6f26984d669ef219122b4d0f1e1923e9425fc3fe2371e146a2647571884112306fd90d4b0
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_78D_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_78D_.glif
new file mode 100644
index 000000000..437abeba5
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_78D_.glif
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 13b8fae0bfcf34a34d6319efec9e8daee1be65661a6dc3d1cfc4e67e89203df8c8f5b1e347695bb33561de9d45cce34d5ca50a1e001070629cf2f3702e360aaf
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7A_A_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7A_A_.glif
new file mode 100644
index 000000000..33e0a3c4f
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7A_A_.glif
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 771547a1f1a0257d9b5b00a04efccd027615a5c64c244c241ed1410ef898b1b9ba268b0c020851a22f3629ae1d93276d2f3d2497d275427872f0a9629363fdaa
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7A_D_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7A_D_.glif
new file mode 100644
index 000000000..fb8f621dc
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7A_D_.glif
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 01b3363020ee5b3a88136080b5fa76de66cab823349e62d4ac7ce229d1067be0cbf361f8ef663dd0d71c304fa8ff24ef07d245fb67ca19e8d881a880c1c4c964
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7A_E_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7A_E_.glif
new file mode 100644
index 000000000..466ef79fc
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7A_E_.glif
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 428230c86d98d20918dc62409afadb3849b6efa9c494c8bfe9c9860d2ea3d894e15cd3f75319fc57ec9063f139495ac2226545353d6b541b4b6c2e6f419ea536
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7B_2.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7B_2.glif
new file mode 100644
index 000000000..3e278d401
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7B_2.glif
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b0d6fdc4bf4784095a1db0cf5c2739340dd14ed69f3a7c3d4535b719731fb67878dd958f3b4dbddca2f9e07437861a1401bf93ce1e67435cb9ff8085cd5df177
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7B_3.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7B_3.glif
new file mode 100644
index 000000000..29f6406ef
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7B_3.glif
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e9cb77cbc5e17a1774eaeaeb99176bc6534addd4fcf5a3d0a0e0734e77d853fcbdec5538c7a64181ab67c772eb9f635e869f249d8d50e76786d227dfef1a472e
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7B_4.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7B_4.glif
new file mode 100644
index 000000000..65be2043b
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uA_7B_4.glif
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni04F_5.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni04F_5.glif
deleted file mode 100644
index 20fb30ee5..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni04F_5.glif
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:33:14
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni2C_64.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni2C_64.glif
deleted file mode 100644
index 916652d77..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni2C_64.glif
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- R
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- R
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni2C_65.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni2C_65.glif
deleted file mode 100644
index 6063375ea..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni2C_65.glif
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- a
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- a
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni2C_66.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni2C_66.glif
deleted file mode 100644
index 385b10621..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uni2C_66.glif
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- t
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- t
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_78D_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_78D_.glif
deleted file mode 100644
index 6a86dacbe..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_78D_.glif
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u04BA
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u04BA
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7A_A_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7A_A_.glif
deleted file mode 100644
index ac5cb9838..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7A_A_.glif
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- H
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7A_D_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7A_D_.glif
deleted file mode 100644
index 6ea10e483..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7A_D_.glif
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- L
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7A_E_.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7A_E_.glif
deleted file mode 100644
index c5f7562cc..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7A_E_.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:33:14
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7B_2.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7B_2.glif
deleted file mode 100644
index a4f1f7fac..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7B_2.glif
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:21
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7B_3.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7B_3.glif
deleted file mode 100644
index 734df3066..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7B_3.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:33:14
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7B_4.glif b/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7B_4.glif
deleted file mode 100644
index b7dce15e2..000000000
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs/uniA_7B_4.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:33:14
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/lib.plist b/sources/LXGWWenKaiMonoTC-Light.ufo/lib.plist
index 01388135f..6d7cc4cfe 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/lib.plist
+++ b/sources/LXGWWenKaiMonoTC-Light.ufo/lib.plist
@@ -418,13 +418,13 @@
u1EF6
u1EF8
u1EFA
- uni2C64
- uniA78D
- uniA7AA
- uniA7AD
- uniA7B2
- uniA7B3
- uniA7B4
+ u2C64
+ uA78D
+ uA7AA
+ uA7AD
+ uA7B2
+ uA7B3
+ uA7B4
a
aacute
abreve
@@ -878,8 +878,8 @@
uhorn
uhungarumlaut
umacron
- uni2C65
- uni2C66
+ u2C65
+ u2C66
uogonek
uring
utilde
@@ -1080,7 +1080,7 @@
u04EF
u04F1
u04F3
- uni04F5
+ u04F5
u04FF
Alpha
Beta
@@ -1786,7 +1786,7 @@
uA4FD
uA4FE
uA4FF
- uniA7AE
+ uA7AE
uA7AF
u11FB0
PureWriter
@@ -1843,5 +1843,30 @@
theta1
uni03D1
+ public.unicodeVariationSequences
+
+ FE00
+
+ 2018
+ quoteleft
+ 2019
+ quoteright
+ 201C
+ quotedblleft
+ 201D
+ quotedblright
+
+ FE01
+
+ 2018
+ quoteleft.full
+ 2019
+ quoteright.full
+ 201C
+ quotedblleft.full
+ 201D
+ quotedblright.full
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/features.fea b/sources/LXGWWenKaiMonoTC-Medium.ufo/features.fea
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/features.fea
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/features.fea
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/fontinfo.plist b/sources/LXGWWenKaiMonoTC-Medium.ufo/fontinfo.plist
new file mode 100644
index 000000000..0df6f84aa
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/fontinfo.plist
@@ -0,0 +1,431 @@
+
+
+
+
+ ascender
+ 880
+ capHeight
+ 695
+ copyright
+ Copyright 2022-2024 LXGW (https://github.com/lxgw/LxgwWenkaiTC)
+Copyright 2020 The Klee Project Authors (https://github.com/fontworks-fonts/Klee)
+ descender
+ -120
+ familyName
+ LXGW WenKai Mono TC
+ italicAngle
+ 0
+ openTypeHeadCreated
+ 2020/12/15 00:00:00
+ openTypeHheaAscender
+ 928
+ openTypeHheaDescender
+ -241
+ openTypeHheaLineGap
+ 0
+ openTypeNameDesigner
+ LXGW / Fontworks Inc.
+ openTypeNameDesignerURL
+ https://github.com/lxgw
+ openTypeNameLicense
+ This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
+ openTypeNameLicenseURL
+ https://scripts.sil.org/OFL
+ openTypeNameManufacturer
+ LXGW / Fontworks Inc.
+ openTypeNameManufacturerURL
+ https://github.com/lxgw
+ openTypeNamePreferredFamilyName
+ LXGW WenKai Mono TC
+ openTypeNamePreferredSubfamilyName
+ Medium
+ openTypeNameRecords
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 1
+ platformID
+ 3
+ string
+ 霞鶩文楷等寬 TC Medium
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 1
+ platformID
+ 3
+ string
+ 霞鹜文楷等宽 TC Medium
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 1
+ platformID
+ 3
+ string
+ 霞鶩文楷等寬 TC Medium
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 1
+ platformID
+ 3
+ string
+ 霞鶩文楷等寬 TC Medium
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 16
+ platformID
+ 3
+ string
+ 霞鶩文楷等寬 TC
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 16
+ platformID
+ 3
+ string
+ 霞鹜文楷等宽 TC
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 16
+ platformID
+ 3
+ string
+ 霞鶩文楷等寬 TC
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 16
+ platformID
+ 3
+ string
+ 霞鶩文楷等寬 TC
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Medium
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Medium
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Medium
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Medium
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 酌貪泉而覺爽,處涸轍以猶歡。
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 酌貪泉而覺爽,處涸轍以猶歡。
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 酌貪泉而覺爽,處涸轍以猶歡。
+
+
+ openTypeNameUniqueID
+ LXGW WenKai Mono TC Medium:Version 1.330
+ openTypeNameVersion
+ Version 1.330;April 28, 2024
+ openTypeOS2CodePageRanges
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 7
+ 8
+ 18
+ 20
+ 29
+ 30
+ 48
+ 49
+ 50
+ 52
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 62
+ 63
+
+ openTypeOS2Panose
+
+ 2
+ 2
+ 6
+ 9
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+ openTypeOS2Selection
+
+ openTypeOS2StrikeoutPosition
+ 300
+ openTypeOS2StrikeoutSize
+ 50
+ openTypeOS2SubscriptXOffset
+ 0
+ openTypeOS2SubscriptXSize
+ 650
+ openTypeOS2SubscriptYOffset
+ 75
+ openTypeOS2SubscriptYSize
+ 600
+ openTypeOS2SuperscriptXOffset
+ 0
+ openTypeOS2SuperscriptXSize
+ 650
+ openTypeOS2SuperscriptYOffset
+ 350
+ openTypeOS2SuperscriptYSize
+ 600
+ openTypeOS2Type
+
+ openTypeOS2TypoAscender
+ 880
+ openTypeOS2TypoDescender
+ -120
+ openTypeOS2TypoLineGap
+ 0
+ openTypeOS2UnicodeRanges
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 9
+ 29
+ 30
+ 31
+ 32
+ 33
+ 34
+ 35
+ 36
+ 37
+ 38
+ 39
+ 40
+ 41
+ 42
+ 43
+ 44
+ 45
+ 46
+ 47
+ 48
+ 49
+ 50
+ 51
+ 54
+ 55
+ 57
+ 59
+ 60
+ 61
+ 62
+ 65
+ 66
+ 68
+ 90
+ 99
+ 109
+ 111
+
+ openTypeOS2VendorID
+ LXGW
+ openTypeOS2WeightClass
+ 500
+ openTypeOS2WidthClass
+ 5
+ openTypeOS2WinAscent
+ 928
+ openTypeOS2WinDescent
+ 241
+ openTypeVheaVertTypoAscender
+ 500
+ openTypeVheaVertTypoDescender
+ -500
+ openTypeVheaVertTypoLineGap
+ 0
+ postscriptUnderlinePosition
+ -175
+ postscriptUnderlineThickness
+ 50
+ styleMapFamilyName
+ LXGW WenKai Mono TC Medium
+ styleMapStyleName
+ regular
+ styleName
+ Medium
+ unitsPerEm
+ 1000
+ versionMajor
+ 1
+ versionMinor
+ 330
+ xHeight
+ 468
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/contents.plist b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/contents.plist
new file mode 100644
index 000000000..c787c44ab
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/contents.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ u2C65
+ u2C_65.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7B2
+ uA_7B_2.glif
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uni2C_65.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/u2C_65.glif
similarity index 97%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uni2C_65.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/u2C_65.glif
index f9a95d041..12ca7fc25 100644
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uni2C_65.glif
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/u2C_65.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uniA_7A_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/uA_7A_A_.glif
similarity index 98%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uniA_7A_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/uA_7A_A_.glif
index 8d2d467dc..c8ae1c92b 100644
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uniA_7A_A_.glif
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/uA_7A_A_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uniA_7A_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/uA_7A_D_.glif
similarity index 98%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uniA_7A_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/uA_7A_D_.glif
index ac9153f7a..a37aa5419 100644
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uniA_7A_D_.glif
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/uA_7A_D_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uniA_7B_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/uA_7B_2.glif
similarity index 99%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uniA_7B_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/uA_7B_2.glif
index e105a91d9..706cf131c 100644
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uniA_7B_2.glif
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs.public.background/uA_7B_2.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_E_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_E_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_E_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_E_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_breve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_breve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_breve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_dieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_dieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_dieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_grave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_grave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_grave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_lpha.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_lpha.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_lpha.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_lpha.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_lphatonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_lphatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_lphatonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_lphatonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_macron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_macron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_macron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_ogonek.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_ogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_ogonek.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_ogonek.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_ring.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_ring.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_ring.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_ring.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_ringacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_ringacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_ringacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_ringacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_tilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/A_tilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/A_tilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/B_eta.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/B_eta.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/B_eta.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/B_eta.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_cedilla.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_cedilla.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_cedilla.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_cedilla.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_dotaccent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_dotaccent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_dotaccent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_hi.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_hi.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/C_hi.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/C_hi.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/D_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/D_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/D_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/D_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/D_croat.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/D_croat.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/D_croat.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/D_croat.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_breve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_breve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_breve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_dieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_dieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_dieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_dotaccent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_dotaccent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_dotaccent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_grave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_grave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_grave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_macron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_macron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_macron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_ng.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_ng.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_ng.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_ng.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_ogonek.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_ogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_ogonek.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_ogonek.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_psilon.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_psilon.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_psilon.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_psilon.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_psilontonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_psilontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_psilontonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_psilontonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_ta.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_ta.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_ta.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_ta.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_tatonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_tatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_tatonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_tatonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_th.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_th.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_th.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_th.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_uro.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_uro.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/E_uro.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/E_uro.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_amma.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_amma.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_amma.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_amma.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_breve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_breve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_breve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_dotaccent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/G_dotaccent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/G_dotaccent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/H_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/H_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/H_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/H_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/H_bar.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/H_bar.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/H_bar.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/H_bar.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/H_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/H_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/H_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/H_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_J_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_J_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_J_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_J_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_breve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_breve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_breve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_dieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_dieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_dieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_dotaccent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_dotaccent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_dotaccent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_grave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_grave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_grave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_macron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_macron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_macron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_ogonek.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_ogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_ogonek.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_ogonek.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_ota.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_ota.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_ota.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_ota.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_otadieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_otadieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_otadieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_otadieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_otatonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_otatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_otatonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_otatonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_tilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/I_tilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/I_tilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/J_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/J_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/J_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/J_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/J_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/J_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/J_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/J_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/K_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/K_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/K_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/K_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/K_appa.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/K_appa.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/K_appa.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/K_appa.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_ambda.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_ambda.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_ambda.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_ambda.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_dot.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_dot.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_dot.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_dot.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_slash.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_slash.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/L_slash.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/L_slash.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/M_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/M_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/M_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/M_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/M_u.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/M_u.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/M_u.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/M_u.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_tilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_tilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_tilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_u.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_u.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/N_u.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/N_u.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_breve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_breve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_breve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_dieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_dieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_dieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_grave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_grave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_grave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_horn.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_horn.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_horn.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_horn.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_hungarumlaut.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_hungarumlaut.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_hungarumlaut.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_hungarumlaut.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_macron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_macron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_macron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_mega.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_mega.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_mega.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_mega.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_megatonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_megatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_megatonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_megatonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_micron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_micron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_micron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_micron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_microntonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_microntonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_microntonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_microntonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_slash.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_slash.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_slash.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_slash.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_slashacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_slashacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_slashacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_slashacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_tilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/O_tilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/O_tilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_hi.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_hi.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_hi.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_hi.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_i.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_i.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_i.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_i.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_si.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_si.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_si.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_si.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_ureW_riter.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_ureW_riter.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/P_ureW_riter.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/P_ureW_riter.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Q_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Q_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Q_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Q_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/R_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/R_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/R_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/R_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/R_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/R_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/R_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/R_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/R_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/R_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/R_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/R_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/R_ho.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/R_ho.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/R_ho.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/R_ho.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_cedilla.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_cedilla.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_cedilla.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_cedilla.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_igma.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_igma.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/S_igma.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/S_igma.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_au.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_au.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_au.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_au.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_bar.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_bar.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_bar.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_bar.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_heta.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_heta.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_heta.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_heta.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_horn.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_horn.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/T_horn.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/T_horn.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_breve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_breve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_breve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_dieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_dieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_dieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_grave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_grave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_grave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_horn.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_horn.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_horn.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_horn.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_hungarumlaut.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_hungarumlaut.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_hungarumlaut.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_hungarumlaut.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_macron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_macron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_macron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_ogonek.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_ogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_ogonek.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_ogonek.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_psilon.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_psilon.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_psilon.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_psilon.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_psilon1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_psilon1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_psilon1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_psilon1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_psilondieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_psilondieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_psilondieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_psilondieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_psilontonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_psilontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_psilontonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_psilontonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_ring.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_ring.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_ring.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_ring.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_tilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/U_tilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/U_tilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/V_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/V_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/V_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/V_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_dieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_dieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_dieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_grave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/W_grave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/W_grave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/X_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/X_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/X_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/X_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/X_i.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/X_i.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/X_i.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/X_i.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_circumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_circumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_circumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_dieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_dieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_dieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_grave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Y_grave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Y_grave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_dotaccent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_dotaccent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_dotaccent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_eta.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_eta.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/Z_eta.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/Z_eta.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/_null.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/_null.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/_null.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/_null.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/a.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/a.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/a.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/a.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/a.salt.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/a.salt.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/a.salt.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/a.salt.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/abreve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/abreve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/abreve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/abreve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/acircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/acircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/acircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/acircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/acute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/acute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/acute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/acute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/acutecomb.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/acutecomb.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/acutecomb.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/acutecomb.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/adieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/adieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/adieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/adieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ae.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ae.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ae.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ae.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aeacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aeacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aeacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aeacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/agrave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/agrave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/agrave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/agrave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/alpha.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/alpha.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/alpha.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/alpha.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/alphatonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/alphatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/alphatonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/alphatonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/amacron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/amacron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/amacron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/amacron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ampersand.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ampersand.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ampersand.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ampersand.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/anoteleia.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/anoteleia.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/anoteleia.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/anoteleia.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aogonek.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aogonek.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aogonek.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aring.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aring.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aring.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aring.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aringacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aringacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/aringacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/aringacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/asciicircum.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/asciicircum.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/asciicircum.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/asciicircum.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/asciitilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/asciitilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/asciitilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/asciitilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/asterisk.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/asterisk.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/asterisk.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/asterisk.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/at.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/at.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/at.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/at.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/atilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/atilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/atilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/atilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/b.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/b.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/b.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/b.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/backslash.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/backslash.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/backslash.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/backslash.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/bar.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/bar.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/bar.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/bar.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/beta.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/beta.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/beta.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/beta.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/braceleft.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/braceleft.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/braceleft.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/braceleft.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/braceright.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/braceright.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/braceright.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/braceright.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/bracketleft.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/bracketleft.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/bracketleft.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/bracketleft.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/bracketright.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/bracketright.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/bracketright.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/bracketright.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/breve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/breve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/breve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/breve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/brokenbar.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/brokenbar.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/brokenbar.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/brokenbar.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/bullet.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/bullet.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/bullet.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/bullet.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/c.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/c.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/c.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/c.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/cacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/cacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/cacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/cacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/caron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/caron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/caron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/caron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ccaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ccaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ccaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ccaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ccedilla.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ccedilla.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ccedilla.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ccedilla.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ccircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ccircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ccircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ccircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/cdotaccent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/cdotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/cdotaccent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/cdotaccent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/cent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/cent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/cent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/cent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/chi.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/chi.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/chi.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/chi.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/colon.calt.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/colon.calt.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/colon.calt.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/colon.calt.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/colon.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/colon.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/colon.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/colon.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/colonmonetary.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/colonmonetary.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/colonmonetary.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/colonmonetary.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/comma.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/comma.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/comma.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/comma.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/contents.plist b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/contents.plist
similarity index 98%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/contents.plist
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/contents.plist
index f25b0ad49..6a78410f2 100644
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/contents.plist
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/contents.plist
@@ -476,8 +476,6 @@
epsilontonos.glif
equal
equal.glif
- estimated
- estimated.glif
eta
eta.glif
etatonos
@@ -3414,28 +3412,28 @@
umacron.glif
underscore
underscore.glif
- uni04F5
- uni04F_5.glif
- uni2C64
- uni2C_64.glif
- uni2C65
- uni2C_65.glif
- uni2C66
- uni2C_66.glif
- uniA78D
- uniA_78D_.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7AE
- uniA_7A_E_.glif
- uniA7B2
- uniA_7B_2.glif
- uniA7B3
- uniA_7B_3.glif
- uniA7B4
- uniA_7B_4.glif
+ u04F5
+ u04F_5.glif
+ u2C64
+ u2C_64.glif
+ u2C65
+ u2C_65.glif
+ u2C66
+ u2C_66.glif
+ uA78D
+ uA_78D_.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7AE
+ uA_7A_E_.glif
+ uA7B2
+ uA_7B_2.glif
+ uA7B3
+ uA_7B_3.glif
+ uA7B4
+ uA_7B_4.glif
uogonek
uogonek.glif
upsilon
@@ -3490,5 +3488,43 @@
zero.glif
zeta
zeta.glif
+ u1EFC
+ u1E_F_C_.glif
+ u1EFD
+ u1E_F_D_.glif
+ u1EFE
+ u1E_F_E_.glif
+ u1EFF
+ u1E_F_F_.glif
+ u20B0
+ u20B_0.glif
+ u20B1
+ u20B_1.glif
+ u20B2
+ u20B_2.glif
+ u20B3
+ u20B_3.glif
+ u20B5
+ u20B_5.glif
+ u20B6
+ u20B_6.glif
+ u20B7
+ u20B_7.glif
+ u20B8
+ u20B_8.glif
+ u20BA
+ u20B_A_.glif
+ u20BB
+ u20B_B_.glif
+ u20BC
+ u20B_C_.glif
+ u20BE
+ u20B_E_.glif
+ u20BF
+ u20B_F_.glif
+ u20C0
+ u20C_0.glif
+ u2120
+ u2120.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/copyright.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/copyright.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/copyright.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/copyright.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/currency.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/currency.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/currency.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/currency.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/d.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/d.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/d.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/d.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dcaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dcaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dcaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dcroat.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dcroat.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dcroat.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dcroat.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/degree.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/degree.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/degree.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/degree.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/delta.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/delta.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/delta.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/delta.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dieresistonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dieresistonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dieresistonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dieresistonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/divide.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/divide.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/divide.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/divide.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dollar.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dollar.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dollar.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dollar.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dong.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dong.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dong.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dong.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dotbelowcomb.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dotbelowcomb.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dotbelowcomb.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dotbelowcomb.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dotlessi.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dotlessi.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dotlessi.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dotlessi.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dotmath.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dotmath.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/dotmath.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/dotmath.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/e.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/e.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/e.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/e.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ebreve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ebreve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ebreve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ebreve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ecaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ecaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ecaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ecaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ecircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ecircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ecircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ecircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/edieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/edieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/edieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/edieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/edotaccent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/edotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/edotaccent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/edotaccent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/egrave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/egrave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/egrave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/egrave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eight.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eight.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eight.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eight.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/emacron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/emacron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/emacron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/emacron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eng.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eng.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eng.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eng.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eogonek.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eogonek.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eogonek.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/epsilon.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/epsilon.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/epsilon.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/epsilon.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/epsilontonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/epsilontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/epsilontonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/epsilontonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/equal.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/equal.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/equal.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/equal.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eta.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eta.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eta.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eta.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/etatonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/etatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/etatonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/etatonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eth.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eth.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/eth.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/eth.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/exclam.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/exclam.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/exclam.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/exclam.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/exclamdown.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/exclamdown.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/exclamdown.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/exclamdown.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/f.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/f.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/f.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/f.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/five.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/five.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/five.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/five.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/florin.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/florin.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/florin.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/florin.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/four.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/four.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/four.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/four.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/fraction.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/fraction.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/fraction.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/fraction.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/franc.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/franc.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/franc.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/franc.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/g.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/g.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/g.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/g.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gamma.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gamma.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gamma.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gamma.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gbreve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gbreve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gbreve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gbreve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gcaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gcaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gcaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gcircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gcircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gcircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gcircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gdotaccent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gdotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gdotaccent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gdotaccent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/germandbls.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/germandbls.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/germandbls.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/germandbls.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33707.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33707.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33707.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33707.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33708.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33708.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33708.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33708.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33709.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33709.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33709.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33709.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33710.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33710.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33710.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33710.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33711.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33711.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33711.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33711.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33712.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33712.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33712.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33712.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33713.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33713.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33713.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33713.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33714.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33714.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33714.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33714.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33715.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33715.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33715.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33715.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33716.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33716.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33716.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33716.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33717.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33717.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33717.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33717.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33718.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33718.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33718.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33718.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33719.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33719.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33719.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33719.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33720.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33720.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33720.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33720.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33721.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33721.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33721.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33721.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33722.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33722.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33722.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33722.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33723.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33723.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33723.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33723.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33724.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33724.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33724.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33724.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33725.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33725.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33725.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33725.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33726.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33726.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/glyph33726.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/glyph33726.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/grave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/grave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/grave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/grave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gravecomb.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gravecomb.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/gravecomb.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/gravecomb.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/greater.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/greater.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/greater.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/greater.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/guillemotleft.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/guillemotleft.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/guillemotleft.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/guillemotleft.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/guillemotright.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/guillemotright.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/guillemotright.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/guillemotright.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/guilsinglleft.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/guilsinglleft.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/guilsinglleft.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/guilsinglleft.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/guilsinglright.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/guilsinglright.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/guilsinglright.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/guilsinglright.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/h.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/h.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/h.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/h.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/hbar.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/hbar.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/hbar.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/hbar.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/hcircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/hcircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/hcircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/hcircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/hookabovecomb.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/hookabovecomb.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/hookabovecomb.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/hookabovecomb.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/hyphen.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/hyphen.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/hyphen.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/hyphen.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/i.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/i.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/i.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/i.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ibreve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ibreve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ibreve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ibreve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/icircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/icircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/icircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/icircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/idieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/idieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/idieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/idieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/igrave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/igrave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/igrave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/igrave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ij.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ij.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ij.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ij.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/imacron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/imacron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/imacron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/imacron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iogonek.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iogonek.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iogonek.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iota.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iota.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iota.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iota.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iotadieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iotadieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iotadieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iotadieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iotadieresistonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iotadieresistonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iotadieresistonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iotadieresistonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iotatonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iotatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/iotatonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/iotatonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/itilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/itilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/itilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/itilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/j.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/j.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/j.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/j.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/jcircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/jcircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/jcircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/jcircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/k.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/k.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/k.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/k.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/kappa.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/kappa.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/kappa.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/kappa.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/kgreenlandic.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/kgreenlandic.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/kgreenlandic.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/kgreenlandic.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/l.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/l.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/l.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/l.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lambda.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lambda.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lambda.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lambda.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/layerinfo.plist b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/layerinfo.plist
similarity index 99%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/layerinfo.plist
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/layerinfo.plist
index d8406f427..24b258914 100644
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/layerinfo.plist
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/layerinfo.plist
@@ -3418,27 +3418,27 @@
0
com.schriftgestaltung.layerOrderInGlyph.underscore
0
- com.schriftgestaltung.layerOrderInGlyph.uni04F5
+ com.schriftgestaltung.layerOrderInGlyph.u04F5
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C64
+ com.schriftgestaltung.layerOrderInGlyph.u2C64
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C65
+ com.schriftgestaltung.layerOrderInGlyph.u2C65
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C66
+ com.schriftgestaltung.layerOrderInGlyph.u2C66
0
- com.schriftgestaltung.layerOrderInGlyph.uniA78D
+ com.schriftgestaltung.layerOrderInGlyph.uA78D
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AA
+ com.schriftgestaltung.layerOrderInGlyph.uA7AA
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AD
+ com.schriftgestaltung.layerOrderInGlyph.uA7AD
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AE
+ com.schriftgestaltung.layerOrderInGlyph.uA7AE
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B2
+ com.schriftgestaltung.layerOrderInGlyph.uA7B2
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B3
+ com.schriftgestaltung.layerOrderInGlyph.uA7B3
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B4
+ com.schriftgestaltung.layerOrderInGlyph.uA7B4
0
com.schriftgestaltung.layerOrderInGlyph.uogonek
0
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lcaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lcaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lcaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ldot.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ldot.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ldot.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ldot.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/less.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/less.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/less.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/less.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lira.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lira.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lira.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lira.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/logicalnot.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/logicalnot.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/logicalnot.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/logicalnot.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/longs.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/longs.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/longs.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/longs.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lslash.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lslash.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/lslash.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/lslash.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/m.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/m.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/m.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/m.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/macron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/macron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/macron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/macron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/minus.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/minus.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/minus.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/minus.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/minute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/minute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/minute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/minute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/mu.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/mu.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/mu.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/mu.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/multiply.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/multiply.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/multiply.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/multiply.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/n.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/n.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/n.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/n.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/nacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/nacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/nacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/nacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/napostrophe.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/napostrophe.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/napostrophe.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/napostrophe.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ncaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ncaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ncaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ncaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/nine.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/nine.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/nine.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/nine.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/nonmarkingreturn.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/nonmarkingreturn.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/nonmarkingreturn.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/nonmarkingreturn.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ntilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ntilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ntilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ntilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/nu.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/nu.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/nu.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/nu.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/numbersign.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/numbersign.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/numbersign.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/numbersign.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/o.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/o.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/o.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/o.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/oacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/oacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/oacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/oacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/obreve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/obreve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/obreve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/obreve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ocircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ocircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ocircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ocircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/odieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/odieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/odieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/odieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/oe.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/oe.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/oe.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/oe.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ograve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ograve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ograve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ograve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ohorn.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ohorn.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ohorn.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ohorn.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ohungarumlaut.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ohungarumlaut.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ohungarumlaut.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ohungarumlaut.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omacron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omacron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omacron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omacron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omega.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omega.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omega.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omega.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omega1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omega1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omega1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omega1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omegatonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omegatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omegatonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omegatonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omicron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omicron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omicron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omicron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omicrontonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omicrontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/omicrontonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/omicrontonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/one.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/one.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/one.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/one.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ordfeminine.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ordfeminine.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ordfeminine.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ordfeminine.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ordmasculine.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ordmasculine.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ordmasculine.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ordmasculine.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/oslash.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/oslash.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/oslash.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/oslash.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/oslashacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/oslashacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/oslashacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/oslashacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/otilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/otilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/otilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/otilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/p.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/p.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/p.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/p.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/paragraph.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/paragraph.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/paragraph.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/paragraph.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/parenleft.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/parenleft.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/parenleft.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/parenleft.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/parenright.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/parenright.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/parenright.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/parenright.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/partialdiff.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/partialdiff.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/partialdiff.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/partialdiff.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/percent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/percent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/percent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/percent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/period.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/period.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/period.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/period.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/periodcentered.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/periodcentered.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/periodcentered.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/periodcentered.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/phi.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/phi.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/phi.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/phi.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/phi1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/phi1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/phi1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/phi1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/pi.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/pi.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/pi.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/pi.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/plus.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/plus.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/plus.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/plus.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/plusminus.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/plusminus.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/plusminus.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/plusminus.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/product.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/product.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/product.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/product.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/psi.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/psi.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/psi.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/psi.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/q.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/q.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/q.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/q.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/question.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/question.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/question.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/question.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/questiondown.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/questiondown.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/questiondown.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/questiondown.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotedbl.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotedbl.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotedbl.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotedbl.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotedblbase.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotedblbase.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotedblbase.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotedblbase.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotedblleft.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotedblleft.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotedblleft.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotedblleft.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotedblright.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotedblright.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotedblright.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotedblright.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quoteleft.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quoteleft.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quoteleft.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quoteleft.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotereversed.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotereversed.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotereversed.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotereversed.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quoteright.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quoteright.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quoteright.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quoteright.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotesinglbase.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotesinglbase.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotesinglbase.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotesinglbase.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotesingle.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotesingle.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/quotesingle.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/quotesingle.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/r.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/r.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/r.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/r.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/racute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/racute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/racute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/racute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/radical.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/radical.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/radical.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/radical.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/rcaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/rcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/rcaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/rcaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/registered.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/registered.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/registered.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/registered.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/rho.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/rho.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/rho.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/rho.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/s.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/s.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/s.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/s.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/sacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/sacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/sacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/sacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/scaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/scaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/scaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/scaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/scedilla.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/scedilla.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/scedilla.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/scedilla.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/scircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/scircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/scircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/scircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/second.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/second.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/second.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/second.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/section.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/section.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/section.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/section.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/semicolon.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/semicolon.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/semicolon.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/semicolon.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/seven.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/seven.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/seven.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/seven.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/sigma.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/sigma.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/sigma.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/sigma.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/sigma1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/sigma1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/sigma1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/sigma1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/six.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/six.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/six.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/six.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/slash.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/slash.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/slash.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/slash.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/space.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/space.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/space.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/space.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/sterling.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/sterling.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/sterling.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/sterling.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/summation.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/summation.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/summation.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/summation.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/t.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/t.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/t.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/t.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tau.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tau.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tau.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tau.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tbar.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tbar.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tbar.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tbar.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tcaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tcaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tcaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/theta.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/theta.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/theta.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/theta.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/theta1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/theta1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/theta1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/theta1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/thorn.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/thorn.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/thorn.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/thorn.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/three.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/three.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/three.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/three.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tildecomb.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tildecomb.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tildecomb.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tildecomb.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/tonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/tonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/trademark.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/trademark.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/trademark.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/trademark.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/two.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/two.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/two.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/two.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u00A_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u00A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u00A_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u00A_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u00B_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u00B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u00B_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u00B_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u00B_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u00B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u00B_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u00B_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u00B_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u00B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u00B_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u00B_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0122.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0122.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0122.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0122.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0123.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0123.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0123.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0123.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0136.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0136.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0136.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0136.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0137.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0137.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0137.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0137.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u013B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u013B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u013B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u013B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u013C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u013C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u013C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u013C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0145.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0145.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0145.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0145.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0146.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0146.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0146.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0146.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0156.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0156.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0156.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0156.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0157.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0157.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0157.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0157.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0162.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0162.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0162.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0162.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0163.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0163.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0163.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0163.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0180.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0180.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0180.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0180.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0181.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0181.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0181.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0181.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0182.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0182.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0182.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0182.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0183.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0183.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0183.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0183.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0184.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0184.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0184.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0184.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0185.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0185.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0185.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0185.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0186.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0186.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0186.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0186.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0187.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0187.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0187.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0187.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0188.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0188.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0188.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0188.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0189.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0189.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0189.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0189.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u018F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u018F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0190.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0190.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0190.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0190.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0191.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0191.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0191.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0191.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0193.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0193.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0193.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0193.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0194.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0194.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0194.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0194.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0195.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0195.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0195.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0195.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0196.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0196.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0196.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0196.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0197.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0197.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0197.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0197.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0198.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0198.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0198.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0198.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0199.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0199.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0199.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0199.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u019F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u019F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01A_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01A_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01B_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01B_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01C_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01C_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01D_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01D_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01E_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01E_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u01F_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u01F_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0200.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0200.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0200.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0200.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0201.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0201.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0201.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0201.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0202.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0202.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0202.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0202.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0203.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0203.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0203.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0203.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0204.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0204.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0204.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0204.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0205.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0205.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0205.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0205.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0206.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0206.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0206.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0206.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0207.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0207.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0207.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0207.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0208.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0208.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0208.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0208.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0209.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0209.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0209.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0209.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u020F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u020F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0210.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0210.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0210.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0210.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0211.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0211.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0211.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0211.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0212.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0212.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0212.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0212.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0213.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0213.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0213.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0213.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0214.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0214.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0214.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0214.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0215.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0215.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0215.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0215.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0216.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0216.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0216.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0216.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0217.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0217.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0217.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0217.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0218.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0218.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0218.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0218.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0219.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0219.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0219.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0219.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u021F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u021F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0220.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0220.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0220.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0220.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0221.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0221.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0221.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0221.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0222.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0222.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0222.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0222.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0223.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0223.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0223.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0223.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0224.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0224.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0224.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0224.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0225.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0225.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0225.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0225.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0226.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0226.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0226.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0226.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0227.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0227.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0227.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0227.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0228.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0228.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0228.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0228.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0229.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0229.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0229.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0229.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u022F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u022F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0230.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0230.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0230.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0230.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0231.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0231.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0231.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0231.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0232.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0232.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0232.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0232.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0233.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0233.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0233.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0233.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0234.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0234.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0234.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0234.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0235.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0235.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0235.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0235.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0236.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0236.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0236.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0236.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0237.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0237.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0237.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0237.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0238.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0238.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0238.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0238.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0239.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0239.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0239.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0239.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u023F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u023F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0240.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0240.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0240.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0240.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0241.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0241.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0241.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0241.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0242.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0242.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0242.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0242.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0243.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0243.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0243.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0243.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0244.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0244.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0244.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0244.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0245.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0245.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0245.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0245.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0246.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0246.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0246.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0246.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0247.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0247.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0247.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0247.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0248.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0248.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0248.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0248.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0249.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0249.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0249.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0249.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u024F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u024F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0250.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0250.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0250.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0250.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0251.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0251.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0251.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0251.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0252.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0252.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0252.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0252.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0253.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0253.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0253.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0253.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0254.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0254.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0254.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0254.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0255.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0255.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0255.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0255.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0256.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0256.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0256.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0256.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0257.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0257.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0257.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0257.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0258.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0258.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0258.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0258.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0259.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0259.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0259.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0259.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u025F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u025F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0260.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0260.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0260.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0260.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0261.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0261.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0261.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0261.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0262.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0262.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0262.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0262.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0263.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0263.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0263.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0263.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0264.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0264.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0264.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0264.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0265.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0265.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0265.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0265.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0266.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0266.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0266.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0266.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0267.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0267.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0267.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0267.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0268.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0268.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0268.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0268.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0269.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0269.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0269.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0269.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u026F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u026F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0270.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0270.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0270.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0270.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0271.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0271.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0271.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0271.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0272.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0272.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0272.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0272.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0273.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0273.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0273.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0273.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0274.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0274.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0274.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0274.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0275.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0275.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0275.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0275.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0276.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0276.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0276.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0276.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0277.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0277.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0277.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0277.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0278.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0278.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0278.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0278.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0279.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0279.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0279.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0279.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u027F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u027F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0280.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0280.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0280.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0280.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0281.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0281.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0281.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0281.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0282.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0282.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0282.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0282.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0283.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0283.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0283.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0283.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0284.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0284.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0284.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0284.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0285.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0285.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0285.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0285.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0286.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0286.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0286.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0286.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0287.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0287.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0287.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0287.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0288.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0288.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0288.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0288.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0289.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0289.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0289.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0289.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u028F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u028F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0290.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0290.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0290.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0290.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0291.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0291.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0291.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0291.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0292.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0292.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0292.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0292.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0293.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0293.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0293.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0293.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0294.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0294.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0294.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0294.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0295.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0295.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0295.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0295.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0296.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0296.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0296.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0296.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0297.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0297.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0297.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0297.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0298.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0298.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0298.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0298.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0299.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0299.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0299.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0299.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u029F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u029F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02A_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02A_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02B_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02B_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02C_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02C_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02D_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02D_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02D_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02D_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02D_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02D_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02D_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02D_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02D_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02E_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02E_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02F_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02F_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02F_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02F_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u02F_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u02F_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0302.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0302.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0302.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0302.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0304.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0304.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0304.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0304.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0305.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0305.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0305.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0305.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0306.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0306.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0306.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0306.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0307.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0307.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0307.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0307.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0308.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0308.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0308.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0308.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u030F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u030F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0311.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0311.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0311.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0311.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0316.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0316.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0316.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0316.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0317.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0317.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0317.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0317.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0318.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0318.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0318.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0318.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0319.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0319.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0319.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0319.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u031F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u031F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0320.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0320.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0320.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0320.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0324.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0324.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0324.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0324.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0325.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0325.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0325.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0325.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0326.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0326.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0326.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0326.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0327.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0327.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0327.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0327.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0328.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0328.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0328.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0328.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0329.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0329.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0329.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0329.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u032F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u032F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0330.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0330.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0330.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0330.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0331.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0331.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0331.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0331.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0332.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0332.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0332.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0332.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0334.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0334.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0334.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0334.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0335.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0335.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0335.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0335.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0336.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0336.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0336.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0336.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0338.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0338.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0338.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0338.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0339.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0339.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0339.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0339.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u033A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u033A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u033A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u033A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u033B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u033B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u033B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u033B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u033C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u033C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u033C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u033C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u033D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u033D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u033D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u033D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0340.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0340.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0340.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0340.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0341.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0341.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0341.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0341.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0358.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0358.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0358.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0358.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0361.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0361.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0361.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0361.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0370.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0370.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0370.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0370.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0371.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0371.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0371.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0371.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0372.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0372.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0372.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0372.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0373.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0373.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0373.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0373.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0374.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0374.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0374.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0374.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0375.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0375.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0375.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0375.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0376.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0376.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0376.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0376.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0377.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0377.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0377.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0377.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u037F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u037F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0394.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0394.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0394.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0394.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03A_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03A_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03A_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03B_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03B_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03B_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03C_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03C_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03C_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03C_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03D_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03D_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03E_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03E_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03E_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03E_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03E_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03E_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u03F_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u03F_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0400.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0400.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0400.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0400.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0401.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0401.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0401.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0401.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0402.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0402.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0402.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0402.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0403.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0403.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0403.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0403.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0404.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0404.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0404.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0404.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0405.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0405.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0405.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0405.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0406.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0406.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0406.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0406.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0407.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0407.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0407.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0407.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0408.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0408.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0408.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0408.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0409.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0409.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0409.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0409.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u040F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u040F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0410.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0410.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0410.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0410.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0411.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0411.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0411.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0411.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0412.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0412.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0412.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0412.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0413.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0413.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0413.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0413.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0414.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0414.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0414.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0414.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0415.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0415.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0415.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0415.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0416.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0416.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0416.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0416.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0417.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0417.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0417.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0417.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0418.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0418.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0418.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0418.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0419.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0419.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0419.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0419.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u041F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u041F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0420.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0420.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0420.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0420.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0421.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0421.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0421.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0421.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0422.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0422.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0422.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0422.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0423.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0423.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0423.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0423.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0424.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0424.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0424.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0424.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0425.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0425.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0425.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0425.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0426.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0426.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0426.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0426.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0427.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0427.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0427.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0427.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0428.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0428.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0428.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0428.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0429.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0429.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0429.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0429.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u042F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u042F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0430.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0430.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0430.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0430.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0431.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0431.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0431.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0431.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0432.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0432.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0432.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0432.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0433.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0433.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0433.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0433.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0434.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0434.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0434.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0434.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0435.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0435.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0435.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0435.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0436.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0436.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0436.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0436.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0437.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0437.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0437.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0437.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0438.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0438.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0438.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0438.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0439.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0439.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0439.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0439.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u043F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u043F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0440.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0440.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0440.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0440.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0441.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0441.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0441.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0441.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0442.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0442.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0442.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0442.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0443.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0443.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0443.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0443.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0444.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0444.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0444.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0444.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0445.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0445.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0445.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0445.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0446.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0446.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0446.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0446.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0447.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0447.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0447.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0447.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0448.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0448.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0448.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0448.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0449.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0449.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0449.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0449.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u044F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u044F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0450.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0450.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0450.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0450.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0451.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0451.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0451.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0451.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0452.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0452.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0452.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0452.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0453.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0453.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0453.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0453.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0454.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0454.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0454.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0454.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0455.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0455.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0455.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0455.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0456.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0456.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0456.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0456.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0457.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0457.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0457.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0457.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0458.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0458.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0458.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0458.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0459.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0459.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0459.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0459.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u045F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u045F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0462.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0462.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0462.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0462.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0463.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0463.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0463.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0463.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u046A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u046A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u046A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u046A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u046B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u046B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u046B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u046B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0472.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0472.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0472.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0472.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0473.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0473.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0473.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0473.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0474.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0474.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0474.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0474.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0475.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0475.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0475.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0475.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0478.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0478.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0478.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0478.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0479.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0479.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0479.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0479.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0490.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0490.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0490.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0490.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0491.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0491.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0491.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0491.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0492.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0492.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0492.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0492.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0493.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0493.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0493.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0493.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0496.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0496.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0496.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0496.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0497.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0497.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0497.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0497.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u049A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u049A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u049A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u049A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u049B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u049B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u049B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u049B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u049C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u049C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u049C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u049C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u049D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u049D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u049D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u049D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04A_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04A_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04A_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04A_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04A_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04A_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04A_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04A_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04A_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04A_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04A_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04A_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04B_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04B_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04C_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04C_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04C_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04C_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04C_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04C_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04C_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04D_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04D_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04D_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04D_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04D_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04D_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04D_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04D_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04D_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04D_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04D_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04D_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04E_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04E_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_5.glif
new file mode 100644
index 000000000..0da4cc055
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_5.glif
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 4eb369cd67ee8b069e59887502d7779c5df76c6e34fbbc7711f9ddf1907a5ab9736ffc0d21289a86c1fc2b8dd876d77ae2299b8801a5935e206c69266ccbc6a8
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u04F_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u04F_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0E_3F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0E_3F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u0E_3F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u0E_3F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u11F_B_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u11F_B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u11F_B_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u11F_B_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_00.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_00.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_00.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_00.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_04.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_04.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_04.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_04.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_05.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_05.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_05.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_05.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_06.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_06.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_06.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_06.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_07.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_07.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_07.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_07.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_08.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_08.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_08.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_08.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_0F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_0F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_10.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_10.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_10.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_10.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_14.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_14.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_14.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_14.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_15.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_15.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_15.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_15.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_18.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_18.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_18.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_18.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_19.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_19.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_19.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_19.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_1A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_1A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_1A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_1A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_1B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_1B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_1B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_1B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_1C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_1C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_1C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_1C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_20.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_20.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_20.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_20.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_21.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_21.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_21.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_21.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_22.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_22.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_22.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_22.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_23.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_23.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_23.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_23.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_25.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_25.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_25.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_25.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_39.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_39.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_39.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_39.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_3A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_3A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_3A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_3A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_3C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_3C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_3C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_3C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_3E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_3E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1D_3E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1D_3E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_00.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_00.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_00.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_00.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_01.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_01.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_01.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_01.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_02.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_02.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_02.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_02.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_03.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_03.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_03.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_03.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_04.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_04.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_04.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_04.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_05.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_05.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_05.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_05.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_06.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_06.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_06.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_06.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_07.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_07.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_07.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_07.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_08.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_08.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_08.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_08.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_09.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_09.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_09.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_09.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_0F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_0F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_10.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_10.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_10.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_10.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_11.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_11.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_11.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_11.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_12.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_12.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_12.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_12.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_13.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_13.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_13.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_13.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_14.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_14.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_14.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_14.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_15.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_15.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_15.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_15.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_16.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_16.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_16.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_16.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_17.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_17.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_17.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_17.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_18.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_18.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_18.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_18.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_19.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_19.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_19.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_19.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_1F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_1F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_20.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_20.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_20.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_20.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_21.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_21.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_21.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_21.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_22.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_22.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_22.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_22.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_23.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_23.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_23.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_23.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_24.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_24.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_24.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_24.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_25.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_25.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_25.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_25.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_26.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_26.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_26.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_26.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_27.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_27.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_27.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_27.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_28.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_28.glif
new file mode 100644
index 000000000..cf8d74a49
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_28.glif
@@ -0,0 +1,149 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ f30a22b9226dd56cd5865eb08258cd824aa164651e1787e01a802603ef5ed511169d913de0835f37a2086dd3b8b1862123ab31121198e597b05bbf98306e4dbf
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_29.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_29.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_29.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_29.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_2F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_2F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_30.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_30.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_30.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_30.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_31.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_31.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_31.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_31.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_32.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_32.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_32.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_32.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_33.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_33.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_33.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_33.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_34.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_34.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_34.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_34.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_35.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_35.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_35.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_35.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_36.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_36.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_36.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_36.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_37.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_37.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_37.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_37.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_38.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_38.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_38.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_38.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_39.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_39.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_39.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_39.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_3F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_3F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_40.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_40.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_40.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_40.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_41.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_41.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_41.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_41.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_42.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_42.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_42.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_42.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_43.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_43.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_43.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_43.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_44.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_44.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_44.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_44.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_45.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_45.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_45.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_45.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_46.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_46.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_46.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_46.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_47.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_47.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_47.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_47.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_48.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_48.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_48.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_48.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_49.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_49.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_49.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_49.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_4F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_4F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_50.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_50.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_50.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_50.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_51.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_51.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_51.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_51.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_52.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_52.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_52.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_52.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_53.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_53.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_53.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_53.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_54.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_54.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_54.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_54.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_55.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_55.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_55.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_55.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_56.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_56.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_56.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_56.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_57.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_57.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_57.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_57.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_58.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_58.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_58.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_58.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_59.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_59.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_59.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_59.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_5F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_5F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_60.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_60.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_60.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_60.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_61.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_61.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_61.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_61.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_62.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_62.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_62.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_62.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_63.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_63.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_63.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_63.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_64.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_64.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_64.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_64.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_65.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_65.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_65.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_65.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_66.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_66.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_66.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_66.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_67.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_67.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_67.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_67.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_68.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_68.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_68.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_68.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_69.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_69.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_69.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_69.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_6F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_6F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_70.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_70.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_70.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_70.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_71.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_71.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_71.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_71.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_72.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_72.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_72.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_72.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_73.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_73.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_73.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_73.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_74.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_74.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_74.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_74.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_75.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_75.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_75.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_75.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_76.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_76.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_76.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_76.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_77.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_77.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_77.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_77.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_78.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_78.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_78.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_78.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_79.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_79.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_79.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_79.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_7F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_7F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_86.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_86.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_86.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_86.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_87.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_87.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_87.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_87.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_88.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_88.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_88.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_88.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_89.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_89.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_89.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_89.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_8F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_8F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_90.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_90.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_90.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_90.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_91.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_91.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_91.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_91.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_92.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_92.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_92.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_92.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_93.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_93.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_93.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_93.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_94.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_94.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_94.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_94.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_95.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_95.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_95.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_95.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_96.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_96.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_96.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_96.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_97.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_97.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_97.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_97.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_98.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_98.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_98.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_98.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_99.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_99.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_99.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_99.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_9F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_9F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_A_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_A_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_B_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_B_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_C_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_C_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_D_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_D_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_E_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_E_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1E_F_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_C_.glif
new file mode 100644
index 000000000..891c5e344
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_C_.glif
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 69b8f14c450e14ef1a15b8fdd4a7e000284a6f19060f30db026779ae96fd487d291fc72b0800f9f826d65f8694474a245b424cd3a74cd54e2ccec16cc7390760
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_D_.glif
new file mode 100644
index 000000000..f21a792d5
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_D_.glif
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7148b1901bd6c536b87f6573d54862e82802340575a4d53837eb8458d9ac5e8f4c2dfdaa08c5519202718065423a1ee04b27431b06aa40018bbe18c7d3d17520
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_E_.glif
new file mode 100644
index 000000000..16363f642
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_E_.glif
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 96c7b0e317dc7e61060116d688398ab66af2e3457d2d538c053669619434e7d306c8aa14209e99d482d4836e5f5d79bea345b9b56c2f9b8d146972c860d98a8b
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_F_.glif
new file mode 100644
index 000000000..9c6fa76fd
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1E_F_F_.glif
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 30d6ceadedc551e5180a13860cf783f65df9fb5105e22058ca412aa82c433ebd2b96730aaf7ab54f269254c4242ba0eaf9e1eb9a0b1ccab57eb2dadb86524560
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_00.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_00.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_00.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_00.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_01.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_01.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_01.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_01.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_02.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_02.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_02.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_02.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_03.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_03.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_03.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_03.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_04.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_04.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_04.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_04.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_05.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_05.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_05.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_05.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_06.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_06.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_06.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_06.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_07.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_07.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_07.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_07.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_08.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_08.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_08.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_08.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_09.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_09.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_09.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_09.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_0F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_0F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_10.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_10.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_10.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_10.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_11.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_11.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_11.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_11.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_12.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_12.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_12.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_12.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_12F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_12F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_12F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_12F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_13.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_13.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_13.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_13.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_14.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_14.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_14.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_14.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_15.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_15.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_15.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_15.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_16A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_16A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_16A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_16A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_16B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_16B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_16B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_16B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_16C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_16C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_16C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_16C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_18.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_18.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_18.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_18.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_19.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_19.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_19.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_19.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_1A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_1A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_1A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_1A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_1B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_1B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_1B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_1B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_1C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_1C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_1C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_1C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_1D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_1D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_1D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_1D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_20.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_20.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_20.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_20.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_21.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_21.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_21.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_21.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_22.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_22.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_22.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_22.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_23.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_23.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_23.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_23.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_24.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_24.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_24.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_24.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_25.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_25.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_25.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_25.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_26.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_26.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_26.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_26.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_27.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_27.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_27.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_27.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_28.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_28.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_28.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_28.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_29.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_29.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_29.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_29.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_2F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_2F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_30.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_30.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_30.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_30.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_31.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_31.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_31.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_31.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_32.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_32.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_32.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_32.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_33.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_33.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_33.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_33.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_34.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_34.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_34.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_34.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_35.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_35.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_35.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_35.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_36.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_36.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_36.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_36.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_37.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_37.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_37.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_37.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_38.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_38.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_38.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_38.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_39.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_39.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_39.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_39.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_3F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_3F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_40.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_40.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_40.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_40.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_41.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_41.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_41.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_41.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_42.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_42.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_42.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_42.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_43.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_43.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_43.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_43.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_44.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_44.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_44.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_44.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_45.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_45.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_45.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_45.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_48.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_48.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_48.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_48.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_49.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_49.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_49.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_49.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_4A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_4A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_4A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_4A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_4B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_4B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_4B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_4B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_4C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_4C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_4C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_4C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_4D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_4D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_4D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_4D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_50.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_50.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_50.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_50.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_51.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_51.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_51.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_51.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_52.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_52.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_52.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_52.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_53.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_53.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_53.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_53.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_54.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_54.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_54.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_54.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_55.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_55.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_55.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_55.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_56.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_56.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_56.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_56.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_57.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_57.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_57.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_57.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_59.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_59.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_59.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_59.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_5B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_5B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_5B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_5B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_5D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_5D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_5D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_5D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_5F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_5F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_5F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_5F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_60.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_60.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_60.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_60.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_61.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_61.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_61.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_61.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_62.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_62.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_62.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_62.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_63.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_63.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_63.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_63.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_64.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_64.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_64.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_64.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_65.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_65.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_65.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_65.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_66.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_66.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_66.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_66.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_67.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_67.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_67.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_67.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_68.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_68.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_68.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_68.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_69.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_69.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_69.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_69.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_6F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_6F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_70.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_70.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_70.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_70.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_71.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_71.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_71.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_71.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_72.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_72.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_72.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_72.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_73.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_73.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_73.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_73.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_74.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_74.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_74.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_74.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_75.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_75.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_75.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_75.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_76.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_76.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_76.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_76.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_77.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_77.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_77.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_77.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_78.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_78.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_78.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_78.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_79.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_79.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_79.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_79.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_7A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_7A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_7A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_7A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_7B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_7B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_7B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_7B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_7C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_7C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_7C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_7C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_7D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_7D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_7D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_7D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_80.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_80.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_80.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_80.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_81.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_81.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_81.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_81.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_82.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_82.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_82.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_82.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_83.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_83.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_83.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_83.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_84.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_84.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_84.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_84.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_85.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_85.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_85.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_85.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_86.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_86.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_86.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_86.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_87.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_87.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_87.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_87.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_88.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_88.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_88.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_88.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_89.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_89.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_89.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_89.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_8F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_8F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_90.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_90.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_90.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_90.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_91.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_91.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_91.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_91.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_92.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_92.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_92.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_92.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_93.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_93.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_93.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_93.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_94.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_94.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_94.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_94.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_95.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_95.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_95.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_95.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_96.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_96.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_96.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_96.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_97.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_97.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_97.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_97.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_98.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_98.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_98.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_98.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_99.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_99.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_99.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_99.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_9F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_9F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_A_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_A_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_B_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_B_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_C_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_C_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_D_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_D_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_E_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_E_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u1F_F_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u1F_F_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2004.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2004.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2004.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2004.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2005.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2005.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2005.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2005.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2006.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2006.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2006.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2006.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2007.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2007.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2007.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2007.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2008.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2008.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2008.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2008.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2009.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2009.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2009.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2009.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u200A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u200A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u200A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u200A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u200B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u200B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u200B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u200B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u201F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u201F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u201F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u201F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2034.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2034.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2034.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2034.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2036.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2036.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2036.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2036.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2037.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2037.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2037.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2037.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u203D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u203D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u203D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u203D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2042.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2042.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2042.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2042.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2052.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2052.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2052.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2052.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2070.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2070.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2070.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2070.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2071.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2071.glif
new file mode 100644
index 000000000..f24fe3661
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2071.glif
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 98f1000869b3c92e99ed79834c77b0527719169444ad819f161d408ae211ade0e835ab1d7f4a6070b835416d012c490f48399d683979cf45c083285bd0d0f1b1
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2074.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2074.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2074.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2074.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2075.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2075.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2075.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2075.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2076.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2076.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2076.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2076.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2077.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2077.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2077.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2077.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2078.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2078.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2078.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2078.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2079.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2079.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2079.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2079.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u207F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u207F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2080.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2080.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2080.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2080.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2081.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2081.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2081.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2081.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2082.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2082.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2082.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2082.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2083.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2083.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2083.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2083.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2084.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2084.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2084.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2084.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2085.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2085.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2085.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2085.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2086.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2086.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2086.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2086.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2087.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2087.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2087.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2087.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2088.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2088.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2088.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2088.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2089.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2089.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2089.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2089.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u208E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u208E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2090.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2090.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2090.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2090.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2091.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2091.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2091.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2091.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2092.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2092.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2092.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2092.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2093.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2093.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2093.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2093.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2094.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2094.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2094.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2094.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2095.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2095.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2095.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2095.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2096.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2096.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2096.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2096.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2097.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2097.glif
new file mode 100644
index 000000000..0fb72c93b
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2097.glif
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b9d466dcfa05f0972f26d08f248ea23aad65210708834f65b7540783c3711a081622cc873cb4ab9d108f743e828ad2e26751172e01d8efd9c5d829920daaf7e8
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2098.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2098.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2098.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2098.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2099.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2099.glif
new file mode 100644
index 000000000..5a99dc48b
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2099.glif
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 80dca0b2803f7745adf7662ca15c23010db4a4ffb6514410cea9551ab460dfbec3241bccd49d617f7eaeeab616b10b2fd8d4309719f8f39211d92feb377811a9
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u209A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u209A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u209A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u209A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u209B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u209B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u209B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u209B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u209C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u209C_.glif
new file mode 100644
index 000000000..297504fc2
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u209C_.glif
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6e437615e46dabe2c88388b6c9cb61d284b725d2fdb84987be49511b0f2b13872543315d2515482bd8842901f1fb253d225e600a95d90a7b2bb45fbda6c27cde
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20A_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20A_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_0.glif
new file mode 100644
index 000000000..96242bd49
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_0.glif
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 1f58e84a9e1eb995c5624c503fcb0d8d4dd7880f38b695cacb2874e4b2c53ad69a01ffb3560e04ff30d9ca6cd44f168f4eefc2bd0da0d4654340c45901fc129e
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_1.glif
new file mode 100644
index 000000000..fc4263d41
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_1.glif
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ eba449b6390187fdb23196a004d393d56e6e04f9e749d5208c7d4000ad39989765d7399bc0b7a1ba79ca24723268445980d3f6c6436a1d6acfdbb6efe93cd242
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_2.glif
new file mode 100644
index 000000000..42e6de4a0
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_2.glif
@@ -0,0 +1,130 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 8bf4619ef24f0c99651f5105eb2d4d61e4e6f19d36ffab6e45d190f5f82d39f119681bae7b01ca2bf3ca3061ca34ab5f49ebc6b1ca7012be21545b3316ad13f6
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_3.glif
new file mode 100644
index 000000000..305a52e92
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_3.glif
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a9f87efcbb3f71b545cc347bbb5b4d533780b26909ca3a893e72a17b856e7507a6b93bd661ba8b5769ced89a7b51286ad20632466cd89947d7b21aa1998f0290
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20B_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20B_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_5.glif
new file mode 100644
index 000000000..437b3a024
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_5.glif
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 276b396f5082d1c2ac2b4c70ac2d5576cce8d2824df4923a5b0abb8e0ab8353a7612fc227eaa6b84343ad76c6864cf8fe0e3779f8193813534b567885e0674fc
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_6.glif
new file mode 100644
index 000000000..4a4aa12ea
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_6.glif
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e88d1131d03d260b63c5a3da8afdd66846c45d341cbce2f83af1bf79ed6e33490333cdf7c88f5bf7490ec8d2b9c6a2067b962e189468867750600fefa68ec616
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_7.glif
new file mode 100644
index 000000000..9cdb1c2a3
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_7.glif
@@ -0,0 +1,164 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 96b827e669e37010342f113bd5796be056ee6b0e12363f664ac76e1465e166a4585f004d841e01b03a6fbc0d8ecfba87893aeb2766b862423d60f8de294a2d4a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_8.glif
new file mode 100644
index 000000000..740cb5701
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_8.glif
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 46f6fbf01d15aeed672e72bd0dd768ecb991d4bc0de0b97a49546fade8d2e5d9d884cb9cfc73c08ab683c96188a25f408ccd17b45bab5ca77295229fcdc39468
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20B_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20B_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_A_.glif
new file mode 100644
index 000000000..6ce5e794a
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_A_.glif
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ c973c6a65de0a4d026e911d467a51d1845e6d604cb3eced02c23af1f601d47685bc2f74363acb120802d3ea09a1e719ffc876a272d0e52260e8ad748b858023a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_B_.glif
new file mode 100644
index 000000000..bc89f9280
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_B_.glif
@@ -0,0 +1,163 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ c6255fabf1238878246abfe607f82a870baeefe1a6557f472727c068c53b3c1b6c06844827292f8143ebfa84a0416696a14623284dee5b3869b4ef467933ff8d
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_C_.glif
new file mode 100644
index 000000000..fdc10818b
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_C_.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 04b1553dc2bfe30b0dc8f8f34171b17420bebc6bcc8dbfb893a2ec9f7d723b4a21f2870f19c2a59c3d8cc2b1153b310e2069a32f6b45c49173090de9f3b55817
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20B_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u20B_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_E_.glif
new file mode 100644
index 000000000..79aa8beef
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_E_.glif
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ faf7b18bcc930acf62efddef86ae558f509de69be387de0b5bb2373696363c1b2104a6578e5f6e26373c3059488d7b44253947e8438a5a35fe0fe121c4066557
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_F_.glif
new file mode 100644
index 000000000..1571d3019
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20B_F_.glif
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 966901f7b0e8f5655f918859dfd8d231207a271038b36ca2b4a69667c77158c4095f901535a66ef95d4fe2e3fe99cac8637b63f3369afb8d37462159ae6e7f50
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20C_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20C_0.glif
new file mode 100644
index 000000000..b9e03a952
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u20C_0.glif
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 16f941298ac2106f37285423ff87d01e99f70ec3ad7612608b9f2f6a87131a46bade49947a1f72d7ad5bb3f222d02c1765f23f732052d4e30b5eba7f3e0f3f4f
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u210A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u210A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u210A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u210A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u210E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u210E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u210E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u210E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u210F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u210F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u210F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u210F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2113.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2113.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2113.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2113.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2120.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2120.glif
new file mode 100644
index 000000000..8fc06ae54
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2120.glif
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ fac0838fffba35f3c646953d2063c4b68002b0c3676bf0fffae145f6757f9766f54e15e759905bdbde22ab28968eb29fa20ae79cb1e580f55f96f3e130c9f690
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2127.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2127.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2127.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2127.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2129.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2129.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2129.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2129.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2132.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2132.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2132.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2132.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2141.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2141.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2141.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2141.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2142.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2142.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2142.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2142.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2143.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2143.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2143.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2143.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2144.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2144.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2144.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2144.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u214E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u214E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u214E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u214E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u218A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u218A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u218A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u218A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u218B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u218B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u218B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u218B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2215.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2215.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2215.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2215.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2216.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2216.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2216.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2216.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u221B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u221B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u221B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u221B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u221C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u221C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u221C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u221C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2373.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2373.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2373.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2373.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2374.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2374.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2374.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2374.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2375.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2375.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2375.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2375.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2376.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2376.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2376.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2376.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2377.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2377.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2377.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2377.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2378.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2378.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2378.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2378.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2379.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2379.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2379.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2379.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u237A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u237A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u237A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u237A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u23E_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u23E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u23E_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u23E_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2422.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2422.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2422.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2422.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u275F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u275F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2760.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2760.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2760.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2760.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u29F_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u29F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u29F_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u29F_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u29F_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u29F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u29F_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u29F_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2C_64.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2C_64.glif
new file mode 100644
index 000000000..13fd9854c
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2C_64.glif
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ f239ca8d73cc8a687fb49fc901b77ff833d7c4059fbe639c5f13c47ac9d7e410a32585b2e473c03f7aece5ef0a917d2006fb1f7f460999ae5b2f77502ccb1894
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2C_65.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2C_65.glif
new file mode 100644
index 000000000..45110bbeb
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2C_65.glif
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 42b230c5e162c67ec30b077045cc1647e28b62253ea432cf5ec3c8fc8e82e9b8407046b7b433bc8e3f352c08754b94aff65b1eb435f73bff2c8abd19fca48718
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2C_66.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2C_66.glif
new file mode 100644
index 000000000..9692d67d6
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2C_66.glif
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ c975b87f3c8cbb47bf86f46b831394567a29a671ba4f3c19554ba920173043aef1db2d4e28f3cf44630f047191988642e9d58e9853a931cd7d8be12153425060
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_2E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_2E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_2E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_2E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_3A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_3A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_3A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_3A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_3B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_3B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_3B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_3B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_40.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_40.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_40.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_40.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_55.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_55.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_55.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_55.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_56.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_56.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u2E_56.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u2E_56.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u3099.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u3099.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u3099.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u3099.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u309A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u309A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u309A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u309A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/u31B_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/u31B_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4D_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4D_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4E_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4E_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_0.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_0.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_0.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_1.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_1.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_1.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_2.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_3.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_3.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_4.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_4.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_6.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_6.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_6.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_7.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_7.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_7.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_8.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_8.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_8.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_9.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_9.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_9.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_A_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_A_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_B_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_B_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_B_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_C_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_C_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_C_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_E_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_E_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_4F_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_4F_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_730.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_730.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_730.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_730.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_731.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_731.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_731.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_731.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_78D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_78D_.glif
new file mode 100644
index 000000000..589f43f02
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_78D_.glif
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a5464305937fa754a75df4bbc09661117cddc20330e1da096d806bdba1a3acf91e8104b06fc35ac8c57ffee82d216bbbbad18350b904144d49ea766abd2858af
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_A_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_A_.glif
new file mode 100644
index 000000000..6d152f932
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_A_.glif
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 9bba71f301e91a84cac8c8ad2e2d9eb2641d9be687eaa829889b64182fd3953a833c82ad958c81a43215b7979011e2534d7880bee784277fba21c070346e03c1
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_D_.glif
new file mode 100644
index 000000000..365783c55
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_D_.glif
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ fc3de2dc89cc52ef03dde78c345352268133f8c4157c05c6168ee33f5fda57a131b48138fd64b944e88556238b2619c3110bbed9ccc6e799f2831c66a9109a65
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_E_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_E_.glif
new file mode 100644
index 000000000..40d14c893
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_E_.glif
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6cde46e835ef1877da167a99f5a73c21e20609a97251747b27a74c97f7f897d062458c215ef605154dcd78b9485672f1c12de2e26ac6feafb0d3eb804f1e8f4f
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_7A_F_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_7A_F_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7A_F_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_2.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_2.glif
new file mode 100644
index 000000000..be5e414b4
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_2.glif
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 419224cc94b4e29fb93da502c450f6fa674039e2464e43bd26cf48b4a478a90ea70029c04f94b828220a008cff256b1856361e395fa3371638c6eae60b6ba591
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_3.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_3.glif
new file mode 100644
index 000000000..9613a05f8
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_3.glif
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ db13c63dd729c91e1e3872c3829ad13159b1d7244b5384fa30983ba9c448515e8f33100c5096c98ead4fdc25c98ea0292c989af3f9dcf5e93752568e917d01d0
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_4.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_4.glif
new file mode 100644
index 000000000..53a762757
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_4.glif
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 191a065a55d4d03eff4b5904e434fcc9f5a8f9a9316f194d67c2a48f87a627756646277563a0f2a9cb0bd2a83724b51a4bb1d85761820afaac096798a7fb731b
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_7B_5.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_5.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_7B_5.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_7B_5.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_B_53.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_B_53.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uA_B_53.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uA_B_53.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_00.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_00.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_00.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_00.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_01.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_01.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_01.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_01.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_02.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_02.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_02.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_02.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_03.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_03.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_03.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_03.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_04.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_04.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_B_04.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_B_04.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_F_F_F_D_.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_F_F_F_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uF_F_F_F_D_.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uF_F_F_F_D_.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ubreve.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ubreve.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ubreve.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ubreve.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ucircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ucircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ucircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ucircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/udieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/udieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/udieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/udieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ugrave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ugrave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ugrave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ugrave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uhorn.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uhorn.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uhorn.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uhorn.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uhungarumlaut.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uhungarumlaut.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uhungarumlaut.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uhungarumlaut.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/umacron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/umacron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/umacron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/umacron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/underscore.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/underscore.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/underscore.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/underscore.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uogonek.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uogonek.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uogonek.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/upsilon.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/upsilon.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/upsilon.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/upsilon.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/upsilondieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/upsilondieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/upsilondieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/upsilondieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/upsilondieresistonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/upsilondieresistonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/upsilondieresistonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/upsilondieresistonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/upsilontonos.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/upsilontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/upsilontonos.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/upsilontonos.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uring.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uring.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/uring.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/uring.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/utilde.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/utilde.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/utilde.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/utilde.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/v.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/v.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/v.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/v.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/w.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/w.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/w.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/w.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/wacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/wacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/wacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/wacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/wcircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/wcircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/wcircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/wcircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/wdieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/wdieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/wdieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/wdieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/wgrave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/wgrave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/wgrave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/wgrave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/x.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/x.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/x.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/x.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/xi.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/xi.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/xi.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/xi.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/y.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/y.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/y.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/y.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/yacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/yacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/yacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/yacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ycircumflex.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ycircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ycircumflex.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ycircumflex.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ydieresis.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ydieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ydieresis.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ydieresis.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/yen.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/yen.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/yen.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/yen.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ygrave.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ygrave.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/ygrave.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/ygrave.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/z.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/z.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/z.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/z.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zacute.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zacute.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zacute.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zacute.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zcaron.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zcaron.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zcaron.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zdotaccent.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zdotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zdotaccent.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zdotaccent.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zero.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zero.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zero.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zero.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zeta.glif b/sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zeta.glif
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs/zeta.glif
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/glyphs/zeta.glif
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/layercontents.plist b/sources/LXGWWenKaiMonoTC-Medium.ufo/layercontents.plist
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/layercontents.plist
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/layercontents.plist
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/lib.plist b/sources/LXGWWenKaiMonoTC-Medium.ufo/lib.plist
similarity index 98%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/lib.plist
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/lib.plist
index 3f2c5d15c..a3f0d4eb5 100644
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/lib.plist
+++ b/sources/LXGWWenKaiMonoTC-Medium.ufo/lib.plist
@@ -422,13 +422,13 @@
u1EF6
u1EF8
u1EFA
- uni2C64
- uniA78D
- uniA7AA
- uniA7AD
- uniA7B2
- uniA7B3
- uniA7B4
+ u2C64
+ uA78D
+ uA7AA
+ uA7AD
+ uA7B2
+ uA7B3
+ uA7B4
a
aacute
abreve
@@ -882,8 +882,8 @@
uhorn
uhungarumlaut
umacron
- uni2C65
- uni2C66
+ u2C65
+ u2C66
uogonek
uring
utilde
@@ -1084,7 +1084,7 @@
u04EF
u04F1
u04F3
- uni04F5
+ u04F5
u04FF
Alpha
Beta
@@ -1790,7 +1790,7 @@
uA4FD
uA4FE
uA4FF
- uniA7AE
+ uA7AE
uA7AF
u11FB0
PureWriter
@@ -1847,5 +1847,30 @@
theta1
uni03D1
+ public.unicodeVariationSequences
+
+ FE00
+
+ 2018
+ quoteleft
+ 2019
+ quoteright
+ 201C
+ quotedblleft
+ 201D
+ quotedblright
+
+ FE01
+
+ 2018
+ quoteleft.full
+ 2019
+ quoteright.full
+ 201C
+ quotedblleft.full
+ 201D
+ quotedblright.full
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/metainfo.plist b/sources/LXGWWenKaiMonoTC-Medium.ufo/metainfo.plist
similarity index 100%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/metainfo.plist
rename to sources/LXGWWenKaiMonoTC-Medium.ufo/metainfo.plist
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/fontinfo.plist b/sources/LXGWWenKaiMonoTC-Regular.ufo/fontinfo.plist
index d7fd3a188..09a93c2ab 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/fontinfo.plist
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/fontinfo.plist
@@ -7,7 +7,8 @@
capHeight
695
copyright
- Copyright 2024 The LXGW WenKai Project Authors (https://github.com/lxgw/LxgwWenkaiTC)
+ Copyright 2022-2024 LXGW (https://github.com/lxgw/LxgwWenkaiTC)
+Copyright 2020 The Klee Project Authors (https://github.com/fontworks-fonts/Klee)
descender
-120
familyName
@@ -84,9 +85,135 @@
string
霞鶩文楷等寬 TC
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 酌貪泉而覺爽,處涸轍以猶歡。
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 酌貪泉而覺爽,處涸轍以猶歡。
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 酌貪泉而覺爽,處涸轍以猶歡。
+
+
+ openTypeNameUniqueID
+ LXGW WenKai Mono TC:Version 1.330
+ openTypeNameVersion
+ Version 1.330;April 28, 2024
+ openTypeOS2CodePageRanges
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 7
+ 8
+ 18
+ 20
+ 29
+ 30
+ 48
+ 49
+ 50
+ 52
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 62
+ 63
+
+ openTypeOS2Panose
+
+ 2
+ 2
+ 5
+ 9
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
- openTypeNameSampleText
- 酌貪泉而覺爽,處涸轍以猶歡。
openTypeOS2StrikeoutPosition
300
openTypeOS2StrikeoutSize
@@ -117,6 +244,10 @@
0
openTypeOS2VendorID
LXGW
+ openTypeOS2WeightClass
+ 400
+ openTypeOS2WidthClass
+ 5
openTypeOS2WinAscent
928
openTypeOS2WinDescent
@@ -126,11 +257,15 @@
openTypeVheaVertTypoDescender
-500
openTypeVheaVertTypoLineGap
- 1000
+ 0
postscriptUnderlinePosition
- -200
+ -175
postscriptUnderlineThickness
50
+ styleMapFamilyName
+ LXGW WenKai Mono TC
+ styleMapStyleName
+ regular
styleName
Regular
unitsPerEm
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/contents.plist b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/contents.plist
index 5ddcb4629..c787c44ab 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/contents.plist
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/contents.plist
@@ -2,13 +2,13 @@
- uni2C65
- uni2C_65.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7B2
- uniA_7B_2.glif
+ u2C65
+ u2C_65.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7B2
+ uA_7B_2.glif
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uni2C_65.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/u2C_65.glif
similarity index 96%
rename from sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uni2C_65.glif
rename to sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/u2C_65.glif
index 39bc7a49d..a935da56b 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uni2C_65.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/u2C_65.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uniA_7A_A_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uA_7A_A_.glif
similarity index 98%
rename from sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uniA_7A_A_.glif
rename to sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uA_7A_A_.glif
index d0957bcf1..b58524ed7 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uniA_7A_A_.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uA_7A_A_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uniA_7A_D_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uA_7A_D_.glif
similarity index 98%
rename from sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uniA_7A_D_.glif
rename to sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uA_7A_D_.glif
index 94b5dfd41..ab2e32d5f 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uniA_7A_D_.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uA_7A_D_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uniA_7B_2.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uA_7B_2.glif
similarity index 98%
rename from sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uniA_7B_2.glif
rename to sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uA_7B_2.glif
index 26ecd052a..cbe388055 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uniA_7B_2.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uA_7B_2.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/contents.plist b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/contents.plist
index f25b0ad49..6a78410f2 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/contents.plist
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/contents.plist
@@ -476,8 +476,6 @@
epsilontonos.glif
equal
equal.glif
- estimated
- estimated.glif
eta
eta.glif
etatonos
@@ -3414,28 +3412,28 @@
umacron.glif
underscore
underscore.glif
- uni04F5
- uni04F_5.glif
- uni2C64
- uni2C_64.glif
- uni2C65
- uni2C_65.glif
- uni2C66
- uni2C_66.glif
- uniA78D
- uniA_78D_.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7AE
- uniA_7A_E_.glif
- uniA7B2
- uniA_7B_2.glif
- uniA7B3
- uniA_7B_3.glif
- uniA7B4
- uniA_7B_4.glif
+ u04F5
+ u04F_5.glif
+ u2C64
+ u2C_64.glif
+ u2C65
+ u2C_65.glif
+ u2C66
+ u2C_66.glif
+ uA78D
+ uA_78D_.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7AE
+ uA_7A_E_.glif
+ uA7B2
+ uA_7B_2.glif
+ uA7B3
+ uA_7B_3.glif
+ uA7B4
+ uA_7B_4.glif
uogonek
uogonek.glif
upsilon
@@ -3490,5 +3488,43 @@
zero.glif
zeta
zeta.glif
+ u1EFC
+ u1E_F_C_.glif
+ u1EFD
+ u1E_F_D_.glif
+ u1EFE
+ u1E_F_E_.glif
+ u1EFF
+ u1E_F_F_.glif
+ u20B0
+ u20B_0.glif
+ u20B1
+ u20B_1.glif
+ u20B2
+ u20B_2.glif
+ u20B3
+ u20B_3.glif
+ u20B5
+ u20B_5.glif
+ u20B6
+ u20B_6.glif
+ u20B7
+ u20B_7.glif
+ u20B8
+ u20B_8.glif
+ u20BA
+ u20B_A_.glif
+ u20BB
+ u20B_B_.glif
+ u20BC
+ u20B_C_.glif
+ u20BE
+ u20B_E_.glif
+ u20BF
+ u20B_F_.glif
+ u20C0
+ u20C_0.glif
+ u2120
+ u2120.glif
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/estimated.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/estimated.glif
deleted file mode 100644
index aead89cf4..000000000
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/estimated.glif
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:16
- public.markColor
- 0.85,0.26,0.06,1
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/layerinfo.plist b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/layerinfo.plist
index d8406f427..24b258914 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/layerinfo.plist
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/layerinfo.plist
@@ -3418,27 +3418,27 @@
0
com.schriftgestaltung.layerOrderInGlyph.underscore
0
- com.schriftgestaltung.layerOrderInGlyph.uni04F5
+ com.schriftgestaltung.layerOrderInGlyph.u04F5
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C64
+ com.schriftgestaltung.layerOrderInGlyph.u2C64
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C65
+ com.schriftgestaltung.layerOrderInGlyph.u2C65
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C66
+ com.schriftgestaltung.layerOrderInGlyph.u2C66
0
- com.schriftgestaltung.layerOrderInGlyph.uniA78D
+ com.schriftgestaltung.layerOrderInGlyph.uA78D
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AA
+ com.schriftgestaltung.layerOrderInGlyph.uA7AA
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AD
+ com.schriftgestaltung.layerOrderInGlyph.uA7AD
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AE
+ com.schriftgestaltung.layerOrderInGlyph.uA7AE
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B2
+ com.schriftgestaltung.layerOrderInGlyph.uA7B2
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B3
+ com.schriftgestaltung.layerOrderInGlyph.uA7B3
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B4
+ com.schriftgestaltung.layerOrderInGlyph.uA7B4
0
com.schriftgestaltung.layerOrderInGlyph.uogonek
0
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u04F_5.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u04F_5.glif
new file mode 100644
index 000000000..e66282a04
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u04F_5.glif
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a96beb8d068d1019614dc4e5112e404f4bf4c85b326094b721022ee41bcf5cf932a70de8de092b59423ce1d40e735360a104a8b13f1a3bcc25e2a0bb8c10a52b
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_28.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_28.glif
index bbaeddd06..a546b0274 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_28.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_28.glif
@@ -4,46 +4,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
+
-
+
-
+
-
+
-
+
@@ -54,51 +31,76 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:15
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ d3ba9101bf58d24dbb01acd03c2fdf7c365f0bc6a6f149f7c64412941009c9ec90856f3c4f69c023a767e36c6bf3a78879bf35d89987607eb6d9f9b5d696a221
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_C_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_C_.glif
new file mode 100644
index 000000000..2a9bc1b91
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_C_.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6433ea515a6719fd4061605f4d4517ef5357acd3f3d6b4eab55f06a8b21160002427a8c85418826795b034166a85cb643cfd2d8c2b437c49d76848cfd69ace46
+
+ public.verticalOrigin
+ 882
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_D_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_D_.glif
new file mode 100644
index 000000000..0724efcf9
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_D_.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a84bb0edfb81ed8ea0b760853c866d93817e304cac341a986c28d82bb1d0223ed330fcc30b4127257bc44ce473ea2f50fd28810afedb0bb4ec35f647c6ce5988
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_E_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_E_.glif
new file mode 100644
index 000000000..b2faf161f
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_E_.glif
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 91450931080422e500caa73ad93f0e5269791a9d26e381f1b054df384eff17eb0497cf2ec5e4941b2cbfc0b6649e5ae27cec64dfcb970872b1537226f628a613
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_F_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_F_.glif
new file mode 100644
index 000000000..d702bafaa
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u1E_F_F_.glif
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 55baea0b32af4cebaf870af40b33d790061ae249cfc5da1f89e0aa088e6a85b9efc4946352eb9939795ea6f46878989a86b204d267c4b7f28dd214ab419c7872
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2071.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2071.glif
index ef0c954de..932ff84ca 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2071.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2071.glif
@@ -4,38 +4,73 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:16
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b22ce0ef73684587d2bc1e55c8512c4d4ed7efdcde0eb788b1bc3672ab3e3f0cca60be64297d0e188c6063f0deac8c4edf12e4c8f91c9aefb96528d0f7b8644f
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2097.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2097.glif
index 345251c25..a1a2dc4b5 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2097.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2097.glif
@@ -4,34 +4,57 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:16
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ d5a899944cca9350ad161c28f9fb676d04a026068317bbf118fe1dcd579ad6d94fe91544226c6ce787ef41771cf4e50adf92dcae6b2acdcd7f24e21932ad199c
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2099.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2099.glif
index c6a3b31fb..4a8d68129 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2099.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2099.glif
@@ -4,54 +4,58 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:16
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ c37835480cee7fddd7e5073eb6738022683a02e872035d89bafa6b4e5154ef22bc04311791f77a49b27365a94f8237fdff4a09e00989669d124cdf40e1fb9372
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u209C_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u209C_.glif
index 86ae976ef..c7166fb09 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u209C_.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u209C_.glif
@@ -4,57 +4,63 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:16
- public.markColor
- 0.85,0.26,0.06,1
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 33905b6518f08385f0f5e201b207e36a2ebe05f6f3ffad5e360e8d580296838771f95a66ac34d5f880f52d6564542090e55b679520d1b1146b9d011420be0bd1
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_0.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_0.glif
new file mode 100644
index 000000000..acb1e544c
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_0.glif
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 48d988e16777964a85c1649ac8f196c21d97b2b338e98cf18ca7df680de38ed2180476a7409b372314c59ef096ca7bcd4eff62dd75c2a207f77daba8dbd3cac8
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_1.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_1.glif
new file mode 100644
index 000000000..89cf6c0ae
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_1.glif
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ dd89b2e17ddf40bb0f4843aeb993c98dcd6f6985d40cc38b02d0bc2fe8197fc11e6e7c2869cdc35405e6f03e81270e7f72c688bbcde5b0acd3b4f078bd8c6e7f
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_2.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_2.glif
new file mode 100644
index 000000000..81b4f22a7
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_2.glif
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 32d1fc38ebfd8a1c40f2483dc0b3271a99ce9d64832c56bc53d7710c9c6b7c1a80e46db95f1d9d32dddf3e29f6ea4bca1ccb77a6e358ef0647ee62794b8cf4a6
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_3.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_3.glif
new file mode 100644
index 000000000..480a2a8bb
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_3.glif
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ fbb505b66f33737cb9800b74cc5973bf04096b1848c405aceefc76e5daf297ab1435d5ea917650044e74e47a4526b8f9501400cdc35b4f8774cce76a15b94a65
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_5.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_5.glif
new file mode 100644
index 000000000..7bd71f7ce
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_5.glif
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7da64573171cadf10eadbc946ee1ed527f3d59778043350d1d806fee3f451a8136e6ca38ee5380a298581cfdda31ddb3e9d8722c6d9693b88cae86edef9a768e
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_6.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_6.glif
new file mode 100644
index 000000000..3309d3532
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_6.glif
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 1131925df17cf1f1383a383aae8d9a84416b6eeb2db65b68dae769d4d57c3afe15794dc7d5e1211576445327df4231e02c76eaf0fe5f388dacbe319be2d20f4c
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_7.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_7.glif
new file mode 100644
index 000000000..236569911
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_7.glif
@@ -0,0 +1,146 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6e8c75624dd94efe2d93058d95f7c0bde7c6234398f4a75b4229a43a8669835049be8ecb8172554661b4f657377b68284a7dc22844852be8f5fbe5d78e8ca6f6
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_8.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_8.glif
new file mode 100644
index 000000000..8ccf1a719
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_8.glif
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 82441d33a3c2b0f28781d429f9a2ad8fd9cc4f47ff57b881a2950155f1d4e5b39e5a0828e2c1753ae18c2828c7f79c386258f49b7de379750ed86d74e5b2f24a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_A_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_A_.glif
new file mode 100644
index 000000000..c5615e34d
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_A_.glif
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 863e727d70787bf2134d1ea23a61922dcec8261e394b9209c347ab23cf23f4392c660ca068c8ef5b062a78a72ec7451d9312436179bce9c5a6e2d1ff97f1a9d9
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_B_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_B_.glif
new file mode 100644
index 000000000..88bdce02d
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_B_.glif
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ bf60144bfc2c45f1ce8251221155e04b4293c637ae8764c388d69b967e4a5d7c97f936e1f79dfaed916efe920d82af1fbbee78bef4eccae95853f509ccc90add
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_C_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_C_.glif
new file mode 100644
index 000000000..96f923032
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_C_.glif
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b067ea846b7622065d88d194eb40277ec96ba6c447e9868745cea6e3bd4ece106ab6af2be2a619f5f033d18097dc18bf6e84551268ffb4deb887d81b65cfc3f6
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_E_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_E_.glif
new file mode 100644
index 000000000..5d98a48a4
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_E_.glif
@@ -0,0 +1,121 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 2ae5e79a8eee797c134a3b84573ff8f26e3011de64366cc78de6533fb77643d528f2a4551ccc28d446fbbec88d256059d647bea685160a302eb7c10261a6bfe3
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_F_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_F_.glif
new file mode 100644
index 000000000..791e6b351
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20B_F_.glif
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7a39658898dc543e6a18a547292b7d4def978b8c7ae56dfe926dcce50edd445cbddd6b6097f4f7f47668b069d1dbc88aaed267a93620e303446fa031caa39353
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20C_0.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20C_0.glif
new file mode 100644
index 000000000..be9b8be4a
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u20C_0.glif
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 1e28726691272133e9a8206d1697c7b1c4220da94673635b42e76ce68cc19bf213136f44876c92035d218899e31ca31284d8f28c4937a783838bc63eab3eadc0
+
+ public.verticalOrigin
+ 883
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2120.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2120.glif
new file mode 100644
index 000000000..7ce1f6c77
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2120.glif
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b8030d604d6ae1e93e9227ef08df615bdef3704abdc61f05466938d49b1bf675fab7e85b6dbc624f164b7ba66699a9a111e5be3db198e62d85eeeb6803c9cedc
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2C_64.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2C_64.glif
new file mode 100644
index 000000000..d42c85c24
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2C_64.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 3fc5d8a4e376e2a55ba17fd5bec7b83edf33689594ab35e950bb28ebf891216651efd2cc59868fabc2ee33a309ab32f73ad074e86bafb55ead08c3fa50636982
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2C_65.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2C_65.glif
new file mode 100644
index 000000000..f6a50d45a
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2C_65.glif
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 5e5079a2bde316b3bcda6cb9e3841b57923232ba11d2188514480743e4def7dfedcfaa9a7fa73e8cd6bbee6065b5ca50e738b16a9afb4628508ceb74a287f42d
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2C_66.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2C_66.glif
new file mode 100644
index 000000000..458431a1b
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/u2C_66.glif
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a42807e94ec3432814a617333eedea1d1cff0cdb364cdd0e82d3a1b01d359a5adbce87ff287bb12b8e1e9f9fd98509c9e2cd73d0f1ad56101989e2d2104a8bdc
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_78D_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_78D_.glif
new file mode 100644
index 000000000..60cffe03b
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_78D_.glif
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 0d49f7d836371e862083eefadc264b349c561301a22054a72e589adabdbca1d86467ac6df529f028c6c3caf9cc19139e39371348d8f58bc417815a422022053a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7A_A_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7A_A_.glif
similarity index 58%
rename from sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7A_A_.glif
rename to sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7A_A_.glif
index dfdeca46f..9fabfc0fb 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7A_A_.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7A_A_.glif
@@ -1,13 +1,13 @@
-
+
-
+
-
+
@@ -15,63 +15,69 @@
-
+
-
+
-
+
-
-
+
+
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- H
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:15
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 9172b9e7d6e9e51cb2f2b4342c5a3b22b9d834e2d961253c18e5cce3e76730d4c16262e323031143e50d5db6e0b3866df3ba685bd8c7136bc9ae52fd7b400e38
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7A_D_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7A_D_.glif
similarity index 57%
rename from sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7A_D_.glif
rename to sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7A_D_.glif
index c145d5d7f..dee90debe 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7A_D_.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7A_D_.glif
@@ -1,80 +1,86 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- L
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:15
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ bb448a94f96fab94a194a6240e73593e0b9d52015f7e7db3db79a10f7153e395652de98fd52b28b961d6ea51f94e0037a1028b21c74ef8bdb3b0f8cd8ae128f0
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7A_E_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7A_E_.glif
new file mode 100644
index 000000000..c3c087530
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7A_E_.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 5cd8ec3f82966e73f9ab63b6a19117e2a1eaf9f4803de55fdcabd78808a748206fcd4c1c0226ec7d69931cdd1c9b7e26b894a37084013611cc2f6808dc645604
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7B_2.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7B_2.glif
similarity index 58%
rename from sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7B_2.glif
rename to sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7B_2.glif
index 9a19c500e..51153c750 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7B_2.glif
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7B_2.glif
@@ -1,13 +1,26 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
@@ -17,47 +30,39 @@
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ ca887a2c13b0dc778bfe7c8435e0a67d89ed1916e8d6b166ec039eae72d155867b3893c4579d8af3f27e26d9e7228c468e7566278fed46b733b7126ae9718f84
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7B_3.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7B_3.glif
new file mode 100644
index 000000000..dc0b520fb
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7B_3.glif
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 96589bf16d869c69cb225a18e5a9623e28ffcb842340050d68bbd0b90b193f0461d0e870266cf23913459fccbdb849251c4c5108a8b5749cb88c1ea3707e9fbc
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7B_4.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7B_4.glif
new file mode 100644
index 000000000..e2e0a5767
--- /dev/null
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uA_7B_4.glif
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 3731f44f19ae74b86dae6d7fc6d3a56ef78935aad402eebc9eba649655c4c6d25419ade55f7bfe60cae90dc6a30cedcccce02d7bffff5178846ce707ea4cd8c3
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni04F_5.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni04F_5.glif
deleted file mode 100644
index 3b4e88e3d..000000000
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni04F_5.glif
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:33:03
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni2C_64.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni2C_64.glif
deleted file mode 100644
index 2500b15be..000000000
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni2C_64.glif
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- R
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- R
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:15
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni2C_65.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni2C_65.glif
deleted file mode 100644
index 2c099e50f..000000000
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni2C_65.glif
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- a
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- a
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:16
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni2C_66.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni2C_66.glif
deleted file mode 100644
index c1e74bf9c..000000000
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uni2C_66.glif
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- t
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- t
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:16
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_78D_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_78D_.glif
deleted file mode 100644
index b38d6e908..000000000
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_78D_.glif
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- =u04BA
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- =u04BA
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:15
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7A_E_.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7A_E_.glif
deleted file mode 100644
index d603d4c2d..000000000
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7A_E_.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:33:03
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7B_3.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7B_3.glif
deleted file mode 100644
index 20dee75be..000000000
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7B_3.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:33:03
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7B_4.glif b/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7B_4.glif
deleted file mode 100644
index aab20957c..000000000
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7B_4.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 21:33:03
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/lib.plist b/sources/LXGWWenKaiMonoTC-Regular.ufo/lib.plist
index 310c18b4a..eb035f8ef 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/lib.plist
+++ b/sources/LXGWWenKaiMonoTC-Regular.ufo/lib.plist
@@ -418,13 +418,13 @@
u1EF6
u1EF8
u1EFA
- uni2C64
- uniA78D
- uniA7AA
- uniA7AD
- uniA7B2
- uniA7B3
- uniA7B4
+ u2C64
+ uA78D
+ uA7AA
+ uA7AD
+ uA7B2
+ uA7B3
+ uA7B4
a
aacute
abreve
@@ -878,8 +878,8 @@
uhorn
uhungarumlaut
umacron
- uni2C65
- uni2C66
+ u2C65
+ u2C66
uogonek
uring
utilde
@@ -1080,7 +1080,7 @@
u04EF
u04F1
u04F3
- uni04F5
+ u04F5
u04FF
Alpha
Beta
@@ -1786,7 +1786,7 @@
uA4FD
uA4FE
uA4FF
- uniA7AE
+ uA7AE
uA7AF
u11FB0
PureWriter
@@ -1843,5 +1843,30 @@
theta1
uni03D1
+ public.unicodeVariationSequences
+
+ FE00
+
+ 2018
+ quoteleft
+ 2019
+ quoteright
+ 201C
+ quotedblleft
+ 201D
+ quotedblright
+
+ FE01
+
+ 2018
+ quoteleft.full
+ 2019
+ quoteright.full
+ 201C
+ quotedblleft.full
+ 201D
+ quotedblright.full
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/fontinfo.plist b/sources/LXGWWenKaiTC-Bold.ufo/fontinfo.plist
deleted file mode 100644
index 6f08bb9ea..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/fontinfo.plist
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
-
- ascender
- 880
- capHeight
- 695
- copyright
- Copyright 2024 The LXGW WenKai Project Authors (https://github.com/lxgw/LxgwWenkaiTC)
- descender
- -120
- familyName
- LXGW WenKai TC
- italicAngle
- 0
- openTypeHeadCreated
- 2020/12/15 00:00:00
- openTypeHheaAscender
- 1032
- openTypeHheaDescender
- -285
- openTypeHheaLineGap
- 0
- openTypeNameDesigner
- LXGW / Fontworks Inc.
- openTypeNameDesignerURL
- https://github.com/lxgw
- openTypeNameLicense
- This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
- openTypeNameLicenseURL
- https://scripts.sil.org/OFL
- openTypeNameManufacturer
- LXGW / Fontworks Inc.
- openTypeNameManufacturerURL
- https://github.com/lxgw
- openTypeNameRecords
-
-
- encodingID
- 1
- languageID
- 1028
- nameID
- 1
- platformID
- 3
- string
- 霞鶩文楷 TC
-
-
- encodingID
- 1
- languageID
- 2052
- nameID
- 1
- platformID
- 3
- string
- 霞鹜文楷 TC
-
-
- encodingID
- 1
- languageID
- 3076
- nameID
- 1
- platformID
- 3
- string
- 霞鶩文楷 TC
-
-
- encodingID
- 1
- languageID
- 5124
- nameID
- 1
- platformID
- 3
- string
- 霞鶩文楷 TC
-
-
- openTypeNameSampleText
- 爽籟發而清風生,纖歌凝而白雲遏。
- openTypeNameVersion
- Version 1.330;April 28, 2024
- openTypeOS2StrikeoutPosition
- 300
- openTypeOS2StrikeoutSize
- 50
- openTypeOS2SubscriptXOffset
- 0
- openTypeOS2SubscriptXSize
- 650
- openTypeOS2SubscriptYOffset
- 75
- openTypeOS2SubscriptYSize
- 600
- openTypeOS2SuperscriptXOffset
- 0
- openTypeOS2SuperscriptXSize
- 650
- openTypeOS2SuperscriptYOffset
- 350
- openTypeOS2SuperscriptYSize
- 600
- openTypeOS2Type
-
- openTypeOS2TypoAscender
- 880
- openTypeOS2TypoDescender
- -120
- openTypeOS2TypoLineGap
- 0
- openTypeOS2VendorID
- LXGW
- openTypeOS2WinAscent
- 1032
- openTypeOS2WinDescent
- 285
- openTypeVheaVertTypoAscender
- 500
- openTypeVheaVertTypoDescender
- -500
- openTypeVheaVertTypoLineGap
- 1000
- postscriptUnderlinePosition
- -200
- postscriptUnderlineThickness
- 50
- styleName
- Bold
- unitsPerEm
- 1000
- versionMajor
- 1
- versionMinor
- 330
- xHeight
- 468
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/contents.plist b/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/contents.plist
deleted file mode 100644
index 5ddcb4629..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/contents.plist
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- uni2C65
- uni2C_65.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7B2
- uniA_7B_2.glif
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/estimated.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/estimated.glif
deleted file mode 100644
index 0b51e16e5..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/estimated.glif
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2071.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2071.glif
deleted file mode 100644
index f3a7d76f3..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2071.glif
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207F_.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207F_.glif
deleted file mode 100644
index 0ec0425cc..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207F_.glif
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2090.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2090.glif
deleted file mode 100644
index 5f5231c2d..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2090.glif
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2091.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2091.glif
deleted file mode 100644
index 63309a859..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2091.glif
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2092.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2092.glif
deleted file mode 100644
index 85f8998ed..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2092.glif
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2093.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2093.glif
deleted file mode 100644
index f6c4487c9..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2093.glif
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2094.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2094.glif
deleted file mode 100644
index eca80e436..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2094.glif
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2095.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2095.glif
deleted file mode 100644
index 3ebea635b..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2095.glif
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2096.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2096.glif
deleted file mode 100644
index 95ff5c0ef..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2096.glif
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2097.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2097.glif
deleted file mode 100644
index 1b096c10f..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2097.glif
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2098.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2098.glif
deleted file mode 100644
index 0b2ad9314..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2098.glif
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2099.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2099.glif
deleted file mode 100644
index 147623e51..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2099.glif
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u209A_.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u209A_.glif
deleted file mode 100644
index 72cb83036..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u209A_.glif
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u209B_.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u209B_.glif
deleted file mode 100644
index 503e04029..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u209B_.glif
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u209C_.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u209C_.glif
deleted file mode 100644
index 176d8893f..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u209C_.glif
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_02.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_02.glif
deleted file mode 100644
index 245e84642..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_02.glif
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_04.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_04.glif
deleted file mode 100644
index 200a96a1e..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_04.glif
+++ /dev/null
@@ -1,114 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni04F_5.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni04F_5.glif
deleted file mode 100644
index 0a9ce8cba..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni04F_5.glif
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:18
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni2C_64.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni2C_64.glif
deleted file mode 100644
index a2b789e51..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni2C_64.glif
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- R
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- R
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni2C_65.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni2C_65.glif
deleted file mode 100644
index 535bc071a..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni2C_65.glif
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- a
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- a
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni2C_66.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni2C_66.glif
deleted file mode 100644
index ca9e89600..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uni2C_66.glif
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- t
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- t
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_78D_.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_78D_.glif
deleted file mode 100644
index f299d951a..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_78D_.glif
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u04BA
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u04BA
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7A_A_.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7A_A_.glif
deleted file mode 100644
index 425f849ba..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7A_A_.glif
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- H
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7A_D_.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7A_D_.glif
deleted file mode 100644
index aa99caee3..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7A_D_.glif
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- L
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7A_E_.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7A_E_.glif
deleted file mode 100644
index 2f9fb9288..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7A_E_.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:19
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7B_2.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7B_2.glif
deleted file mode 100644
index de9626863..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7B_2.glif
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:09
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7B_3.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7B_3.glif
deleted file mode 100644
index a9acae020..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7B_3.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:18
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7B_4.glif b/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7B_4.glif
deleted file mode 100644
index 844b889f2..000000000
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uniA_7B_4.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:18
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/fontinfo.plist b/sources/LXGWWenKaiTC-Light.ufo/fontinfo.plist
index c33f15755..d261d7862 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/fontinfo.plist
+++ b/sources/LXGWWenKaiTC-Light.ufo/fontinfo.plist
@@ -7,7 +7,8 @@
capHeight
695
copyright
- Copyright 2024 The LXGW WenKai Project Authors (https://github.com/lxgw/LxgwWenkaiTC)
+ Copyright 2022-2024 LXGW (https://github.com/lxgw/LxgwWenkaiTC)
+Copyright 2020 The Klee Project Authors (https://github.com/fontworks-fonts/Klee)
descender
-120
familyName
@@ -17,9 +18,9 @@
openTypeHeadCreated
2020/12/15 00:00:00
openTypeHheaAscender
- 1032
+ 928
openTypeHheaDescender
- -285
+ -256
openTypeHheaLineGap
0
openTypeNameDesigner
@@ -34,6 +35,10 @@
LXGW / Fontworks Inc.
openTypeNameManufacturerURL
https://github.com/lxgw
+ openTypeNamePreferredFamilyName
+ LXGW WenKai TC
+ openTypeNamePreferredSubfamilyName
+ Light
openTypeNameRecords
@@ -84,6 +89,54 @@
string
霞鶩文楷 TC Light
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
encodingID
1
@@ -132,9 +185,135 @@
string
霞鶩文楷 TC
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Light
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Light
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Light
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Light
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 爽籟發而清風生,纖歌凝而白雲遏。
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 爽籟發而清風生,纖歌凝而白雲遏。
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 爽籟發而清風生,纖歌凝而白雲遏。
+
+
+ openTypeNameUniqueID
+ LXGW WenKai TC Light:Version 1.330
+ openTypeNameVersion
+ Version 1.330;April 28, 2024
+ openTypeOS2CodePageRanges
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 7
+ 8
+ 18
+ 20
+ 29
+ 30
+ 48
+ 49
+ 50
+ 52
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 62
+ 63
+
+ openTypeOS2Panose
+
+ 2
+ 2
+ 4
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
- openTypeNameSampleText
- 爽籟發而清風生,纖歌凝而白雲遏。
openTypeOS2StrikeoutPosition
300
openTypeOS2StrikeoutSize
@@ -165,6 +344,10 @@
0
openTypeOS2VendorID
LXGW
+ openTypeOS2WeightClass
+ 300
+ openTypeOS2WidthClass
+ 5
openTypeOS2WinAscent
1032
openTypeOS2WinDescent
@@ -174,11 +357,15 @@
openTypeVheaVertTypoDescender
-500
openTypeVheaVertTypoLineGap
- 1000
+ 0
postscriptUnderlinePosition
- -200
+ -175
postscriptUnderlineThickness
50
+ styleMapFamilyName
+ LXGW WenKai TC Light
+ styleMapStyleName
+ regular
styleName
Light
unitsPerEm
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/contents.plist b/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/contents.plist
index ee5a748fd..fab1d63a7 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/contents.plist
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/contents.plist
@@ -2,11 +2,11 @@
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7B2
- uniA_7B_2.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7B2
+ uA_7B_2.glif
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uniA_7A_A_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uA_7A_A_.glif
similarity index 98%
rename from sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uniA_7A_A_.glif
rename to sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uA_7A_A_.glif
index 6cf4449cd..fbc9f52ec 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uniA_7A_A_.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uA_7A_A_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uniA_7A_D_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uA_7A_D_.glif
similarity index 97%
rename from sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uniA_7A_D_.glif
rename to sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uA_7A_D_.glif
index 091a7b12d..f1ac3bf55 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uniA_7A_D_.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uA_7A_D_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uniA_7B_2.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uA_7B_2.glif
similarity index 97%
rename from sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uniA_7B_2.glif
rename to sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uA_7B_2.glif
index e32617837..4f85ee6cd 100644
--- a/sources/LXGWWenKaiMonoTC-Light.ufo/glyphs.public.background/uniA_7B_2.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs.public.background/uA_7B_2.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/contents.plist b/sources/LXGWWenKaiTC-Light.ufo/glyphs/contents.plist
index 5463e5432..ad71b4656 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/contents.plist
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/contents.plist
@@ -476,8 +476,6 @@
epsilontonos.glif
equal
equal.glif
- estimated
- estimated.glif
eta
eta.glif
etatonos
@@ -3374,28 +3372,28 @@
umacron.glif
underscore
underscore.glif
- uni04F5
- uni04F_5.glif
- uni2C64
- uni2C_64.glif
- uni2C65
- uni2C_65.glif
- uni2C66
- uni2C_66.glif
- uniA78D
- uniA_78D_.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7AE
- uniA_7A_E_.glif
- uniA7B2
- uniA_7B_2.glif
- uniA7B3
- uniA_7B_3.glif
- uniA7B4
- uniA_7B_4.glif
+ u04F5
+ u04F_5.glif
+ u2C64
+ u2C_64.glif
+ u2C65
+ u2C_65.glif
+ u2C66
+ u2C_66.glif
+ uA78D
+ uA_78D_.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7AE
+ uA_7A_E_.glif
+ uA7B2
+ uA_7B_2.glif
+ uA7B3
+ uA_7B_3.glif
+ uA7B4
+ uA_7B_4.glif
uogonek
uogonek.glif
upsilon
@@ -3450,5 +3448,43 @@
zero.glif
zeta
zeta.glif
+ u1EFC
+ u1E_F_C_.glif
+ u1EFD
+ u1E_F_D_.glif
+ u1EFE
+ u1E_F_E_.glif
+ u1EFF
+ u1E_F_F_.glif
+ u20B0
+ u20B_0.glif
+ u20B1
+ u20B_1.glif
+ u20B2
+ u20B_2.glif
+ u20B3
+ u20B_3.glif
+ u20B5
+ u20B_5.glif
+ u20B6
+ u20B_6.glif
+ u20B7
+ u20B_7.glif
+ u20B8
+ u20B_8.glif
+ u20BA
+ u20B_A_.glif
+ u20BB
+ u20B_B_.glif
+ u20BC
+ u20B_C_.glif
+ u20BE
+ u20B_E_.glif
+ u20BF
+ u20B_F_.glif
+ u20C0
+ u20C_0.glif
+ u2120
+ u2120.glif
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/estimated.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/estimated.glif
deleted file mode 100644
index b7bb368e6..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/estimated.glif
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/layerinfo.plist b/sources/LXGWWenKaiTC-Light.ufo/glyphs/layerinfo.plist
index 2f73a7688..bedc0d32a 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/layerinfo.plist
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/layerinfo.plist
@@ -3378,27 +3378,27 @@
0
com.schriftgestaltung.layerOrderInGlyph.underscore
0
- com.schriftgestaltung.layerOrderInGlyph.uni04F5
+ com.schriftgestaltung.layerOrderInGlyph.u04F5
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C64
+ com.schriftgestaltung.layerOrderInGlyph.u2C64
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C65
+ com.schriftgestaltung.layerOrderInGlyph.u2C65
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C66
+ com.schriftgestaltung.layerOrderInGlyph.u2C66
0
- com.schriftgestaltung.layerOrderInGlyph.uniA78D
+ com.schriftgestaltung.layerOrderInGlyph.uA78D
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AA
+ com.schriftgestaltung.layerOrderInGlyph.uA7AA
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AD
+ com.schriftgestaltung.layerOrderInGlyph.uA7AD
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AE
+ com.schriftgestaltung.layerOrderInGlyph.uA7AE
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B2
+ com.schriftgestaltung.layerOrderInGlyph.uA7B2
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B3
+ com.schriftgestaltung.layerOrderInGlyph.uA7B3
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B4
+ com.schriftgestaltung.layerOrderInGlyph.uA7B4
0
com.schriftgestaltung.layerOrderInGlyph.uogonek
0
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u04F_5.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u04F_5.glif
new file mode 100644
index 000000000..a78b3712b
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u04F_5.glif
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ c8f9227ec0d45500821b765a0de02ea1253cc36f78ab6b248890a2b3b4da5a037048da93d2053ac535c4dd378e65d805e1108e60dbd5cba4dfbbe563ccd8306f
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_C_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_C_.glif
new file mode 100644
index 000000000..3f482f98a
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_C_.glif
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 745dd1b843bf2e6b8f24670ce3798484ea59b207c9b47d012973ef4e07207c7b45a0216d4c8ca52570d063f23d61de291a372cd75a21c1924bd0cf5c3221d07e
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_D_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_D_.glif
new file mode 100644
index 000000000..be291bed9
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_D_.glif
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b937aa421d5b5cc6b9fb41ddb5f9868bcc04d7382cfa2be0d82528606e8de96e0c26d7e614debda1082bada336ed323aaba4eaa40ad04ed891ff30caaa71aa03
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_E_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_E_.glif
new file mode 100644
index 000000000..f13a95813
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_E_.glif
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 846b3639d825c6136bd6449dae3e24d19f433837a4350058c4492776a44ccc8c99cbf0dca8a8d5a496ff6568666be0cba1220d11461b9ad66b3064ff0925ed9e
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_F_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_F_.glif
new file mode 100644
index 000000000..4e0a99d93
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u1E_F_F_.glif
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 83099dc950843908787e08f9d88f5e754ec525ac153e105e60040aac338f0c56577a0d28862ef2fd2c036c7e89e0e78021194c30f418f6e0293145509ab716d7
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2071.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2071.glif
index f7139c8e8..0a0e92711 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2071.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2071.glif
@@ -1,48 +1,57 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 60b65f701e5a0673a71639708cf9167ad9ee7d202d7c2b196558cbc099c1e814f710b72768d4ff10cd1d780a2ea0451fcfba681d4570a969e849869d62842cfa
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u207F_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u207F_.glif
index d003c31d2..33baddb23 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u207F_.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u207F_.glif
@@ -1,67 +1,75 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 75f2c0a48be93829b283f9581fe7dd4e705272639bd43b57b04a845b0c7e35825d0375b5c43c8ed972620c51af1096c0d2e2b7b78ecb7fdd1a28f9d43d06acb9
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2090.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2090.glif
index bb81b1238..b90d3221c 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2090.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2090.glif
@@ -1,84 +1,99 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 8b714d5b0f7b94341cf12f9ae5ebcc7eaf629bfc3bd169e81eaa55fdac879e61731e8d34be54945e61de15364306490e1e988acb76193409523d96991af29d1d
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2091.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2091.glif
index 3a3647c3d..0fe488a6a 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2091.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2091.glif
@@ -1,90 +1,84 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b6ba95199b82fe4b3313731914aa452ee89137980f8540aaac8b62ddcf8df13ce25c8d0ac1a99ae86d9b30c618de5f727100f389c5536928c3a6012ae4a2c090
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2092.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2092.glif
index 8470ad437..fcd95c62d 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2092.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2092.glif
@@ -1,54 +1,56 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ ab07f1d4ec1c5266528ff550ecd6c3bd28921efc1500ca9b3b12709a2cb4bb6a7abf895f4bc8c9e654b705aaca2a7f106354191849d009253f5c68d16c90452e
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2093.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2093.glif
index 2fbd09e4e..74aab58b2 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2093.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2093.glif
@@ -1,92 +1,81 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7747256121cae0c10b77401c81a9701f6616664d5b41433f119ac6ec222b92025baa805fa6621ed241b5d6f0a60742b4e8f079bba9f9b5ff2d92dfe8bf987669
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2094.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2094.glif
index 0e88384fd..74c7b2b4d 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2094.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2094.glif
@@ -1,85 +1,82 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 5d8507cd6292c3631a89d4c15ac73055d385b435377bf89b124558c34edb4936ed0e18c111e10e0e2e5f5b60b2eab60b22a958c1ddc56185c791c2999f00c840
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2095.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2095.glif
index f54350a40..e495c3c9d 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2095.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2095.glif
@@ -1,64 +1,80 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 1e56b7a538c25fc53871da12aa7a32789c7b0ad880cc9e4fa8c46c3116494dfc8d60a7ae314710aad755aa70bc09a4b3d4265262ca0a06ba86f1184fb1d7603f
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2096.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2096.glif
index 14c58317c..b2471fb90 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2096.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2096.glif
@@ -1,81 +1,74 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 191decda3587a4077896b1c41a3dd25e6c3eccc9ef6f6f14982494fc2d2e4bc393aad68733eb561b712f3029536857826390e26b0867462e831700738272b23f
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2097.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2097.glif
index cc91f01cb..1a3ad0154 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2097.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2097.glif
@@ -1,43 +1,45 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 2f176813e5ef11a784de7af3495574b9ab867699ecf870eb116d28f984921b4e6aede7eaecb550e0c18730de6f5085d9d9acbec1271afd6cbac8c0471a8fd918
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2098.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2098.glif
index 5df5170ab..3db4ca8d4 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2098.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2098.glif
@@ -1,91 +1,97 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 876520575fc1cac945bffb5fc4e2344726de05bf6274df30a75ab76afa17d5454a2063ba43a487186969f87dd88243574ac5255e9db711f65779e39e7df33e50
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2099.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2099.glif
index b9be74fb1..9beeba99c 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2099.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2099.glif
@@ -1,67 +1,66 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 945bde9dbeb2d6f3b07f88ced178c67500f7c54cd45d30e647a0e80fc7fb2d7045e276481318b398529e3707f88e91d89f8cf64605580513881f7010aab79143
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209A_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209A_.glif
index 7e50ccfcd..6f3ffa481 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209A_.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209A_.glif
@@ -1,78 +1,87 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7ee0720d33ab4762474f9b5e6890b16871405b4459e7e2f9c83ff4b70c9db8699f3ee50d0022f6d9d4b2462766db6ad7d7ab09fc105fd7eff9d822ae676a1a2a
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209B_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209B_.glif
index 2af2f810b..b0b41ea2e 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209B_.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209B_.glif
@@ -1,79 +1,79 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ fbdedc164a0db155c2eda4d7cd0cc2216ee95d8c92e85462a01a0e737841c376a9194d7b0de3961dd953d673bdd278947eea738ca91ff2cb0e5dd3a2f1beff05
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209C_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209C_.glif
index fc12de8a7..82479cfa0 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209C_.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u209C_.glif
@@ -1,82 +1,75 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 2336597bcc741fef2533b77eb17719cf06c7464501a6b78945a29b0382091abe0857ebb0dbb64306ac2b6fd348f04f1aeafca70e664320353a0c284cee208eb8
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_0.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_0.glif
new file mode 100644
index 000000000..9390efa5c
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_0.glif
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ fbf7cc8b8559b971e1fadbc8d034e9cffcf86cdd3a13df0791ebcec3e72cae422ca92b293c836e5184276c0472397e99220453276dcec657b2158263bf1ed975
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_1.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_1.glif
new file mode 100644
index 000000000..cf6debffc
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_1.glif
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 97691850fde7f55044f60d8fc1cc53bf88d89789aa0243274af46223e83b973d27c72a33b44fba51a7ff4ca8b73c8cfbf47b7efb94d6d245b64de022991b5785
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_2.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_2.glif
new file mode 100644
index 000000000..99bacd57f
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_2.glif
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7c0db1ee5925e169911ac4d010f237c23629c6b4a41e5f3f396483aa4fa91f707d0789ff945b1cf3c1bb3811f4ce6274dc627b1f2fd8a6a621e2529ccede4da8
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_3.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_3.glif
new file mode 100644
index 000000000..b9f856e59
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_3.glif
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 9ad9e472f6184e634a3957ebfc676f83859c93c74e3ea074cc7d1e304be124e997d492852dfa2b2ce7d8caf0b73a6e4820978952fa92b129126f4a834355c3d8
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_5.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_5.glif
new file mode 100644
index 000000000..9108fefbc
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_5.glif
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a351270924cc6ddbb0845ab0f6d98b094a1b3fbe91c2096afea51287852e0160f71fe4f4abc579ebf2824a27b035116065638b93dc63cd4b18dc94acd4bd1370
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_6.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_6.glif
new file mode 100644
index 000000000..faffc7f5b
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_6.glif
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 5721b20b09ea9f24e7e1a9dc67c1e76fb77d847c391873572777df5443553ce436b6b7fc3c0d7cfe511773d766415d05f2f5487c0f61077b0cb047d4d5326352
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_7.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_7.glif
new file mode 100644
index 000000000..a7b15afa5
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_7.glif
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b793303ffcdc5e9ddf49455ce4469ec7016e7129d0b8a1468a38a7605971f8bb4a135459ebe208bf064eabff801fc3c8553eff25efbd6283af4f956d141d684b
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_8.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_8.glif
new file mode 100644
index 000000000..98276adb3
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_8.glif
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6bf0859c0336d534460947e91a19b897b0f66c3fa4c66269df1ead9826360acc58fcebc3231f01d470d65e4e73e322b1208e70bc6a1e04586dd8419f201d196d
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_A_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_A_.glif
new file mode 100644
index 000000000..ae9adf27f
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_A_.glif
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 1dd14dde69412e8999c66a22671a460fe52e9df59e97cff2660f51ba2d7fa7c9f011db13187035cf67d55beceb8b921d44b4318989cb0c8c09cff24236cf22ac
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_B_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_B_.glif
new file mode 100644
index 000000000..d1f97338c
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_B_.glif
@@ -0,0 +1,179 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 5b75141543a58fecd617be79aeb826bf04334dd351df875e88d87ea16732535384811d151d72ee8b6775a2ca484a64301e77bde03a2b99accf8ea4936b8ab718
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_C_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_C_.glif
new file mode 100644
index 000000000..ce215f407
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_C_.glif
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 26f8d72019e20acdfbff4915911da695bfb6c11cf721b312e5bedc62f5ac080a0b4ebf693ce506c804ee93fa2e7631d9ea1d5efa7bf4be7a0abf4477f75bab9b
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_E_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_E_.glif
new file mode 100644
index 000000000..1ea02b3ab
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_E_.glif
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 59903da96244d19a178b1966c6de40421e5d506af0f6574fb08e9c1057bc62e4457243edcfb516cf0441324f0512bff1720c734cad277e0b9ba0f094de79afc3
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_F_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_F_.glif
new file mode 100644
index 000000000..ca1bf8a9d
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20B_F_.glif
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7bfba1eeea43d94a4086484ba5a97f80b72669ee6cfbc23599f631a8f0407326d50ca1c48d42cd10def09c5f3018861c246d83f2e0438a6d8a64985502e0e549
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20C_0.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20C_0.glif
new file mode 100644
index 000000000..e52c708e5
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u20C_0.glif
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 48332419cd813b7a17552bda6b3de2517740f0803c568efcee348fc970c695b1550bca45783c80ab82f25355b88a7efc6ef9c11b6ce71cc1d8a94519a51dfba7
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2120.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2120.glif
new file mode 100644
index 000000000..aee8328ff
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2120.glif
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ fb7187dabfd7a57e6d1e41b92646ccd38956c503ec91149d5135d348e62e3468894a326dc06cd4112eecc0b2498c100a54463253b7bc04ec4bcbe5a19522f181
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2C_64.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2C_64.glif
new file mode 100644
index 000000000..20d6f45b8
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2C_64.glif
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a976ab69ea968416be7fb533b82ac3a6e3fcfe2e1232c8e400cea22a2d1255f070dd9614c8958659c78e0860250070c1a7652fa7f2de903ae297a3336825aea1
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2C_65.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2C_65.glif
new file mode 100644
index 000000000..0e0ef94ae
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2C_65.glif
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e12e5709f0103e2ef2d537ef6922a2736534851a627ea3890bc8d325d4a58427ebff090cc19737042d69b0ebfe0ab401f46661d75f97194394dc3c9a54faba79
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2C_66.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2C_66.glif
new file mode 100644
index 000000000..1baca3912
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/u2C_66.glif
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ dc246c6d9b29172b94141084a552eae9982ccb16c39c911dbbc4bae785f33631c40632020cff14def91e90a4182a3f9d0acc591b2b48540c63e9123dd614ea4b
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_78D_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_78D_.glif
new file mode 100644
index 000000000..b529a2264
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_78D_.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 755d104b5e23623b32445535e532d09c1f29a597de91fc08ecccea1319c53f2840c8ed782b35b2832fc8a62aef34964f58a6a88143b8e457a4cdc25fe97ffc03
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7A_A_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7A_A_.glif
new file mode 100644
index 000000000..bf3131577
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7A_A_.glif
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6170f25753046e4ab0dae3d2684a403f84fdd8b02340bc5804dbe5a28667a8f7b8b0c82d8ec6696485ab6289155ed3d5c74bb98b5b2e1efa8da33a9ac1e153ad
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7A_D_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7A_D_.glif
new file mode 100644
index 000000000..711ccd5a6
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7A_D_.glif
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 06c9916172611a1a028be1b82f11e48572503e3ce6b39de77675690cbc15446da3252cf7651a169ddd9bdb625f69f305b337090b6f14b9ac960269ac0372ecc2
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7A_E_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7A_E_.glif
new file mode 100644
index 000000000..c311298dd
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7A_E_.glif
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 31cf0bf6a2b0a2d45a7c5c4e340f79ff8c51dbefa0158ec94462afcc83465cd9eedac6220bceea89b9c2f8fd27553f18cf92a02d034e4d9a26667e7395ed7f5d
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7B_2.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7B_2.glif
new file mode 100644
index 000000000..3e278d401
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7B_2.glif
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b0d6fdc4bf4784095a1db0cf5c2739340dd14ed69f3a7c3d4535b719731fb67878dd958f3b4dbddca2f9e07437861a1401bf93ce1e67435cb9ff8085cd5df177
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7B_3.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7B_3.glif
new file mode 100644
index 000000000..d922ede1c
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7B_3.glif
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 19c8e8e6dacd6df1c5e687b043a71ffda4a7851d1d870fa59359bc5853396049bb7b81381f9f06e931b5bc0b3a253f56d3fd8c032a78fae5a5e4350b663337cf
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7B_4.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7B_4.glif
new file mode 100644
index 000000000..c91cd0087
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uA_7B_4.glif
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 42b234cae55f725fe5e32e82c3fa74e382773cf9a9e9350a5a67edc5faa3bd75a284a8381a380ce526ff8142b2923a42e6705048646268c783397f06ba898b0a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uF_B_02.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uF_B_02.glif
index a70172ef5..4dd573819 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uF_B_02.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uF_B_02.glif
@@ -4,30 +4,30 @@
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
@@ -36,45 +36,66 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 93ce563fdcd47339802994bfd46dfa492232effe64e6ecee8cf6091102035da38d9c7c367e8a76a3e9088e658a356848a1f7c95aa40ef8d1b498b6901dd3ea0f
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uF_B_04.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uF_B_04.glif
index ed5ee6359..f36365613 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uF_B_04.glif
+++ b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uF_B_04.glif
@@ -4,30 +4,30 @@
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
@@ -36,15 +36,15 @@
-
+
-
+
-
+
-
+
@@ -53,54 +53,75 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 908b409d2ceedaf3c3a8188583b40c7fcd2a5653152c7aad0e25681322088ea2c9f9b5be43dce9d8a4fd0085f8af76205a0cc08ef9232df450bbe85aa68f0932
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni04F_5.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni04F_5.glif
deleted file mode 100644
index 36b7d68dc..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni04F_5.glif
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:14
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni2C_64.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni2C_64.glif
deleted file mode 100644
index 0bc04f704..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni2C_64.glif
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- R
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- R
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni2C_65.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni2C_65.glif
deleted file mode 100644
index fc64e2019..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni2C_65.glif
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- a
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- a
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni2C_66.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni2C_66.glif
deleted file mode 100644
index 05a3b61fa..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uni2C_66.glif
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- t
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- t
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_78D_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_78D_.glif
deleted file mode 100644
index 99297fec7..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_78D_.glif
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u04BA
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u04BA
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7A_A_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7A_A_.glif
deleted file mode 100644
index 9c1558b2c..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7A_A_.glif
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- H
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7A_D_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7A_D_.glif
deleted file mode 100644
index 8c6cc763d..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7A_D_.glif
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- L
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7A_E_.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7A_E_.glif
deleted file mode 100644
index 052aacc7f..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7A_E_.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:13
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7B_2.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7B_2.glif
deleted file mode 100644
index 8c8ce49fe..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7B_2.glif
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:03
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7B_3.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7B_3.glif
deleted file mode 100644
index 0990afcf7..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7B_3.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:13
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7B_4.glif b/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7B_4.glif
deleted file mode 100644
index aced5a34a..000000000
--- a/sources/LXGWWenKaiTC-Light.ufo/glyphs/uniA_7B_4.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:13
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Light.ufo/lib.plist b/sources/LXGWWenKaiTC-Light.ufo/lib.plist
index 8ce8f3cc7..b8347396f 100644
--- a/sources/LXGWWenKaiTC-Light.ufo/lib.plist
+++ b/sources/LXGWWenKaiTC-Light.ufo/lib.plist
@@ -418,13 +418,13 @@
u1EF6
u1EF8
u1EFA
- uni2C64
- uniA78D
- uniA7AA
- uniA7AD
- uniA7B2
- uniA7B3
- uniA7B4
+ u2C64
+ uA78D
+ uA7AA
+ uA7AD
+ uA7B2
+ uA7B3
+ uA7B4
a
aacute
abreve
@@ -878,8 +878,8 @@
uhorn
uhungarumlaut
umacron
- uni2C65
- uni2C66
+ u2C65
+ u2C66
uogonek
uring
utilde
@@ -1080,7 +1080,7 @@
u04EF
u04F1
u04F3
- uni04F5
+ u04F5
u04FF
Alpha
Beta
@@ -1786,7 +1786,7 @@
uA4FD
uA4FE
uA4FF
- uniA7AE
+ uA7AE
uA7AF
u11FB0
PureWriter
@@ -1823,5 +1823,30 @@
theta1
uni03D1
+ public.unicodeVariationSequences
+
+ FE00
+
+ 2018
+ quoteleft
+ 2019
+ quoteright
+ 201C
+ quotedblleft
+ 201D
+ quotedblright
+
+ FE01
+
+ 2018
+ quoteleft.full
+ 2019
+ quoteright.full
+ 201C
+ quotedblleft.full
+ 201D
+ quotedblright.full
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/features.fea b/sources/LXGWWenKaiTC-Medium.ufo/features.fea
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/features.fea
rename to sources/LXGWWenKaiTC-Medium.ufo/features.fea
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/fontinfo.plist b/sources/LXGWWenKaiTC-Medium.ufo/fontinfo.plist
new file mode 100644
index 000000000..51df816d7
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/fontinfo.plist
@@ -0,0 +1,380 @@
+
+
+
+
+ ascender
+ 880
+ capHeight
+ 695
+ copyright
+ Copyright 2022-2024 LXGW (https://github.com/lxgw/LxgwWenkaiTC)
+Copyright 2020 The Klee Project Authors (https://github.com/fontworks-fonts/Klee)
+ descender
+ -120
+ familyName
+ LXGW WenKai TC
+ italicAngle
+ 0
+ openTypeHeadCreated
+ 2020/12/15 00:00:00
+ openTypeHheaAscender
+ 928
+ openTypeHheaDescender
+ -256
+ openTypeHheaLineGap
+ 0
+ openTypeNameDesigner
+ LXGW / Fontworks Inc.
+ openTypeNameDesignerURL
+ https://github.com/lxgw
+ openTypeNameLicense
+ This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
+ openTypeNameLicenseURL
+ https://scripts.sil.org/OFL
+ openTypeNameManufacturer
+ LXGW / Fontworks Inc.
+ openTypeNameManufacturerURL
+ https://github.com/lxgw
+ openTypeNamePreferredFamilyName
+ LXGW WenKai TC
+ openTypeNamePreferredSubfamilyName
+ Medium
+ openTypeNameRecords
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 1
+ platformID
+ 3
+ string
+ 霞鶩文楷 TC Medium
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 1
+ platformID
+ 3
+ string
+ 霞鹜文楷 TC Medium
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 1
+ platformID
+ 3
+ string
+ 霞鶩文楷 TC Medium
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 1
+ platformID
+ 3
+ string
+ 霞鶩文楷 TC Medium
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 16
+ platformID
+ 3
+ string
+ 霞鶩文楷 TC
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 16
+ platformID
+ 3
+ string
+ 霞鹜文楷 TC
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 16
+ platformID
+ 3
+ string
+ 霞鶩文楷 TC
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 16
+ platformID
+ 3
+ string
+ 霞鶩文楷 TC
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Medium
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Medium
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Medium
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 17
+ platformID
+ 3
+ string
+ Medium
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 爽籟發而清風生,纖歌凝而白雲遏。
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 爽籟發而清風生,纖歌凝而白雲遏。
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 爽籟發而清風生,纖歌凝而白雲遏。
+
+
+ openTypeNameUniqueID
+ LXGW WenKai TC Medium:Version 1.330
+ openTypeNameVersion
+ Version 1.330;April 28, 2024
+ openTypeOS2CodePageRanges
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 7
+ 8
+ 18
+ 20
+ 29
+ 30
+ 48
+ 49
+ 50
+ 52
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 62
+ 63
+
+ openTypeOS2Panose
+
+ 2
+ 2
+ 6
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+
+ openTypeOS2StrikeoutPosition
+ 300
+ openTypeOS2StrikeoutSize
+ 50
+ openTypeOS2SubscriptXOffset
+ 0
+ openTypeOS2SubscriptXSize
+ 650
+ openTypeOS2SubscriptYOffset
+ 75
+ openTypeOS2SubscriptYSize
+ 600
+ openTypeOS2SuperscriptXOffset
+ 0
+ openTypeOS2SuperscriptXSize
+ 650
+ openTypeOS2SuperscriptYOffset
+ 350
+ openTypeOS2SuperscriptYSize
+ 600
+ openTypeOS2Type
+
+ openTypeOS2TypoAscender
+ 880
+ openTypeOS2TypoDescender
+ -120
+ openTypeOS2TypoLineGap
+ 0
+ openTypeOS2VendorID
+ LXGW
+ openTypeOS2WeightClass
+ 500
+ openTypeOS2WidthClass
+ 5
+ openTypeOS2WinAscent
+ 1032
+ openTypeOS2WinDescent
+ 285
+ openTypeVheaVertTypoAscender
+ 500
+ openTypeVheaVertTypoDescender
+ -500
+ openTypeVheaVertTypoLineGap
+ 0
+ postscriptUnderlinePosition
+ -175
+ postscriptUnderlineThickness
+ 50
+ styleMapFamilyName
+ LXGW WenKai TC Medium
+ styleMapStyleName
+ regular
+ styleName
+ Medium
+ unitsPerEm
+ 1000
+ versionMajor
+ 1
+ versionMinor
+ 330
+ xHeight
+ 468
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/contents.plist b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/contents.plist
new file mode 100644
index 000000000..c787c44ab
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/contents.plist
@@ -0,0 +1,14 @@
+
+
+
+
+ u2C65
+ u2C_65.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7B2
+ uA_7B_2.glif
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uni2C_65.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/u2C_65.glif
similarity index 97%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uni2C_65.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/u2C_65.glif
index f9a95d041..12ca7fc25 100644
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uni2C_65.glif
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/u2C_65.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uniA_7A_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/uA_7A_A_.glif
similarity index 99%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uniA_7A_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/uA_7A_A_.glif
index 276a63cfc..33e461e8d 100644
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uniA_7A_A_.glif
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/uA_7A_A_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uniA_7A_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/uA_7A_D_.glif
similarity index 99%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uniA_7A_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/uA_7A_D_.glif
index 62e5e5134..eeb1be8ed 100644
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs.public.background/uniA_7A_D_.glif
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/uA_7A_D_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uniA_7B_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/uA_7B_2.glif
similarity index 99%
rename from sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uniA_7B_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/uA_7B_2.glif
index e105a91d9..706cf131c 100644
--- a/sources/LXGWWenKaiMonoTC-Bold.ufo/glyphs.public.background/uniA_7B_2.glif
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs.public.background/uA_7B_2.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_E_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_E_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_E_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_E_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_breve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_breve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_breve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_dieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_dieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_dieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_grave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_grave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_grave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_lpha.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_lpha.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_lpha.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_lpha.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_lphatonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_lphatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_lphatonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_lphatonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_macron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_macron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_macron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_ogonek.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_ogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_ogonek.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_ogonek.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_ring.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_ring.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_ring.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_ring.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_ringacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_ringacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_ringacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_ringacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_tilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/A_tilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/A_tilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/B_eta.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/B_eta.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/B_eta.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/B_eta.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_cedilla.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_cedilla.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_cedilla.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_cedilla.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_dotaccent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_dotaccent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_dotaccent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_hi.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_hi.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/C_hi.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/C_hi.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/D_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/D_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/D_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/D_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/D_croat.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/D_croat.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/D_croat.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/D_croat.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_breve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_breve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_breve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_dieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_dieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_dieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_dotaccent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_dotaccent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_dotaccent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_grave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_grave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_grave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_macron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_macron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_macron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_ng.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_ng.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_ng.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_ng.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_ogonek.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_ogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_ogonek.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_ogonek.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_psilon.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_psilon.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_psilon.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_psilon.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_psilontonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_psilontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_psilontonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_psilontonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_ta.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_ta.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_ta.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_ta.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_tatonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_tatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_tatonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_tatonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_th.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_th.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_th.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_th.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_uro.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_uro.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/E_uro.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/E_uro.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_amma.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_amma.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_amma.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_amma.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_breve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_breve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_breve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_dotaccent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/G_dotaccent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/G_dotaccent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/H_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/H_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/H_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/H_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/H_bar.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/H_bar.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/H_bar.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/H_bar.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/H_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/H_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/H_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/H_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_J_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_J_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_J_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_J_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_breve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_breve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_breve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_dieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_dieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_dieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_dotaccent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_dotaccent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_dotaccent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_grave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_grave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_grave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_macron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_macron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_macron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_ogonek.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_ogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_ogonek.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_ogonek.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_ota.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_ota.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_ota.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_ota.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_otadieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_otadieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_otadieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_otadieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_otatonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_otatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_otatonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_otatonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_tilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/I_tilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/I_tilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/J_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/J_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/J_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/J_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/J_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/J_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/J_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/J_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/K_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/K_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/K_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/K_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/K_appa.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/K_appa.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/K_appa.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/K_appa.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_ambda.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_ambda.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_ambda.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_ambda.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_dot.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_dot.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_dot.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_dot.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_slash.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_slash.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/L_slash.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/L_slash.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/M_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/M_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/M_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/M_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/M_u.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/M_u.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/M_u.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/M_u.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_tilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_tilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_tilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_u.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_u.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/N_u.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/N_u.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_breve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_breve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_breve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_dieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_dieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_dieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_grave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_grave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_grave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_horn.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_horn.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_horn.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_horn.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_hungarumlaut.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_hungarumlaut.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_hungarumlaut.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_hungarumlaut.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_macron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_macron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_macron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_mega.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_mega.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_mega.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_mega.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_megatonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_megatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_megatonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_megatonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_micron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_micron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_micron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_micron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_microntonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_microntonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_microntonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_microntonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_slash.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_slash.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_slash.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_slash.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_slashacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_slashacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_slashacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_slashacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_tilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/O_tilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/O_tilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_hi.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_hi.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_hi.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_hi.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_i.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_i.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_i.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_i.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_si.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_si.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_si.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_si.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_ureW_riter.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_ureW_riter.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/P_ureW_riter.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/P_ureW_riter.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Q_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Q_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Q_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Q_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/R_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/R_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/R_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/R_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/R_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/R_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/R_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/R_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/R_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/R_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/R_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/R_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/R_ho.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/R_ho.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/R_ho.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/R_ho.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_cedilla.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_cedilla.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_cedilla.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_cedilla.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_igma.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_igma.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/S_igma.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/S_igma.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_au.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_au.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_au.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_au.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_bar.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_bar.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_bar.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_bar.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_heta.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_heta.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_heta.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_heta.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_horn.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_horn.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/T_horn.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/T_horn.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_breve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_breve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_breve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_breve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_dieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_dieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_dieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_grave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_grave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_grave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_horn.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_horn.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_horn.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_horn.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_hungarumlaut.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_hungarumlaut.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_hungarumlaut.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_hungarumlaut.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_macron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_macron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_macron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_macron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_ogonek.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_ogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_ogonek.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_ogonek.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_psilon.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_psilon.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_psilon.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_psilon.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_psilon1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_psilon1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_psilon1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_psilon1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_psilondieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_psilondieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_psilondieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_psilondieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_psilontonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_psilontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_psilontonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_psilontonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_ring.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_ring.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_ring.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_ring.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_tilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_tilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/U_tilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/U_tilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/V_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/V_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/V_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/V_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_dieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_dieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_dieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_grave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/W_grave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/W_grave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/X_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/X_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/X_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/X_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/X_i.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/X_i.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/X_i.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/X_i.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_circumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_circumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_circumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_circumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_dieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_dieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_dieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_grave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_grave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Y_grave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Y_grave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_dotaccent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_dotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_dotaccent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_dotaccent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_eta.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_eta.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/Z_eta.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/Z_eta.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/_null.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/_null.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/_null.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/_null.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/a.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/a.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/a.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/a.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/a.salt.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/a.salt.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/a.salt.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/a.salt.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/aacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/aacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/aacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/aacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/abreve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/abreve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/abreve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/abreve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/acircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/acircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/acircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/acircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/acute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/acute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/acute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/acute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/acutecomb.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/acutecomb.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/acutecomb.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/acutecomb.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/adieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/adieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/adieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/adieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ae.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ae.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ae.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ae.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/aeacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/aeacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/aeacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/aeacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/agrave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/agrave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/agrave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/agrave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/alpha.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/alpha.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/alpha.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/alpha.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/alphatonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/alphatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/alphatonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/alphatonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/amacron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/amacron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/amacron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/amacron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ampersand.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ampersand.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ampersand.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ampersand.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/anoteleia.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/anoteleia.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/anoteleia.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/anoteleia.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/aogonek.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/aogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/aogonek.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/aogonek.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/aring.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/aring.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/aring.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/aring.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/aringacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/aringacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/aringacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/aringacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/asciicircum.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/asciicircum.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/asciicircum.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/asciicircum.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/asciitilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/asciitilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/asciitilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/asciitilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/asterisk.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/asterisk.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/asterisk.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/asterisk.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/at.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/at.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/at.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/at.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/atilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/atilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/atilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/atilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/b.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/b.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/b.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/b.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/backslash.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/backslash.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/backslash.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/backslash.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/bar.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/bar.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/bar.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/bar.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/beta.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/beta.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/beta.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/beta.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/braceleft.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/braceleft.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/braceleft.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/braceleft.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/braceright.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/braceright.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/braceright.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/braceright.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/bracketleft.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/bracketleft.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/bracketleft.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/bracketleft.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/bracketright.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/bracketright.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/bracketright.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/bracketright.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/breve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/breve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/breve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/breve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/brokenbar.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/brokenbar.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/brokenbar.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/brokenbar.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/bullet.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/bullet.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/bullet.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/bullet.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/c.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/c.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/c.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/c.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/cacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/cacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/cacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/cacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/caron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/caron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/caron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/caron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ccaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ccaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ccaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ccaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ccedilla.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ccedilla.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ccedilla.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ccedilla.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ccircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ccircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ccircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ccircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/cdotaccent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/cdotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/cdotaccent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/cdotaccent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/cent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/cent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/cent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/cent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/chi.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/chi.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/chi.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/chi.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/colon.calt.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/colon.calt.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/colon.calt.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/colon.calt.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/colon.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/colon.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/colon.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/colon.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/colonmonetary.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/colonmonetary.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/colonmonetary.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/colonmonetary.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/comma.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/comma.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/comma.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/comma.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/contents.plist b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/contents.plist
similarity index 98%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/contents.plist
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/contents.plist
index 5463e5432..ad71b4656 100644
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/contents.plist
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/contents.plist
@@ -476,8 +476,6 @@
epsilontonos.glif
equal
equal.glif
- estimated
- estimated.glif
eta
eta.glif
etatonos
@@ -3374,28 +3372,28 @@
umacron.glif
underscore
underscore.glif
- uni04F5
- uni04F_5.glif
- uni2C64
- uni2C_64.glif
- uni2C65
- uni2C_65.glif
- uni2C66
- uni2C_66.glif
- uniA78D
- uniA_78D_.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7AE
- uniA_7A_E_.glif
- uniA7B2
- uniA_7B_2.glif
- uniA7B3
- uniA_7B_3.glif
- uniA7B4
- uniA_7B_4.glif
+ u04F5
+ u04F_5.glif
+ u2C64
+ u2C_64.glif
+ u2C65
+ u2C_65.glif
+ u2C66
+ u2C_66.glif
+ uA78D
+ uA_78D_.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7AE
+ uA_7A_E_.glif
+ uA7B2
+ uA_7B_2.glif
+ uA7B3
+ uA_7B_3.glif
+ uA7B4
+ uA_7B_4.glif
uogonek
uogonek.glif
upsilon
@@ -3450,5 +3448,43 @@
zero.glif
zeta
zeta.glif
+ u1EFC
+ u1E_F_C_.glif
+ u1EFD
+ u1E_F_D_.glif
+ u1EFE
+ u1E_F_E_.glif
+ u1EFF
+ u1E_F_F_.glif
+ u20B0
+ u20B_0.glif
+ u20B1
+ u20B_1.glif
+ u20B2
+ u20B_2.glif
+ u20B3
+ u20B_3.glif
+ u20B5
+ u20B_5.glif
+ u20B6
+ u20B_6.glif
+ u20B7
+ u20B_7.glif
+ u20B8
+ u20B_8.glif
+ u20BA
+ u20B_A_.glif
+ u20BB
+ u20B_B_.glif
+ u20BC
+ u20B_C_.glif
+ u20BE
+ u20B_E_.glif
+ u20BF
+ u20B_F_.glif
+ u20C0
+ u20C_0.glif
+ u2120
+ u2120.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/copyright.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/copyright.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/copyright.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/copyright.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/currency.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/currency.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/currency.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/currency.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/d.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/d.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/d.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/d.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/dcaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/dcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/dcaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/dcaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/dcroat.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/dcroat.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/dcroat.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/dcroat.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/degree.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/degree.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/degree.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/degree.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/delta.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/delta.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/delta.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/delta.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/dieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/dieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/dieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/dieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/dieresistonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/dieresistonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/dieresistonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/dieresistonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/divide.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/divide.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/divide.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/divide.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/dollar.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/dollar.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/dollar.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/dollar.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/dong.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/dong.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/dong.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/dong.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/dotbelowcomb.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/dotbelowcomb.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/dotbelowcomb.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/dotbelowcomb.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/dotlessi.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/dotlessi.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/dotlessi.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/dotlessi.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/dotmath.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/dotmath.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/dotmath.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/dotmath.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/e.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/e.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/e.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/e.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/eacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/eacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/eacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/eacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ebreve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ebreve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ebreve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ebreve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ecaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ecaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ecaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ecaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ecircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ecircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ecircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ecircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/edieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/edieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/edieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/edieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/edotaccent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/edotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/edotaccent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/edotaccent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/egrave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/egrave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/egrave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/egrave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/eight.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/eight.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/eight.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/eight.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/emacron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/emacron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/emacron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/emacron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/eng.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/eng.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/eng.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/eng.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/eogonek.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/eogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/eogonek.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/eogonek.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/epsilon.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/epsilon.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/epsilon.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/epsilon.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/epsilontonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/epsilontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/epsilontonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/epsilontonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/equal.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/equal.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/equal.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/equal.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/eta.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/eta.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/eta.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/eta.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/etatonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/etatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/etatonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/etatonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/eth.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/eth.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/eth.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/eth.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/exclam.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/exclam.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/exclam.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/exclam.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/exclamdown.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/exclamdown.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/exclamdown.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/exclamdown.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/f.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/f.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/f.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/f.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/five.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/five.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/five.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/five.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/florin.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/florin.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/florin.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/florin.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/four.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/four.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/four.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/four.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/fraction.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/fraction.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/fraction.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/fraction.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/franc.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/franc.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/franc.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/franc.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/g.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/g.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/g.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/g.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/gamma.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/gamma.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/gamma.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/gamma.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/gbreve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/gbreve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/gbreve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/gbreve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/gcaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/gcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/gcaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/gcaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/gcircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/gcircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/gcircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/gcircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/gdotaccent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/gdotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/gdotaccent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/gdotaccent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/germandbls.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/germandbls.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/germandbls.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/germandbls.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/grave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/grave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/grave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/grave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/gravecomb.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/gravecomb.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/gravecomb.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/gravecomb.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/greater.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/greater.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/greater.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/greater.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/guillemotleft.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/guillemotleft.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/guillemotleft.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/guillemotleft.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/guillemotright.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/guillemotright.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/guillemotright.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/guillemotright.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/guilsinglleft.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/guilsinglleft.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/guilsinglleft.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/guilsinglleft.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/guilsinglright.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/guilsinglright.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/guilsinglright.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/guilsinglright.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/h.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/h.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/h.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/h.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/hbar.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/hbar.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/hbar.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/hbar.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/hcircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/hcircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/hcircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/hcircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/hookabovecomb.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/hookabovecomb.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/hookabovecomb.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/hookabovecomb.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/hyphen.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/hyphen.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/hyphen.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/hyphen.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/i.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/i.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/i.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/i.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/iacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/iacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/iacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/iacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ibreve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ibreve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ibreve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ibreve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/icircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/icircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/icircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/icircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/idieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/idieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/idieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/idieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/igrave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/igrave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/igrave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/igrave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ij.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ij.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ij.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ij.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/imacron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/imacron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/imacron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/imacron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/iogonek.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/iogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/iogonek.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/iogonek.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/iota.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/iota.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/iota.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/iota.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/iotadieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/iotadieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/iotadieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/iotadieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/iotadieresistonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/iotadieresistonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/iotadieresistonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/iotadieresistonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/iotatonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/iotatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/iotatonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/iotatonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/itilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/itilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/itilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/itilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/j.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/j.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/j.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/j.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/jcircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/jcircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/jcircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/jcircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/k.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/k.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/k.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/k.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/kappa.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/kappa.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/kappa.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/kappa.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/kgreenlandic.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/kgreenlandic.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/kgreenlandic.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/kgreenlandic.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/l.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/l.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/l.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/l.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/lacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/lacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/lacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/lacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/lambda.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/lambda.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/lambda.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/lambda.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/layerinfo.plist b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/layerinfo.plist
similarity index 99%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/layerinfo.plist
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/layerinfo.plist
index 2f73a7688..bedc0d32a 100644
--- a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/layerinfo.plist
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/layerinfo.plist
@@ -3378,27 +3378,27 @@
0
com.schriftgestaltung.layerOrderInGlyph.underscore
0
- com.schriftgestaltung.layerOrderInGlyph.uni04F5
+ com.schriftgestaltung.layerOrderInGlyph.u04F5
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C64
+ com.schriftgestaltung.layerOrderInGlyph.u2C64
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C65
+ com.schriftgestaltung.layerOrderInGlyph.u2C65
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C66
+ com.schriftgestaltung.layerOrderInGlyph.u2C66
0
- com.schriftgestaltung.layerOrderInGlyph.uniA78D
+ com.schriftgestaltung.layerOrderInGlyph.uA78D
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AA
+ com.schriftgestaltung.layerOrderInGlyph.uA7AA
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AD
+ com.schriftgestaltung.layerOrderInGlyph.uA7AD
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AE
+ com.schriftgestaltung.layerOrderInGlyph.uA7AE
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B2
+ com.schriftgestaltung.layerOrderInGlyph.uA7B2
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B3
+ com.schriftgestaltung.layerOrderInGlyph.uA7B3
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B4
+ com.schriftgestaltung.layerOrderInGlyph.uA7B4
0
com.schriftgestaltung.layerOrderInGlyph.uogonek
0
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/lcaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/lcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/lcaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/lcaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ldot.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ldot.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ldot.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ldot.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/less.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/less.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/less.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/less.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/lira.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/lira.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/lira.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/lira.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/logicalnot.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/logicalnot.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/logicalnot.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/logicalnot.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/longs.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/longs.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/longs.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/longs.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/lslash.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/lslash.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/lslash.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/lslash.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/m.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/m.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/m.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/m.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/macron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/macron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/macron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/macron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/minus.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/minus.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/minus.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/minus.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/minute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/minute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/minute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/minute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/mu.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/mu.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/mu.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/mu.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/multiply.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/multiply.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/multiply.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/multiply.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/n.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/n.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/n.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/n.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/nacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/nacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/nacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/nacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/napostrophe.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/napostrophe.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/napostrophe.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/napostrophe.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ncaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ncaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ncaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ncaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/nine.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/nine.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/nine.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/nine.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/nonmarkingreturn.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/nonmarkingreturn.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/nonmarkingreturn.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/nonmarkingreturn.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ntilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ntilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ntilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ntilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/nu.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/nu.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/nu.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/nu.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/numbersign.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/numbersign.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/numbersign.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/numbersign.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/o.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/o.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/o.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/o.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/oacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/oacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/oacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/oacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/obreve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/obreve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/obreve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/obreve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ocircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ocircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ocircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ocircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/odieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/odieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/odieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/odieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/oe.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/oe.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/oe.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/oe.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ograve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ograve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ograve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ograve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ohorn.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ohorn.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ohorn.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ohorn.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ohungarumlaut.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ohungarumlaut.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ohungarumlaut.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ohungarumlaut.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/omacron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/omacron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/omacron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/omacron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/omega.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/omega.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/omega.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/omega.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/omega1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/omega1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/omega1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/omega1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/omegatonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/omegatonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/omegatonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/omegatonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/omicron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/omicron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/omicron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/omicron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/omicrontonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/omicrontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/omicrontonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/omicrontonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/one.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/one.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/one.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/one.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ordfeminine.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ordfeminine.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ordfeminine.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ordfeminine.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ordmasculine.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ordmasculine.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ordmasculine.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ordmasculine.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/oslash.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/oslash.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/oslash.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/oslash.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/oslashacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/oslashacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/oslashacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/oslashacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/otilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/otilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/otilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/otilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/p.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/p.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/p.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/p.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/paragraph.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/paragraph.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/paragraph.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/paragraph.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/parenleft.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/parenleft.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/parenleft.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/parenleft.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/parenright.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/parenright.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/parenright.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/parenright.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/partialdiff.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/partialdiff.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/partialdiff.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/partialdiff.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/percent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/percent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/percent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/percent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/period.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/period.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/period.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/period.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/periodcentered.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/periodcentered.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/periodcentered.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/periodcentered.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/phi.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/phi.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/phi.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/phi.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/phi1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/phi1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/phi1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/phi1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/pi.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/pi.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/pi.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/pi.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/plus.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/plus.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/plus.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/plus.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/plusminus.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/plusminus.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/plusminus.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/plusminus.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/product.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/product.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/product.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/product.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/psi.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/psi.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/psi.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/psi.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/q.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/q.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/q.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/q.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/question.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/question.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/question.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/question.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/questiondown.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/questiondown.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/questiondown.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/questiondown.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotedbl.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotedbl.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotedbl.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotedbl.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotedblbase.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotedblbase.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotedblbase.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotedblbase.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotedblleft.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotedblleft.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotedblleft.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotedblleft.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotedblright.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotedblright.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotedblright.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotedblright.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/quoteleft.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/quoteleft.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/quoteleft.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/quoteleft.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotereversed.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotereversed.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotereversed.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotereversed.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/quoteright.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/quoteright.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/quoteright.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/quoteright.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotesinglbase.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotesinglbase.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotesinglbase.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotesinglbase.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotesingle.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotesingle.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/quotesingle.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/quotesingle.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/r.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/r.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/r.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/r.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/racute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/racute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/racute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/racute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/radical.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/radical.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/radical.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/radical.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/rcaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/rcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/rcaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/rcaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/registered.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/registered.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/registered.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/registered.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/rho.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/rho.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/rho.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/rho.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/s.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/s.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/s.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/s.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/sacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/sacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/sacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/sacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/scaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/scaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/scaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/scaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/scedilla.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/scedilla.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/scedilla.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/scedilla.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/scircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/scircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/scircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/scircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/second.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/second.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/second.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/second.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/section.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/section.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/section.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/section.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/semicolon.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/semicolon.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/semicolon.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/semicolon.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/seven.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/seven.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/seven.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/seven.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/sigma.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/sigma.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/sigma.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/sigma.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/sigma1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/sigma1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/sigma1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/sigma1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/six.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/six.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/six.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/six.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/slash.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/slash.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/slash.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/slash.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/space.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/space.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/space.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/space.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/sterling.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/sterling.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/sterling.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/sterling.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/summation.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/summation.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/summation.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/summation.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/t.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/t.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/t.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/t.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/tau.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/tau.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/tau.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/tau.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/tbar.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/tbar.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/tbar.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/tbar.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/tcaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/tcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/tcaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/tcaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/theta.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/theta.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/theta.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/theta.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/theta1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/theta1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/theta1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/theta1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/thorn.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/thorn.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/thorn.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/thorn.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/three.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/three.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/three.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/three.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/tildecomb.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/tildecomb.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/tildecomb.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/tildecomb.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/tonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/tonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/tonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/tonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/trademark.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/trademark.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/trademark.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/trademark.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/two.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/two.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/two.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/two.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u00A_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u00A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u00A_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u00A_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u00B_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u00B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u00B_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u00B_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u00B_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u00B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u00B_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u00B_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u00B_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u00B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u00B_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u00B_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0122.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0122.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0122.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0122.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0123.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0123.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0123.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0123.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0136.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0136.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0136.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0136.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0137.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0137.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0137.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0137.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u013B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u013B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u013B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u013B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u013C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u013C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u013C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u013C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0145.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0145.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0145.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0145.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0146.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0146.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0146.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0146.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0156.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0156.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0156.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0156.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0157.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0157.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0157.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0157.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0162.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0162.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0162.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0162.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0163.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0163.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0163.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0163.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0180.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0180.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0180.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0180.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0181.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0181.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0181.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0181.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0182.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0182.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0182.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0182.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0183.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0183.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0183.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0183.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0184.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0184.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0184.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0184.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0185.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0185.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0185.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0185.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0186.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0186.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0186.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0186.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0187.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0187.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0187.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0187.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0188.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0188.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0188.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0188.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0189.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0189.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0189.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0189.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u018F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u018F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0190.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0190.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0190.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0190.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0191.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0191.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0191.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0191.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0193.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0193.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0193.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0193.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0194.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0194.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0194.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0194.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0195.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0195.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0195.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0195.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0196.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0196.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0196.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0196.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0197.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0197.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0197.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0197.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0198.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0198.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0198.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0198.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0199.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0199.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0199.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0199.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u019F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u019F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01A_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01A_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01B_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01B_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01C_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01C_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01D_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01D_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01E_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01E_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u01F_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u01F_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0200.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0200.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0200.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0200.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0201.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0201.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0201.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0201.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0202.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0202.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0202.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0202.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0203.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0203.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0203.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0203.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0204.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0204.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0204.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0204.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0205.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0205.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0205.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0205.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0206.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0206.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0206.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0206.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0207.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0207.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0207.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0207.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0208.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0208.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0208.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0208.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0209.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0209.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0209.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0209.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u020F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u020F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0210.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0210.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0210.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0210.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0211.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0211.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0211.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0211.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0212.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0212.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0212.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0212.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0213.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0213.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0213.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0213.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0214.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0214.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0214.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0214.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0215.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0215.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0215.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0215.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0216.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0216.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0216.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0216.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0217.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0217.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0217.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0217.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0218.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0218.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0218.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0218.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0219.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0219.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0219.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0219.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u021F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u021F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0220.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0220.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0220.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0220.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0221.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0221.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0221.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0221.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0222.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0222.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0222.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0222.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0223.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0223.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0223.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0223.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0224.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0224.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0224.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0224.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0225.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0225.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0225.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0225.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0226.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0226.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0226.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0226.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0227.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0227.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0227.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0227.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0228.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0228.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0228.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0228.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0229.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0229.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0229.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0229.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u022F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u022F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0230.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0230.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0230.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0230.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0231.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0231.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0231.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0231.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0232.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0232.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0232.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0232.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0233.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0233.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0233.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0233.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0234.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0234.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0234.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0234.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0235.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0235.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0235.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0235.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0236.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0236.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0236.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0236.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0237.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0237.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0237.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0237.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0238.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0238.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0238.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0238.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0239.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0239.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0239.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0239.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u023F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u023F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0240.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0240.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0240.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0240.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0241.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0241.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0241.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0241.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0242.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0242.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0242.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0242.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0243.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0243.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0243.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0243.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0244.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0244.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0244.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0244.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0245.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0245.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0245.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0245.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0246.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0246.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0246.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0246.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0247.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0247.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0247.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0247.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0248.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0248.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0248.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0248.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0249.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0249.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0249.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0249.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u024F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u024F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0250.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0250.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0250.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0250.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0251.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0251.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0251.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0251.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0252.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0252.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0252.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0252.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0253.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0253.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0253.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0253.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0254.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0254.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0254.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0254.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0255.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0255.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0255.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0255.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0256.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0256.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0256.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0256.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0257.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0257.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0257.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0257.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0258.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0258.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0258.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0258.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0259.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0259.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0259.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0259.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u025F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u025F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0260.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0260.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0260.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0260.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0261.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0261.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0261.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0261.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0262.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0262.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0262.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0262.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0263.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0263.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0263.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0263.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0264.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0264.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0264.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0264.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0265.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0265.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0265.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0265.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0266.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0266.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0266.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0266.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0267.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0267.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0267.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0267.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0268.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0268.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0268.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0268.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0269.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0269.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0269.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0269.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u026F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u026F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0270.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0270.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0270.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0270.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0271.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0271.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0271.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0271.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0272.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0272.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0272.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0272.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0273.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0273.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0273.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0273.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0274.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0274.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0274.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0274.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0275.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0275.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0275.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0275.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0276.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0276.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0276.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0276.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0277.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0277.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0277.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0277.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0278.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0278.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0278.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0278.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0279.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0279.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0279.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0279.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u027F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u027F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0280.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0280.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0280.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0280.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0281.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0281.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0281.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0281.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0282.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0282.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0282.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0282.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0283.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0283.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0283.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0283.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0284.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0284.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0284.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0284.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0285.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0285.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0285.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0285.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0286.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0286.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0286.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0286.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0287.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0287.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0287.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0287.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0288.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0288.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0288.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0288.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0289.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0289.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0289.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0289.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u028F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u028F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0290.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0290.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0290.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0290.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0291.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0291.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0291.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0291.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0292.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0292.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0292.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0292.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0293.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0293.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0293.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0293.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0294.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0294.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0294.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0294.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0295.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0295.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0295.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0295.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0296.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0296.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0296.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0296.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0297.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0297.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0297.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0297.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0298.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0298.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0298.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0298.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0299.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0299.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0299.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0299.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u029F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u029F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02A_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02A_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02B_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02B_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02C_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02C_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02D_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02D_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02D_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02D_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02D_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02D_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02D_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02D_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02D_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02E_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02E_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02F_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02F_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02F_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02F_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u02F_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u02F_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0302.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0302.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0302.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0302.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0304.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0304.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0304.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0304.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0305.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0305.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0305.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0305.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0306.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0306.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0306.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0306.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0307.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0307.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0307.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0307.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0308.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0308.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0308.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0308.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u030F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u030F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0311.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0311.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0311.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0311.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0316.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0316.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0316.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0316.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0317.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0317.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0317.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0317.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0318.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0318.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0318.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0318.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0319.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0319.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0319.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0319.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u031F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u031F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0320.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0320.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0320.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0320.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0324.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0324.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0324.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0324.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0325.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0325.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0325.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0325.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0326.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0326.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0326.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0326.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0327.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0327.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0327.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0327.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0328.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0328.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0328.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0328.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0329.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0329.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0329.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0329.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u032F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u032F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0330.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0330.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0330.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0330.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0331.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0331.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0331.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0331.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0332.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0332.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0332.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0332.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0334.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0334.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0334.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0334.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0335.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0335.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0335.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0335.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0336.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0336.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0336.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0336.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0338.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0338.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0338.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0338.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0339.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0339.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0339.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0339.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u033A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u033A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u033A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u033A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u033B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u033B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u033B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u033B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u033C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u033C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u033C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u033C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u033D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u033D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u033D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u033D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0340.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0340.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0340.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0340.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0341.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0341.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0341.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0341.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0358.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0358.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0358.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0358.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0361.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0361.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0361.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0361.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0370.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0370.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0370.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0370.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0371.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0371.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0371.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0371.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0372.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0372.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0372.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0372.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0373.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0373.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0373.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0373.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0374.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0374.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0374.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0374.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0375.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0375.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0375.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0375.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0376.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0376.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0376.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0376.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0377.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0377.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0377.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0377.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u037F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u037F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0394.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0394.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0394.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0394.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03A_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03A_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03A_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03B_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03B_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03B_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03C_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03C_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03C_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03C_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03D_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03D_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03E_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03E_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03E_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03E_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03E_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03E_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u03F_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u03F_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0400.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0400.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0400.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0400.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0401.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0401.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0401.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0401.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0402.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0402.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0402.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0402.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0403.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0403.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0403.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0403.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0404.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0404.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0404.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0404.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0405.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0405.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0405.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0405.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0406.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0406.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0406.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0406.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0407.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0407.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0407.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0407.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0408.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0408.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0408.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0408.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0409.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0409.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0409.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0409.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u040F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u040F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0410.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0410.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0410.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0410.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0411.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0411.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0411.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0411.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0412.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0412.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0412.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0412.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0413.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0413.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0413.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0413.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0414.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0414.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0414.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0414.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0415.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0415.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0415.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0415.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0416.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0416.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0416.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0416.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0417.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0417.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0417.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0417.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0418.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0418.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0418.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0418.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0419.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0419.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0419.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0419.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u041F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u041F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0420.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0420.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0420.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0420.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0421.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0421.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0421.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0421.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0422.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0422.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0422.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0422.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0423.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0423.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0423.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0423.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0424.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0424.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0424.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0424.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0425.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0425.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0425.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0425.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0426.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0426.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0426.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0426.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0427.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0427.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0427.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0427.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0428.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0428.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0428.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0428.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0429.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0429.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0429.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0429.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u042F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u042F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0430.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0430.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0430.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0430.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0431.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0431.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0431.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0431.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0432.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0432.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0432.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0432.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0433.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0433.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0433.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0433.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0434.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0434.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0434.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0434.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0435.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0435.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0435.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0435.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0436.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0436.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0436.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0436.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0437.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0437.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0437.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0437.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0438.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0438.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0438.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0438.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0439.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0439.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0439.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0439.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u043F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u043F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0440.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0440.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0440.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0440.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0441.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0441.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0441.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0441.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0442.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0442.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0442.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0442.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0443.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0443.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0443.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0443.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0444.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0444.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0444.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0444.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0445.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0445.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0445.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0445.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0446.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0446.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0446.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0446.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0447.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0447.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0447.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0447.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0448.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0448.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0448.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0448.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0449.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0449.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0449.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0449.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u044F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u044F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0450.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0450.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0450.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0450.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0451.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0451.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0451.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0451.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0452.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0452.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0452.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0452.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0453.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0453.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0453.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0453.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0454.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0454.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0454.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0454.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0455.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0455.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0455.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0455.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0456.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0456.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0456.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0456.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0457.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0457.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0457.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0457.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0458.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0458.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0458.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0458.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0459.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0459.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0459.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0459.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u045F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u045F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0462.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0462.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0462.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0462.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0463.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0463.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0463.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0463.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u046A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u046A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u046A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u046A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u046B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u046B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u046B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u046B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0472.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0472.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0472.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0472.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0473.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0473.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0473.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0473.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0474.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0474.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0474.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0474.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0475.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0475.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0475.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0475.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0478.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0478.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0478.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0478.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0479.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0479.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0479.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0479.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0490.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0490.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0490.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0490.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0491.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0491.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0491.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0491.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0492.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0492.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0492.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0492.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0493.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0493.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0493.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0493.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0496.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0496.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0496.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0496.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0497.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0497.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0497.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0497.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u049A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u049A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u049A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u049A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u049B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u049B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u049B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u049B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u049C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u049C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u049C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u049C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u049D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u049D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u049D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u049D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04A_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04A_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04A_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04A_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04A_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04A_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04A_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04A_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04A_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04A_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04A_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04A_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04B_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04B_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04C_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04C_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04C_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04C_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04C_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04C_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04C_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04D_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04D_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04D_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04D_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04D_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04D_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04D_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04D_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04D_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04D_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04D_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04D_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04E_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04E_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_4.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_5.glif
new file mode 100644
index 000000000..842d85a9a
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_5.glif
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 4975ce04fe4ed47380cb57df97ab24f4dd7b2725526aeabb7cf0e12c570185dcae3fdb21eaad750b919db005498b31a00581f6bc1e6d7c9ec62ba4417183ead0
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u04F_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u04F_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0E_3F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0E_3F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u0E_3F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u0E_3F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u11F_B_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u11F_B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u11F_B_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u11F_B_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_00.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_00.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_00.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_00.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_04.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_04.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_04.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_04.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_05.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_05.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_05.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_05.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_06.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_06.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_06.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_06.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_07.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_07.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_07.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_07.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_08.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_08.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_08.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_08.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_0F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_0F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_10.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_10.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_10.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_10.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_14.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_14.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_14.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_14.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_15.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_15.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_15.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_15.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_18.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_18.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_18.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_18.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_19.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_19.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_19.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_19.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_1A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_1A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_1A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_1A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_1B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_1B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_1B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_1B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_1C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_1C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_1C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_1C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_20.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_20.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_20.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_20.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_21.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_21.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_21.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_21.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_22.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_22.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_22.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_22.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_23.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_23.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_23.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_23.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_25.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_25.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_25.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_25.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_39.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_39.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_39.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_39.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_3A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_3A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_3A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_3A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_3C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_3C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_3C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_3C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_3E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_3E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1D_3E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1D_3E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_00.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_00.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_00.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_00.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_01.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_01.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_01.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_01.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_02.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_02.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_02.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_02.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_03.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_03.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_03.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_03.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_04.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_04.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_04.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_04.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_05.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_05.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_05.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_05.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_06.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_06.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_06.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_06.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_07.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_07.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_07.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_07.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_08.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_08.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_08.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_08.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_09.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_09.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_09.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_09.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_0F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_0F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_10.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_10.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_10.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_10.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_11.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_11.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_11.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_11.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_12.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_12.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_12.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_12.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_13.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_13.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_13.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_13.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_14.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_14.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_14.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_14.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_15.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_15.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_15.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_15.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_16.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_16.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_16.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_16.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_17.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_17.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_17.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_17.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_18.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_18.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_18.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_18.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_19.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_19.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_19.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_19.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_1F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_1F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_20.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_20.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_20.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_20.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_21.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_21.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_21.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_21.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_22.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_22.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_22.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_22.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_23.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_23.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_23.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_23.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_24.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_24.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_24.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_24.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_25.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_25.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_25.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_25.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_26.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_26.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_26.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_26.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_27.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_27.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_27.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_27.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_28.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_28.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_28.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_28.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_29.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_29.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_29.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_29.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_2F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_2F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_30.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_30.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_30.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_30.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_31.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_31.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_31.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_31.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_32.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_32.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_32.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_32.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_33.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_33.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_33.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_33.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_34.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_34.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_34.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_34.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_35.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_35.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_35.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_35.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_36.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_36.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_36.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_36.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_37.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_37.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_37.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_37.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_38.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_38.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_38.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_38.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_39.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_39.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_39.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_39.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_3F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_3F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_40.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_40.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_40.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_40.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_41.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_41.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_41.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_41.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_42.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_42.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_42.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_42.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_43.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_43.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_43.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_43.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_44.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_44.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_44.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_44.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_45.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_45.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_45.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_45.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_46.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_46.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_46.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_46.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_47.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_47.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_47.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_47.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_48.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_48.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_48.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_48.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_49.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_49.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_49.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_49.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_4F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_4F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_50.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_50.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_50.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_50.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_51.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_51.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_51.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_51.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_52.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_52.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_52.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_52.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_53.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_53.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_53.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_53.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_54.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_54.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_54.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_54.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_55.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_55.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_55.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_55.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_56.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_56.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_56.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_56.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_57.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_57.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_57.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_57.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_58.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_58.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_58.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_58.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_59.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_59.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_59.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_59.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_5F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_5F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_60.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_60.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_60.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_60.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_61.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_61.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_61.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_61.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_62.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_62.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_62.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_62.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_63.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_63.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_63.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_63.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_64.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_64.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_64.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_64.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_65.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_65.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_65.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_65.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_66.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_66.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_66.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_66.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_67.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_67.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_67.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_67.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_68.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_68.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_68.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_68.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_69.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_69.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_69.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_69.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_6F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_6F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_70.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_70.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_70.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_70.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_71.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_71.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_71.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_71.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_72.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_72.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_72.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_72.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_73.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_73.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_73.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_73.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_74.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_74.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_74.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_74.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_75.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_75.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_75.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_75.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_76.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_76.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_76.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_76.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_77.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_77.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_77.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_77.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_78.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_78.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_78.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_78.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_79.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_79.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_79.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_79.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_7F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_7F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_86.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_86.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_86.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_86.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_87.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_87.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_87.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_87.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_88.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_88.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_88.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_88.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_89.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_89.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_89.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_89.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_8F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_8F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_90.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_90.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_90.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_90.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_91.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_91.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_91.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_91.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_92.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_92.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_92.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_92.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_93.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_93.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_93.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_93.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_94.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_94.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_94.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_94.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_95.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_95.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_95.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_95.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_96.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_96.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_96.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_96.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_97.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_97.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_97.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_97.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_98.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_98.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_98.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_98.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_99.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_99.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_99.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_99.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_9F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_9F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_A_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_A_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_B_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_B_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_C_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_C_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_D_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_D_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_E_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_E_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1E_F_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_B_.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_C_.glif
new file mode 100644
index 000000000..59b0e0216
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_C_.glif
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ d94dfbf049e4b27fe0d5c9168941c05cb35b2277955800b43f1947b924f30626657a598ee4d163f1dabab3e2347c947e2a1e33d1f9b7c002b7255ec20d64b3f7
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_D_.glif
new file mode 100644
index 000000000..039b7cc35
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_D_.glif
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 317a954e2c08208f0f00bd20ba4104a3e46501f199fc271e6d72886da4476ef099d4a65feff49802372e824b2048845fa2e3fae83b5ce6ae9885a235850aeb4a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_E_.glif
new file mode 100644
index 000000000..aa9453aa1
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_E_.glif
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ efcbf665e6a1002196699754e8138ed95449bc6497f0878bd18329070758ccad74a0dab09fbf30fc1bfc0c02d5b31e26b2e15b7aeb12a80bfe2c4990fd05fb67
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_F_.glif
new file mode 100644
index 000000000..b09931859
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1E_F_F_.glif
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ bf7244c627dd73c3a26976eeb01c6f96f4fa68985044de3de60751c86afbb98df4e07e7892d86a25855828fe700b9b8b12a243a555474ceb6e5b711f0a2223c0
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_00.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_00.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_00.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_00.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_01.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_01.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_01.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_01.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_02.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_02.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_02.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_02.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_03.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_03.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_03.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_03.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_04.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_04.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_04.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_04.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_05.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_05.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_05.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_05.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_06.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_06.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_06.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_06.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_07.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_07.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_07.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_07.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_08.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_08.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_08.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_08.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_09.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_09.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_09.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_09.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_0F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_0F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_10.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_10.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_10.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_10.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_11.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_11.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_11.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_11.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_12.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_12.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_12.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_12.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_12F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_12F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_12F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_12F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_13.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_13.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_13.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_13.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_14.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_14.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_14.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_14.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_15.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_15.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_15.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_15.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_16A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_16A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_16A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_16A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_16B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_16B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_16B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_16B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_16C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_16C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_16C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_16C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_18.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_18.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_18.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_18.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_19.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_19.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_19.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_19.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_1A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_1A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_1A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_1A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_1B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_1B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_1B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_1B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_1C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_1C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_1C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_1C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_1D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_1D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_1D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_1D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_20.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_20.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_20.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_20.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_21.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_21.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_21.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_21.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_22.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_22.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_22.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_22.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_23.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_23.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_23.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_23.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_24.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_24.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_24.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_24.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_25.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_25.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_25.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_25.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_26.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_26.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_26.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_26.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_27.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_27.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_27.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_27.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_28.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_28.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_28.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_28.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_29.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_29.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_29.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_29.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_2F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_2F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_30.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_30.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_30.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_30.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_31.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_31.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_31.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_31.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_32.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_32.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_32.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_32.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_33.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_33.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_33.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_33.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_34.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_34.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_34.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_34.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_35.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_35.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_35.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_35.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_36.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_36.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_36.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_36.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_37.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_37.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_37.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_37.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_38.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_38.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_38.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_38.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_39.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_39.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_39.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_39.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_3F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_3F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_40.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_40.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_40.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_40.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_41.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_41.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_41.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_41.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_42.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_42.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_42.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_42.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_43.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_43.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_43.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_43.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_44.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_44.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_44.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_44.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_45.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_45.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_45.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_45.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_48.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_48.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_48.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_48.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_49.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_49.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_49.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_49.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_4A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_4A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_4A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_4A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_4B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_4B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_4B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_4B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_4C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_4C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_4C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_4C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_4D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_4D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_4D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_4D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_50.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_50.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_50.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_50.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_51.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_51.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_51.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_51.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_52.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_52.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_52.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_52.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_53.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_53.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_53.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_53.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_54.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_54.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_54.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_54.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_55.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_55.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_55.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_55.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_56.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_56.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_56.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_56.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_57.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_57.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_57.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_57.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_59.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_59.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_59.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_59.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_5B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_5B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_5B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_5B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_5D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_5D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_5D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_5D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_5F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_5F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_5F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_5F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_60.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_60.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_60.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_60.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_61.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_61.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_61.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_61.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_62.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_62.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_62.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_62.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_63.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_63.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_63.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_63.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_64.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_64.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_64.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_64.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_65.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_65.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_65.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_65.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_66.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_66.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_66.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_66.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_67.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_67.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_67.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_67.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_68.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_68.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_68.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_68.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_69.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_69.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_69.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_69.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_6F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_6F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_70.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_70.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_70.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_70.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_71.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_71.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_71.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_71.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_72.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_72.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_72.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_72.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_73.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_73.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_73.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_73.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_74.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_74.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_74.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_74.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_75.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_75.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_75.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_75.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_76.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_76.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_76.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_76.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_77.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_77.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_77.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_77.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_78.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_78.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_78.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_78.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_79.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_79.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_79.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_79.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_7A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_7A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_7A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_7A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_7B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_7B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_7B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_7B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_7C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_7C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_7C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_7C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_7D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_7D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_7D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_7D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_80.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_80.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_80.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_80.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_81.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_81.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_81.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_81.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_82.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_82.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_82.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_82.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_83.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_83.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_83.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_83.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_84.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_84.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_84.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_84.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_85.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_85.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_85.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_85.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_86.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_86.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_86.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_86.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_87.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_87.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_87.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_87.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_88.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_88.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_88.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_88.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_89.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_89.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_89.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_89.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_8F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_8F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_90.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_90.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_90.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_90.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_91.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_91.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_91.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_91.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_92.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_92.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_92.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_92.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_93.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_93.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_93.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_93.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_94.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_94.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_94.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_94.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_95.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_95.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_95.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_95.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_96.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_96.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_96.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_96.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_97.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_97.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_97.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_97.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_98.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_98.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_98.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_98.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_99.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_99.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_99.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_99.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_9F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_9F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_A_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_A_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_B_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_B_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_C_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_C_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_D_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_D_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_E_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_E_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u1F_F_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u1F_F_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2004.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2004.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2004.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2004.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2005.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2005.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2005.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2005.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2006.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2006.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2006.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2006.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2007.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2007.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2007.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2007.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2008.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2008.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2008.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2008.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2009.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2009.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2009.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2009.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u200A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u200A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u200A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u200A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u200B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u200B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u200B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u200B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u201F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u201F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u201F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u201F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2034.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2034.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2034.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2034.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2036.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2036.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2036.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2036.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2037.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2037.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2037.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2037.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u203D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u203D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u203D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u203D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2042.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2042.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2042.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2042.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2052.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2052.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2052.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2052.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2070.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2070.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2070.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2070.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2071.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2071.glif
new file mode 100644
index 000000000..4859f2dea
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2071.glif
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ f7486f87e5039f0ee732f8cbbd49ba3a158408ce3c4d2e53f5b3f5726ddaa745ec0470d3123f8b4c63ccb74d38b01f0d940681694740dfb856a1b6001bb21aae
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2074.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2074.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2074.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2074.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2075.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2075.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2075.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2075.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2076.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2076.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2076.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2076.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2077.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2077.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2077.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2077.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2078.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2078.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2078.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2078.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2079.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2079.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2079.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2079.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u207E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207E_.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207F_.glif
new file mode 100644
index 000000000..480c6c91d
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u207F_.glif
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7204ebfa4f0b6dc4948c31a86b1015f23bb2186febe0abc5b265941003f886618a698903e4a5514a20eece835cac53b5014fb43d148c109b2d65d37ed8c2d021
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2080.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2080.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2080.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2080.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2081.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2081.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2081.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2081.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2082.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2082.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2082.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2082.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2083.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2083.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2083.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2083.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2084.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2084.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2084.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2084.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2085.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2085.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2085.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2085.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2086.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2086.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2086.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2086.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2087.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2087.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2087.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2087.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2088.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2088.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2088.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2088.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2089.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2089.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2089.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2089.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u208E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u208E_.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2090.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2090.glif
new file mode 100644
index 000000000..2ce3d5127
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2090.glif
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 64eb8e17645dcbbe8f344c21091bd6d977c6d8dd7b1540688618400827605e0360aee27e0c0de14aaad5a83e06e9aed479ca28ba57916918581843bb97ca8cb4
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2091.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2091.glif
new file mode 100644
index 000000000..9ab89edc2
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2091.glif
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ eadd8404a83f3a62cd453033038401d08e87a1869b26e641a325ad34f35f67a605b42587ff87cfbc9f2d60c21ecc30dea321e5e9ba3b8b5512943f8cbe1d3e40
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2092.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2092.glif
new file mode 100644
index 000000000..faab2ac0a
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2092.glif
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 2c3b2998e5d62e0b74339aee037930db1f5585e877ae210c1f41edbff506a28bb46639694ca82041d9f71cd7a43056e826ce8a83501577300dee4a6285d3b0b5
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2093.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2093.glif
new file mode 100644
index 000000000..95c3ece1c
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2093.glif
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b89845c9e81ddb6dec69a07d38a183586c234a212d89c84bc78123a9213b4ee0625b076e129e2f9d88c6a185070d478b48630e348a78d360e5cfcff788edebe1
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2094.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2094.glif
new file mode 100644
index 000000000..8729a1619
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2094.glif
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6d40b70ee6cd6601d958ecafc768f0f981a02ecd61d95d00e9a1220b37fec6488a305bf7d2931b0ccc8297c09baecea9ea7296c8dc8f0571031bb5aabe441450
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2095.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2095.glif
new file mode 100644
index 000000000..39d0a3d32
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2095.glif
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 8710f9e36b2685f840c40b07b04d68793cb0de1014623d324819d7cd41cd3d537eb3b4542d6bfa7fa91cb7a357d4664561963fbff9d0d94f4235b85dd60b900c
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2096.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2096.glif
new file mode 100644
index 000000000..7f0c4f738
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2096.glif
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6a0d03f9092525e6559b7b6d6b928196b336a87427ded1fc35217c47c548f9bc5861ca30d07b6339eb592e5eab155af4f5eb5b9a3bd8ac02e54705b2ab685579
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2097.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2097.glif
new file mode 100644
index 000000000..2c549a8ff
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2097.glif
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 71412a910498569cdaf8ebf46483fd99c11b51ad49aaa552ab2e761060818ab9e3678e93287be912aec6de863005bd76dc483b907746ebd971821cd29a4b6d71
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2098.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2098.glif
new file mode 100644
index 000000000..94e0bc1a3
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2098.glif
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 8a5353bf9e4dabbd107d192ad3d9f64c23c2c66f63e605238c1db8cd520e354ad0404fa333516e0201fa5aa8ea9ba360e81834471c2d5125c8e79e874d59365a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2099.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2099.glif
new file mode 100644
index 000000000..1c0aeb3e3
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2099.glif
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 3ffac5765c05b931acdeac80e3fc7899cea3f13d8954b5a8463c554b24c5a2b4eb613e977a626857c3621470db520d90f9d2e70a8729b0661f8fbcc039105786
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u209A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u209A_.glif
new file mode 100644
index 000000000..24e2c1032
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u209A_.glif
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 98756f9a78e65d8f4ed5075de45378efc79d185f32d4f4fb063d3de174f3c15d45aa6ed7680d8c834b2c57cec39c5104460ea3639d0dfe4111fe77b749f9ac14
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u209B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u209B_.glif
new file mode 100644
index 000000000..3dc2f344a
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u209B_.glif
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7b7bde8eedb9bdb1119ed00fe06dc7c21b6173808e238eea2425c8c749dd99ce1344e33a9d32227b610d9433aefa0be1a727055445bc5e48c0fb8be06de7a60d
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u209C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u209C_.glif
new file mode 100644
index 000000000..2443a7eab
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u209C_.glif
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b8064c2666e84c016cb02a91cb8f2e8a839dc125ca5466dec61d476d8f5bc7f7380c9e5c27030942b6b60687ca222ce0a295f7fd28262203a3e91d726f8141d4
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20A_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20A_F_.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_0.glif
new file mode 100644
index 000000000..a962a8c94
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_0.glif
@@ -0,0 +1,166 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 4a0222ece1ce33a777db1a4477336dbc327f8297404958e991c7b7fd101e79a98a2d6c5818ececa63f40edb33007d7f130b3dcde1da33b4d831e255e9cc02fb5
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_1.glif
new file mode 100644
index 000000000..8a451882b
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_1.glif
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ db3ae4e515d5bb8ec9e31e98c51abd0c52c26dabf19658047b97bafcf7c561ed9177be98387741c6a10983935767687289714211e821f908460c0e73401e18a3
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_2.glif
new file mode 100644
index 000000000..ccc62365b
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_2.glif
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ de5369ed9f15790cfb752565dfe4d94e1dabb127934e0349943e4e99096d9c00cb10d15ec3890719be7cf6c85a45d3032968fce3112e157c23df1dcfa3251312
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_3.glif
new file mode 100644
index 000000000..4f859e271
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_3.glif
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 0abba7f3e52acbed9fad82bd93c13818e5aaa273db888f74881b44b257d5582cd5d496b7705e604d6722678e02f3c88628f6e6cf6fdbda56c8d6a86bedbb5b3a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20B_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20B_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_4.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_5.glif
new file mode 100644
index 000000000..7f747eda4
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_5.glif
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 1976ea4d87694c0edeafaabad33db8e35d484414801d64b3f13751b855fcc6d4512c57070b59913cd71ab95866e236211a379d02ef26cdd216ec82dd3be54ee5
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_6.glif
new file mode 100644
index 000000000..334850365
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_6.glif
@@ -0,0 +1,114 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 54ebea54f0a7a0402acecfd05691cffa173be5da4e86491540e2caa89b9a74dc1fc4d2e80d16d59887243ce23a6eca9362e6922acdffaaf4b50a879c478ee04c
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_7.glif
new file mode 100644
index 000000000..684b4a719
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_7.glif
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7a8a55b30394ce4daafc4ec1fa56915a0f8c6e82614ac8e929edebe3fbbe5fd50c63fd66520aef3e351d41a02c0608677bb0b42d462c821a6d75f72d68310897
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_8.glif
new file mode 100644
index 000000000..52546f492
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_8.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 71251a6c968e3b1992cc9de7872a9df4dd313a5a3762b9714f195ccb90a567a2c5ef0fc769b3b800338f0db47f24abe1fc4a306759a2735497fe31d8aba67694
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20B_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20B_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_9.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_A_.glif
new file mode 100644
index 000000000..3bade1a58
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_A_.glif
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a7419c0728b1bd13050b21fa57dfeaefa1f131ae27d21960cdfe8eb57615eb541574ed47cc199cfaedd24df387a291943bd89588f17a845012ce9e24563745ac
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_B_.glif
new file mode 100644
index 000000000..622c8da23
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_B_.glif
@@ -0,0 +1,163 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 0e4b92c9e03ecd4d48d1bda5fbaeeef7c20377d8e8caf3c0f6c3991265cac7e903eccdcd659c60a0d89f3de9e69497576b256bf87f3a5c49705574aa3d3e90ea
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_C_.glif
new file mode 100644
index 000000000..4642e2a7f
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_C_.glif
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 74abbac5b2efff7c6547790b11609172783155bedf0646b78a8006d935049ffbcffdac8990084376ce3ac34e1ce5e37d33adbbaeca8a2ea3d4cfa1fab1533bd7
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20B_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u20B_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_D_.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_E_.glif
new file mode 100644
index 000000000..b4e4d337a
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_E_.glif
@@ -0,0 +1,149 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ f8cf79a14b1d08b551699ce859f558eeb64f71a4a82936a782e069bf5770b6f44b9043a261a9b7c8af9569ddd621cccfb0200e16b3d944d42322b11dfd12e594
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_F_.glif
new file mode 100644
index 000000000..bfc12e15d
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20B_F_.glif
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ cf7d41f64eccdcec331f2b4b6015d79302abaf009405842d268a49dafe0283a10d94fbd83acc4d5a694f51b30329513d75c036ff5379ffa18fae932a3a25d65c
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20C_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20C_0.glif
new file mode 100644
index 000000000..4c72609c2
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u20C_0.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 107df6ac2051a2f1a70d36f72c7add464ade18450000b04a47fccb01d2045b42719ce4bb35d62b6de97a1f30dd7e3775f8e5e22dfc1f779671176ab9f4a5d499
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u210A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u210A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u210A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u210A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u210E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u210E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u210E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u210E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u210F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u210F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u210F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u210F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2113.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2113.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2113.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2113.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2120.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2120.glif
new file mode 100644
index 000000000..0b37a1a61
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2120.glif
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 383829ccbaf96a0a6dbdb67fe11beefbab39b77271eb734b2afe66460d8da4fba8d952c800cda7026106c2e2003480022fed148c45f641dc7fd523d5c13bf303
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2127.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2127.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2127.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2127.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2129.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2129.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2129.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2129.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2132.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2132.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2132.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2132.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2141.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2141.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2141.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2141.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2142.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2142.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2142.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2142.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2143.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2143.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2143.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2143.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2144.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2144.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2144.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2144.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u214E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u214E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u214E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u214E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u218A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u218A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u218A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u218A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u218B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u218B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u218B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u218B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2215.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2215.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2215.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2215.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2216.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2216.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2216.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2216.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u221B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u221B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u221B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u221B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u221C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u221C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u221C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u221C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2373.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2373.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2373.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2373.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2374.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2374.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2374.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2374.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2375.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2375.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2375.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2375.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2376.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2376.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2376.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2376.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2377.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2377.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2377.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2377.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2378.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2378.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2378.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2378.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2379.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2379.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2379.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2379.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u237A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u237A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u237A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u237A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u23E_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u23E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u23E_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u23E_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2422.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2422.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2422.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2422.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u275F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u275F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2760.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2760.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2760.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2760.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u29F_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u29F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u29F_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u29F_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u29F_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u29F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u29F_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u29F_B_.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2C_64.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2C_64.glif
new file mode 100644
index 000000000..0be98d987
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2C_64.glif
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a43efea32a207823cd5491d7a77563440243082221d2e76652ff0a1346ad7a69e4842b0b0bc8f3668334066ecf1469199658b95865fdfda8817b703b0f5cf664
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2C_65.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2C_65.glif
new file mode 100644
index 000000000..a3781a83b
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2C_65.glif
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 0f054ddfcf7bec9d03d24d3ac6dd130bce56141b614533f8978b168b839206382aaab41db747ec87e9932daaac5a4bf18b4b1ef41d5f300ab105ad4b4df8c916
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2C_66.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2C_66.glif
new file mode 100644
index 000000000..042e918c9
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2C_66.glif
@@ -0,0 +1,114 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ aed6e771c10d1d498c6987078cb6654e1840583d4be37720f6ae7eecfaafc540e47959cde13ac0048dea6be7ed6283d3014a94ca443f013d6db10a7479bc46d0
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_2E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_2E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_2E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_2E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_3A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_3A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_3A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_3A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_3B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_3B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_3B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_3B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_40.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_40.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_40.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_40.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_55.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_55.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_55.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_55.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_56.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_56.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u2E_56.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u2E_56.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u3099.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u3099.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u3099.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u3099.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u309A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u309A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u309A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u309A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/u31B_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/u31B_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4D_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4D_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4E_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4E_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_0.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_0.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_0.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_0.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_1.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_1.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_1.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_1.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_2.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_2.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_2.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_3.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_3.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_3.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_4.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_4.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_4.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_6.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_6.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_6.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_6.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_7.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_7.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_7.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_7.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_8.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_8.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_8.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_8.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_9.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_9.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_9.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_9.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_A_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_A_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_A_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_B_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_B_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_B_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_B_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_C_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_C_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_C_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_C_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_E_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_E_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_E_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_4F_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_4F_F_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_730.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_730.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_730.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_730.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_731.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_731.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_731.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_731.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_78D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_78D_.glif
new file mode 100644
index 000000000..26ebc8ec1
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_78D_.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 01723eb4cfb30b1a1749c8c8338c7f2cd71f11818b6ee05f3c879e0588e8b599bae6801dfe554cbf000221822bec73de23889cb604ae6076dac170bb1b79064f
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_A_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_A_.glif
new file mode 100644
index 000000000..7240433b3
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_A_.glif
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 0beac3da8e4da84ae8154cd0c25df24b03eb821c3c33600e88e2df8c58e1d70b09546dcde8d8ec9e4dfe2c783ed1d2213bb4c6f19f81d6b237b15eb7273a7e5b
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_D_.glif
new file mode 100644
index 000000000..ce4a24b05
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_D_.glif
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ d71c12766ad1d3b2de2222fbde6fd013cac7e81d54f3e90932bff6c1c3566bad0dc2c683608def40ef78edd47c9b50548e0860abcf0f4417e676dce324b91b32
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_E_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_E_.glif
new file mode 100644
index 000000000..ca03aa5ec
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_E_.glif
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 47187009c020804a3494d673b88a312645788ede5755f73955c867a62fe5089b30e6e712ba40ac39cd9ba171d37f331285d62e5528ecc709c84ecbb92759aea9
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_7A_F_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_F_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_7A_F_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7A_F_.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_2.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_2.glif
new file mode 100644
index 000000000..be5e414b4
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_2.glif
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 419224cc94b4e29fb93da502c450f6fa674039e2464e43bd26cf48b4a478a90ea70029c04f94b828220a008cff256b1856361e395fa3371638c6eae60b6ba591
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_3.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_3.glif
new file mode 100644
index 000000000..b09f9fb13
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_3.glif
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 4020f0ce76a60fe850876478c5e499e4bdd64de2cc27d37e0438db69344b6e0c45ebfd3cc8ab9bd8b21fa1f39d48e4fa4ac470ef4e861fb47788216f37915b63
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_4.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_4.glif
new file mode 100644
index 000000000..4eaee951b
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_4.glif
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ c6c9a6ab1321b22e567e63a2ea09d0941d8ea0a99e2c79ae9959d9f2943aaba17f1c781560af7490af7a8f96905340e4bebe7151a7db087366b191c12010d14c
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_7B_5.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_5.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_7B_5.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_7B_5.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_B_53.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_B_53.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uA_B_53.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uA_B_53.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_00.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_00.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_00.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_00.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_01.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_01.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_01.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_01.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_02.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_02.glif
new file mode 100644
index 000000000..e3de5918b
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_02.glif
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 712beb6f742804b7a7c2ab1e4f8ccb7ed39ae510caa3870a78c5612748a649f462cb8ae1c9f82d3284eda409216999ef223b693614df314fde6c1b7bd69aeace
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_03.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_03.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_B_03.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_03.glif
diff --git a/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_04.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_04.glif
new file mode 100644
index 000000000..c81b171e3
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_B_04.glif
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 682f19385d9baef0e0716ee66973f097a17da1260beb1ccff2764820e4a2f79e6f263c305d766cdfdf2d0c90e55215b0412a515cd980d970287283f8f6222fe5
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_F_F_F_D_.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_F_F_F_D_.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uF_F_F_F_D_.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uF_F_F_F_D_.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ubreve.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ubreve.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ubreve.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ubreve.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ucircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ucircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ucircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ucircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/udieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/udieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/udieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/udieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ugrave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ugrave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ugrave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ugrave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uhorn.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uhorn.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uhorn.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uhorn.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uhungarumlaut.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uhungarumlaut.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uhungarumlaut.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uhungarumlaut.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/umacron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/umacron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/umacron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/umacron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/underscore.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/underscore.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/underscore.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/underscore.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uogonek.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uogonek.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uogonek.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uogonek.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/upsilon.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/upsilon.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/upsilon.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/upsilon.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/upsilondieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/upsilondieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/upsilondieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/upsilondieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/upsilondieresistonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/upsilondieresistonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/upsilondieresistonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/upsilondieresistonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/upsilontonos.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/upsilontonos.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/upsilontonos.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/upsilontonos.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/uring.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/uring.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/uring.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/uring.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/utilde.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/utilde.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/utilde.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/utilde.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/v.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/v.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/v.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/v.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/w.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/w.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/w.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/w.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/wacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/wacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/wacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/wacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/wcircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/wcircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/wcircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/wcircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/wdieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/wdieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/wdieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/wdieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/wgrave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/wgrave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/wgrave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/wgrave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/x.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/x.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/x.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/x.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/xi.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/xi.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/xi.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/xi.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/y.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/y.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/y.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/y.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/yacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/yacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/yacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/yacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ycircumflex.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ycircumflex.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ycircumflex.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ycircumflex.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ydieresis.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ydieresis.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ydieresis.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ydieresis.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/yen.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/yen.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/yen.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/yen.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/ygrave.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/ygrave.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/ygrave.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/ygrave.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/z.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/z.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/z.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/z.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/zacute.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/zacute.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/zacute.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/zacute.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/zcaron.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/zcaron.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/zcaron.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/zcaron.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/zdotaccent.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/zdotaccent.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/zdotaccent.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/zdotaccent.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/zero.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/zero.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/zero.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/zero.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/glyphs/zeta.glif b/sources/LXGWWenKaiTC-Medium.ufo/glyphs/zeta.glif
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/glyphs/zeta.glif
rename to sources/LXGWWenKaiTC-Medium.ufo/glyphs/zeta.glif
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/layercontents.plist b/sources/LXGWWenKaiTC-Medium.ufo/layercontents.plist
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/layercontents.plist
rename to sources/LXGWWenKaiTC-Medium.ufo/layercontents.plist
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/lib.plist b/sources/LXGWWenKaiTC-Medium.ufo/lib.plist
similarity index 98%
rename from sources/LXGWWenKaiTC-Bold.ufo/lib.plist
rename to sources/LXGWWenKaiTC-Medium.ufo/lib.plist
index 1b9a7ec01..40e31ab5a 100644
--- a/sources/LXGWWenKaiTC-Bold.ufo/lib.plist
+++ b/sources/LXGWWenKaiTC-Medium.ufo/lib.plist
@@ -418,13 +418,13 @@
u1EF6
u1EF8
u1EFA
- uni2C64
- uniA78D
- uniA7AA
- uniA7AD
- uniA7B2
- uniA7B3
- uniA7B4
+ u2C64
+ uA78D
+ uA7AA
+ uA7AD
+ uA7B2
+ uA7B3
+ uA7B4
a
aacute
abreve
@@ -878,8 +878,8 @@
uhorn
uhungarumlaut
umacron
- uni2C65
- uni2C66
+ u2C65
+ u2C66
uogonek
uring
utilde
@@ -1080,7 +1080,7 @@
u04EF
u04F1
u04F3
- uni04F5
+ u04F5
u04FF
Alpha
Beta
@@ -1786,7 +1786,7 @@
uA4FD
uA4FE
uA4FF
- uniA7AE
+ uA7AE
uA7AF
u11FB0
PureWriter
@@ -1823,5 +1823,30 @@
theta1
uni03D1
+ public.unicodeVariationSequences
+
+ FE00
+
+ 2018
+ quoteleft
+ 2019
+ quoteright
+ 201C
+ quotedblleft
+ 201D
+ quotedblright
+
+ FE01
+
+ 2018
+ quoteleft.full
+ 2019
+ quoteright.full
+ 201C
+ quotedblleft.full
+ 201D
+ quotedblright.full
+
+
diff --git a/sources/LXGWWenKaiTC-Bold.ufo/metainfo.plist b/sources/LXGWWenKaiTC-Medium.ufo/metainfo.plist
similarity index 100%
rename from sources/LXGWWenKaiTC-Bold.ufo/metainfo.plist
rename to sources/LXGWWenKaiTC-Medium.ufo/metainfo.plist
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/fontinfo.plist b/sources/LXGWWenKaiTC-Regular.ufo/fontinfo.plist
index dc6b9b0bb..dded35fa1 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/fontinfo.plist
+++ b/sources/LXGWWenKaiTC-Regular.ufo/fontinfo.plist
@@ -7,7 +7,8 @@
capHeight
695
copyright
- Copyright 2024 The LXGW WenKai Project Authors (https://github.com/lxgw/LxgwWenkaiTC)
+ Copyright 2022-2024 LXGW (https://github.com/lxgw/LxgwWenkaiTC)
+Copyright 2020 The Klee Project Authors (https://github.com/fontworks-fonts/Klee)
descender
-120
familyName
@@ -17,9 +18,9 @@
openTypeHeadCreated
2020/12/15 00:00:00
openTypeHheaAscender
- 1032
+ 928
openTypeHheaDescender
- -285
+ -256
openTypeHheaLineGap
0
openTypeNameDesigner
@@ -84,9 +85,135 @@
string
霞鶩文楷 TC
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 2052
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 2
+ platformID
+ 3
+ string
+ Regular
+
+
+ encodingID
+ 1
+ languageID
+ 1028
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 爽籟發而清風生,纖歌凝而白雲遏。
+
+
+ encodingID
+ 1
+ languageID
+ 3076
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 爽籟發而清風生,纖歌凝而白雲遏。
+
+
+ encodingID
+ 1
+ languageID
+ 5124
+ nameID
+ 19
+ platformID
+ 3
+ string
+ 爽籟發而清風生,纖歌凝而白雲遏。
+
+
+ openTypeNameUniqueID
+ LXGW WenKai TC:Version 1.330
+ openTypeNameVersion
+ Version 1.330;April 28, 2024
+ openTypeOS2CodePageRanges
+
+ 0
+ 1
+ 2
+ 3
+ 4
+ 7
+ 8
+ 18
+ 20
+ 29
+ 30
+ 48
+ 49
+ 50
+ 52
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 62
+ 63
+
+ openTypeOS2Panose
+
+ 2
+ 2
+ 5
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
+ 0
- openTypeNameSampleText
- 爽籟發而清風生,纖歌凝而白雲遏。
openTypeOS2StrikeoutPosition
300
openTypeOS2StrikeoutSize
@@ -117,6 +244,10 @@
0
openTypeOS2VendorID
LXGW
+ openTypeOS2WeightClass
+ 400
+ openTypeOS2WidthClass
+ 5
openTypeOS2WinAscent
1032
openTypeOS2WinDescent
@@ -126,11 +257,15 @@
openTypeVheaVertTypoDescender
-500
openTypeVheaVertTypoLineGap
- 1000
+ 0
postscriptUnderlinePosition
- -200
+ -175
postscriptUnderlineThickness
50
+ styleMapFamilyName
+ LXGW WenKai TC
+ styleMapStyleName
+ regular
styleName
Regular
unitsPerEm
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/contents.plist b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/contents.plist
index 5ddcb4629..c787c44ab 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/contents.plist
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/contents.plist
@@ -2,13 +2,13 @@
- uni2C65
- uni2C_65.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7B2
- uniA_7B_2.glif
+ u2C65
+ u2C_65.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7B2
+ uA_7B_2.glif
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uni2C_65.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/u2C_65.glif
similarity index 96%
rename from sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uni2C_65.glif
rename to sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/u2C_65.glif
index 39bc7a49d..a935da56b 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs.public.background/uni2C_65.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/u2C_65.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uniA_7A_A_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uA_7A_A_.glif
similarity index 99%
rename from sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uniA_7A_A_.glif
rename to sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uA_7A_A_.glif
index 2e17ec6a0..f4d21bbaf 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uniA_7A_A_.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uA_7A_A_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uniA_7A_D_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uA_7A_D_.glif
similarity index 99%
rename from sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uniA_7A_D_.glif
rename to sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uA_7A_D_.glif
index 1e97ed2f6..9774ccfb0 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uniA_7A_D_.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uA_7A_D_.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uniA_7B_2.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uA_7B_2.glif
similarity index 98%
rename from sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uniA_7B_2.glif
rename to sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uA_7B_2.glif
index 26ecd052a..cbe388055 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uniA_7B_2.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs.public.background/uA_7B_2.glif
@@ -1,5 +1,5 @@
-
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/contents.plist b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/contents.plist
index 5463e5432..ad71b4656 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/contents.plist
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/contents.plist
@@ -476,8 +476,6 @@
epsilontonos.glif
equal
equal.glif
- estimated
- estimated.glif
eta
eta.glif
etatonos
@@ -3374,28 +3372,28 @@
umacron.glif
underscore
underscore.glif
- uni04F5
- uni04F_5.glif
- uni2C64
- uni2C_64.glif
- uni2C65
- uni2C_65.glif
- uni2C66
- uni2C_66.glif
- uniA78D
- uniA_78D_.glif
- uniA7AA
- uniA_7A_A_.glif
- uniA7AD
- uniA_7A_D_.glif
- uniA7AE
- uniA_7A_E_.glif
- uniA7B2
- uniA_7B_2.glif
- uniA7B3
- uniA_7B_3.glif
- uniA7B4
- uniA_7B_4.glif
+ u04F5
+ u04F_5.glif
+ u2C64
+ u2C_64.glif
+ u2C65
+ u2C_65.glif
+ u2C66
+ u2C_66.glif
+ uA78D
+ uA_78D_.glif
+ uA7AA
+ uA_7A_A_.glif
+ uA7AD
+ uA_7A_D_.glif
+ uA7AE
+ uA_7A_E_.glif
+ uA7B2
+ uA_7B_2.glif
+ uA7B3
+ uA_7B_3.glif
+ uA7B4
+ uA_7B_4.glif
uogonek
uogonek.glif
upsilon
@@ -3450,5 +3448,43 @@
zero.glif
zeta
zeta.glif
+ u1EFC
+ u1E_F_C_.glif
+ u1EFD
+ u1E_F_D_.glif
+ u1EFE
+ u1E_F_E_.glif
+ u1EFF
+ u1E_F_F_.glif
+ u20B0
+ u20B_0.glif
+ u20B1
+ u20B_1.glif
+ u20B2
+ u20B_2.glif
+ u20B3
+ u20B_3.glif
+ u20B5
+ u20B_5.glif
+ u20B6
+ u20B_6.glif
+ u20B7
+ u20B_7.glif
+ u20B8
+ u20B_8.glif
+ u20BA
+ u20B_A_.glif
+ u20BB
+ u20B_B_.glif
+ u20BC
+ u20B_C_.glif
+ u20BE
+ u20B_E_.glif
+ u20BF
+ u20B_F_.glif
+ u20C0
+ u20C_0.glif
+ u2120
+ u2120.glif
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/estimated.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/estimated.glif
deleted file mode 100644
index 766f4cb77..000000000
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/estimated.glif
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/layerinfo.plist b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/layerinfo.plist
index 2f73a7688..bedc0d32a 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/layerinfo.plist
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/layerinfo.plist
@@ -3378,27 +3378,27 @@
0
com.schriftgestaltung.layerOrderInGlyph.underscore
0
- com.schriftgestaltung.layerOrderInGlyph.uni04F5
+ com.schriftgestaltung.layerOrderInGlyph.u04F5
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C64
+ com.schriftgestaltung.layerOrderInGlyph.u2C64
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C65
+ com.schriftgestaltung.layerOrderInGlyph.u2C65
0
- com.schriftgestaltung.layerOrderInGlyph.uni2C66
+ com.schriftgestaltung.layerOrderInGlyph.u2C66
0
- com.schriftgestaltung.layerOrderInGlyph.uniA78D
+ com.schriftgestaltung.layerOrderInGlyph.uA78D
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AA
+ com.schriftgestaltung.layerOrderInGlyph.uA7AA
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AD
+ com.schriftgestaltung.layerOrderInGlyph.uA7AD
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7AE
+ com.schriftgestaltung.layerOrderInGlyph.uA7AE
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B2
+ com.schriftgestaltung.layerOrderInGlyph.uA7B2
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B3
+ com.schriftgestaltung.layerOrderInGlyph.uA7B3
0
- com.schriftgestaltung.layerOrderInGlyph.uniA7B4
+ com.schriftgestaltung.layerOrderInGlyph.uA7B4
0
com.schriftgestaltung.layerOrderInGlyph.uogonek
0
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u04F_5.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u04F_5.glif
new file mode 100644
index 000000000..151cdab29
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u04F_5.glif
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 6700ea47477b8dbb7d20202d1b853ab7484d18c6becf11a3df450e3177cca7184732d197ffbfa4fd77be3b49241ba00293990783c5e5ee186d7de36f4f6c1e8c
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_C_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_C_.glif
new file mode 100644
index 000000000..5886630da
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_C_.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ afde945cfed24bc6053bb2381b04abe202a7af6438d760721633b7314f9f0abc9f28a888d7c06f1ab3a7b6e3f827b4a4a53433d340ce087d2d2f8783c070b08a
+
+ public.verticalOrigin
+ 881
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_D_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_D_.glif
new file mode 100644
index 000000000..02f4ce0ea
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_D_.glif
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 3a3e5655e03951f8476f5f0e47ed35cdde2e34c0a6902b8f2a2c64318e37e86dc849581051f8328f99770a5566cde52f73deb5cb8a35dfd32bce336fdab38d13
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_E_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_E_.glif
new file mode 100644
index 000000000..db10fc0db
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_E_.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e89541798984588fbb6d5b42126dce767b1a6503f2f7e99be61f08568baf98ea23c61380df201e1dcc43889f9abfb84446650ff7930d7c5cf1f938b9ddca4d04
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_F_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_F_.glif
new file mode 100644
index 000000000..1c8918594
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u1E_F_F_.glif
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ b912139c27ce6b769b91f00ce047d21707a96ce2a21b0f8f29abb9428f58066da9df44dbbc50b6519cf373aeed5b96b0af750bc4ac57126551de3aea924dbb21
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2071.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2071.glif
index f150d1afe..477b9b005 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2071.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2071.glif
@@ -1,41 +1,50 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 0f3dff84a0d69456bf4e14b8ab566a3fa1d3c3e02f1a42d03637403676b03008f47cf960fc803fa327158df9a3fc90f2ca84fa221575c0d3122d701d5d18d4aa
+
public.verticalOrigin
- 880
+ 880.0
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u207F_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u207F_.glif
index 5b7a9acf7..80d8c49eb 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u207F_.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u207F_.glif
@@ -1,55 +1,64 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 95f1ecefdd6f7bbc2084c0c63955fccf0d928768a142cf98fcdc1e1eb9398be73a80f6dbd1a66e293716605c98451010924e71315e4f23f601c0f40fbda48c38
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2090.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2090.glif
index 31aaa0cb7..a66c25f69 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2090.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2090.glif
@@ -1,68 +1,74 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 2add0d0480055dc07e235795bb121c30c42b43db456a3f934a3689f4b48bae466aa425ad7bf9b9d2cc50e82dde629e6533a9d2707c12d180594f0f1974bfc894
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2091.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2091.glif
index b87da064a..27755ec7e 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2091.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2091.glif
@@ -1,69 +1,72 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 9721bb472ce75c5e74ec35a0562caea1eb0faa3e80a356e8b6940c5cedf36f34822e3176691f05e5522b97922abf18ed4588e4c7ec1be2e8f5c804db7a452d0c
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2092.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2092.glif
index abe945aa7..ed45b1a03 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2092.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2092.glif
@@ -1,44 +1,53 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 71266d64fc1217aa8b266704400d60e0c4bbd1af1b0aaacf9bf1ad8cc5f513aff5c21ecf93097e3765249f06fd42e95e419806eea86463f745eb769ba6a53186
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2093.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2093.glif
index acb9917ad..59b8abe27 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2093.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2093.glif
@@ -1,60 +1,69 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 30651fc8220f22e8cad89bab6eba4211c218f158c496aad21632eac30197aef701e90bad6550d51fa866725d97520dda5e42f00be966291826070d6764f492f8
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2094.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2094.glif
index 9bd1cba49..6f75ceffa 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2094.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2094.glif
@@ -1,60 +1,69 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 78f8a7c0942267bc1ddee4bc98871786eca6cf8929ba95314b14a21294838edbac00f9c23c42f5d5bf2f59257a8fd74c3356567ac6fd7fce456ffdef2143a9d2
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2095.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2095.glif
index 206ee5b07..002706999 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2095.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2095.glif
@@ -1,57 +1,66 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 5bbcb91e937df75b9e6b4c5addb3e2506ae1cd645662af444cec587367f84c8fcb7fb8d37363c915dca27636046d9f1e8b8b6f96db64a8d87c64b47f67fbdc55
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2096.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2096.glif
index 9b5780970..93156bdf4 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2096.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2096.glif
@@ -1,59 +1,68 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 868175f453b22bc266e9c3bdc65a0ea2565612211024f8a196e3b5b02578324409df25ae599464446587259f8bf0fac0aa459918eed29477f73410b4ba68841b
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2097.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2097.glif
index f5c29d97c..709dbf045 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2097.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2097.glif
@@ -1,36 +1,45 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 93192500b6a4daf54d45203bc0adf9de947c503e6e3d84f7097ceb3e964ce8b6dd9a1917587ca168878314881e3d852355062e1f7562a03a09e3b072f7481d05
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2098.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2098.glif
index 55c028cc8..148057c4d 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2098.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2098.glif
@@ -1,68 +1,91 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 1259cd8bb9b3c0f9eedc1852f57073ea5fc2650a7351286a4a19a191d884bade36b7af23622e9dc80b14eb184495f2376d8a6c44cd7bdef63227cca728e9c277
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2099.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2099.glif
index 3a542d320..61c9f166f 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2099.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2099.glif
@@ -1,55 +1,61 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 4dd5699686fe24be2d2b5422602e4088de8386d222c6fc6ce26cefdb79c814e9bd56e30f0909101a696c9bcf2424428a9d0461b1db664769be77d54fd368bc15
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209A_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209A_.glif
index 6b37651d3..2ce4a0bc7 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209A_.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209A_.glif
@@ -1,61 +1,70 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 3bc4d61ba17d2a3fcee0a56d2f22750588efc9a1339a98ddc8f4fea9ead79b9176b1906af9ae18f4ccd9d0cc6970e26704eb1a101cbe3633f6dc9c5209492ebc
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209B_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209B_.glif
index ac79c6749..5dfa13547 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209B_.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209B_.glif
@@ -1,59 +1,68 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 50d12edc7c91b25a8476e9aee7bb4a735b5aa8b39a935b8bdd87a3e9e6dcaf88166752029ffcf4fd4d6cbad9ecf6f4bbdf0dc1b2d5e7d89ba49b2ea5f54ddc68
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209C_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209C_.glif
index 1c56542a8..e81f74f8c 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209C_.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u209C_.glif
@@ -1,58 +1,66 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 81eb82b14159ab1b1f4dd638f0f922f152ea53ce855eaf529bab11df873171bbd1368f38075f7d85da63c3087b984c51413c56e439a5636cffa5d461f2fd5564
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_0.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_0.glif
new file mode 100644
index 000000000..a49484531
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_0.glif
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 1d9b75cfc8d57481d9b76ea995a6d30ae8f4a65c4735e38d54db8624dcd611d47e2941cca16e84610d5e9999a9795888609e7de1334516cb5fa7deb6030e0240
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_1.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_1.glif
new file mode 100644
index 000000000..5757cb10f
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_1.glif
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 809964bb10f9a3593e640453f356dee51d2b982328d735e7a5fc82616aa2f3cce5d2b95b06cd1459b357637bc103f528d00da0c566021dc2e80e597d7271e371
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_2.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_2.glif
new file mode 100644
index 000000000..4803c6d99
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_2.glif
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ f689e44f9f19c77979723696674d42618c090acd225483110c7cf1f0ded0811347c2772e88f340aa56e64187e47e20ba5eddb29d3039c9bec8f8020b62e1b48a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_3.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_3.glif
new file mode 100644
index 000000000..b3177a97f
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_3.glif
@@ -0,0 +1,114 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ f894ba5622f126fc855fc34ffc90edc19dcdac177075de23eb710f9f3c9427d7260758779febcbaa78b85bb77092519dc3c3407afadbac65858a925efe81f87a
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_5.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_5.glif
new file mode 100644
index 000000000..25441cd8a
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_5.glif
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ bd1b8e9d33cf51a2c01962da9e9e7e9e4d8c22857d28ec9e5f7b37598f9547483e6017ccb5e91abd887548438d54600726a4875f019389df18c81d17f72774ae
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_6.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_6.glif
new file mode 100644
index 000000000..09b0725fc
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_6.glif
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 868583d7ae13805d1d217defb7c1688e0b7144f87bebeedd5745cb927cacac2087699be611fa3d67968c8b16f137a12afa0c29be06e29326f9a55271e8d55222
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_7.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_7.glif
new file mode 100644
index 000000000..1d2cb3833
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_7.glif
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ f306465c1e2cfc6092773a434f243d987b5af363ae744ded6cc6db3e79f044f7a7df84a417a828d3a8b0306cf28825730564ede7195b376fc162f0b7ee6131bf
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_8.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_8.glif
new file mode 100644
index 000000000..e309116d0
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_8.glif
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 625259845181f5aeba8b45575a884c3dc7d35b559b23747d5f7bae66edc04c57fd273a32afb96626812be24290ec0071e33374997e1afe4aadbed15ae35999d3
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_A_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_A_.glif
new file mode 100644
index 000000000..7ec465f59
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_A_.glif
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 5c2317a6dcdc2604c2ea240b498608bf964c19aca551904b9bac7fbf48007ca5b9a0f2f24bfcbe537674ab0851efb8eaddd67c370678a8d8395fc6f142cb00f1
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_B_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_B_.glif
new file mode 100644
index 000000000..87c6e3c60
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_B_.glif
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 794fefc0047641364f50f6b01a6e94d5234ea8f6d8ec2a319ba0a94d5ad993197f2ba1a40c503afb4bd1579443b842c7000d65d88bd19f8e2fe85f10c3ae01e4
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_C_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_C_.glif
new file mode 100644
index 000000000..af3e095f2
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_C_.glif
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e949b050fac96d144e97a84aa6b5da026037eb7adcf52edea4b4767097c208f102f60aca3c4eb5d0f3fc125e321dae77d93c0a5eb6bc3d435a74a00f8d185edc
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_E_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_E_.glif
new file mode 100644
index 000000000..887774561
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_E_.glif
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 99a124c7077e949d6229b407d6e4c2be3cfb6521ff9f59902a943721e8f360978ac8063b8071b554b662dbc16c367fce599138487ee91514d9afc8ef201138be
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_F_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_F_.glif
new file mode 100644
index 000000000..1b884be6f
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20B_F_.glif
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 2b1ac6b463c9c5ee5f88819755dbd14ef95045a55ed1b40679625634d8a01cd7e30c390dabeb779bd2aca5c7a4143ed60481a7e5bc1a2890aa2248cbf57a7de0
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20C_0.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20C_0.glif
new file mode 100644
index 000000000..2d0737f5b
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u20C_0.glif
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 81623b1f85713df2efd198ad6c9f7bd11fc272c659d1de553662fb5ebd384501d39abc8d32b00bb8a3e6a3f6fd2d61dccbed8b97c596c9d204bc526a0a277635
+
+ public.verticalOrigin
+ 883
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2120.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2120.glif
new file mode 100644
index 000000000..7017ebc06
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2120.glif
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e523a61a688ab1a51bf0985be5fd5443f1cbe3b50922ee8af527e5dead2a63af17806615ebef87e098baf3bbc70194213c6752044cf1e972ef687c76979128bb
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2C_64.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2C_64.glif
new file mode 100644
index 000000000..ebc0e76e8
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2C_64.glif
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ ae0605dbf56256db1207336ddc4e42a0cd5bd9a635bb00892fa983b9fd47377c381d1f3ce9564af84ee9d2d9fabafb529518718d02bbf4b9181e9eaa3113fb63
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2C_65.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2C_65.glif
new file mode 100644
index 000000000..5f11fd41e
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2C_65.glif
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 3bdf064b61515cf0482c873e1f93ac76ab42140e014e5dbe853db34320cdf7c9bec663418c21c88db084056eb7b5e03d2a217cf70053795a4a26cb7aec880ebd
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2C_66.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2C_66.glif
new file mode 100644
index 000000000..a26b65a7b
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/u2C_66.glif
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ fc7fc7d5b7dbc138697042a119830e2df24e083a1c392efca7f93fd2ceb85c5411c17bb2996e7ae608a4f6930636e01e78161a2ba99f9d8c2a448b22728f523d
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_78D_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_78D_.glif
new file mode 100644
index 000000000..c8280eb8f
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_78D_.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 35f5e2d8567792d6ac32a680203146ba7c12d21f2e5d208b6bec713f54f8caf69b5d78450e2cbb00b9c088df35ceb420c25d98693737e92c2f2ef01f541b0c57
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7A_A_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7A_A_.glif
similarity index 57%
rename from sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7A_A_.glif
rename to sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7A_A_.glif
index 69d98deec..7227629be 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7A_A_.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7A_A_.glif
@@ -1,13 +1,13 @@
-
+
-
+
-
+
@@ -15,65 +15,69 @@
-
+
-
+
-
+
-
-
+
+
-
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u018A
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- H
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 7c07b610a3a16109a2fdcabcd0b3941cc195cf55af0ec3b88a85f4b12d85dae5b3ae83a58fd9327979c72b67cb829b57087c76f20b2da07ffcfe49f42a30ed38
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7A_D_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7A_D_.glif
similarity index 57%
rename from sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7A_D_.glif
rename to sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7A_D_.glif
index da5be168a..e91ca11d9 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7A_D_.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7A_D_.glif
@@ -1,80 +1,86 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- L
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ a1dc4457f32a2da276c33cd1272b7cce0fee3bcf8ed0c81fd67d6f78d9346befaae42ccc9f7cf1cc77c51273472286c62eabfc19a38e4e3a1cb1001c84b19e0a
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7A_E_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7A_E_.glif
new file mode 100644
index 000000000..6766b1325
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7A_E_.glif
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e3160cde7e0223f0e3e1b13d4480df17d83d30e1047c0d66c4500a5c4a97147154c3cd068072c5b31d9c07200d0151f738762ee2068919afd3c3dce05d5aca56
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7B_2.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7B_2.glif
similarity index 58%
rename from sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7B_2.glif
rename to sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7B_2.glif
index 443aabbc5..51153c750 100644
--- a/sources/LXGWWenKaiMonoTC-Regular.ufo/glyphs/uniA_7B_2.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7B_2.glif
@@ -1,13 +1,26 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
@@ -17,47 +30,39 @@
-
+
-
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- uni029D
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:54:15
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ ca887a2c13b0dc778bfe7c8435e0a67d89ed1916e8d6b166ec039eae72d155867b3893c4579d8af3f27e26d9e7228c468e7566278fed46b733b7126ae9718f84
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7B_3.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7B_3.glif
new file mode 100644
index 000000000..4ff045562
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7B_3.glif
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ d1bdf38e23da9ee3d6135b6df8f077036292eb6ac154ab4d6eb4f2ee820ddb2f5fc2bcbe226c065dff44e60c9e1c7b3b1400fcfb4aba250c1f4ffc52e8529071
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7B_4.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7B_4.glif
new file mode 100644
index 000000000..c2faee118
--- /dev/null
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uA_7B_4.glif
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 3ffc9870a18404b8a52d12fddfdc051b45b5a17c7df2f4b98c00e603237377e9c4b2f5a953f8508d0498a1a735b596c1f41f29587759bae123bacaeb5ff6fb60
+
+ public.verticalOrigin
+ 880
+
+
+
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uF_B_02.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uF_B_02.glif
index 71eb86609..aeb105429 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uF_B_02.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uF_B_02.glif
@@ -4,25 +4,25 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -30,50 +30,71 @@
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
-
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ e2f8ecadbdcfd3d9c826632fe83b1aad86abfd0804604343acc212759978b03c5811d768f6aed3000e3243453117c45293c9a1c1f8bb624844e36c6d7f88944d
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uF_B_04.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uF_B_04.glif
index 96631b8d9..15099d4ae 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uF_B_04.glif
+++ b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uF_B_04.glif
@@ -4,25 +4,25 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -30,17 +30,17 @@
-
+
-
+
-
+
-
+
-
+
@@ -48,56 +48,77 @@
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
+ public.truetype.instructions
+
+ assembly
+
+
+
+ formatVersion
+ 1
+ id
+ 24963fff44214cb2a6d31d69c1c4dcddb8d5265b1bc269b9ac41888287509d40d4f632c82a47c0cd7854473e97a51311a6c531f67235c592b831a7c71e693b0c
+
public.verticalOrigin
880
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni04F_5.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni04F_5.glif
deleted file mode 100644
index 2469e6ad7..000000000
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni04F_5.glif
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- u0447
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:24
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni2C_64.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni2C_64.glif
deleted file mode 100644
index 3be9a4c8a..000000000
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni2C_64.glif
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- R
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- R
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni2C_65.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni2C_65.glif
deleted file mode 100644
index 215a75f54..000000000
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni2C_65.glif
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- a
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- a
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni2C_66.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni2C_66.glif
deleted file mode 100644
index 146424497..000000000
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uni2C_66.glif
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- t
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- t
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
- com.schriftgestaltung.Glyphs.shapeOrder
- CP
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_78D_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_78D_.glif
deleted file mode 100644
index 43b55e52f..000000000
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_78D_.glif
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.glyph.leftMetricsKey
- =u04BA
- com.schriftgestaltung.Glyphs.glyph.rightMetricsKey
- =u04BA
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/16 16:53:20
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7A_E_.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7A_E_.glif
deleted file mode 100644
index c9e5cbc5a..000000000
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7A_E_.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:24
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7B_3.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7B_3.glif
deleted file mode 100644
index a81b28c4b..000000000
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7B_3.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:24
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7B_4.glif b/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7B_4.glif
deleted file mode 100644
index a97851607..000000000
--- a/sources/LXGWWenKaiTC-Regular.ufo/glyphs/uniA_7B_4.glif
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
- com.schriftgestaltung.Glyphs.lastChange
- 2024/05/13 22:25:24
- public.verticalOrigin
- 880
-
-
-
diff --git a/sources/LXGWWenKaiTC-Regular.ufo/lib.plist b/sources/LXGWWenKaiTC-Regular.ufo/lib.plist
index 982cae082..5ed5ca89b 100644
--- a/sources/LXGWWenKaiTC-Regular.ufo/lib.plist
+++ b/sources/LXGWWenKaiTC-Regular.ufo/lib.plist
@@ -418,13 +418,13 @@
u1EF6
u1EF8
u1EFA
- uni2C64
- uniA78D
- uniA7AA
- uniA7AD
- uniA7B2
- uniA7B3
- uniA7B4
+ u2C64
+ uA78D
+ uA7AA
+ uA7AD
+ uA7B2
+ uA7B3
+ uA7B4
a
aacute
abreve
@@ -878,8 +878,8 @@
uhorn
uhungarumlaut
umacron
- uni2C65
- uni2C66
+ u2C65
+ u2C66
uogonek
uring
utilde
@@ -1080,7 +1080,7 @@
u04EF
u04F1
u04F3
- uni04F5
+ u04F5
u04FF
Alpha
Beta
@@ -1786,7 +1786,7 @@
uA4FD
uA4FE
uA4FF
- uniA7AE
+ uA7AE
uA7AF
u11FB0
PureWriter
@@ -1823,5 +1823,30 @@
theta1
uni03D1
+ public.unicodeVariationSequences
+
+ FE00
+
+ 2018
+ quoteleft
+ 2019
+ quoteright
+ 201C
+ quotedblleft
+ 201D
+ quotedblright
+
+ FE01
+
+ 2018
+ quoteleft.full
+ 2019
+ quoteright.full
+ 201C
+ quotedblleft.full
+ 201D
+ quotedblright.full
+
+
diff --git a/sources/LXGWWenKaiTC_common-Light.ufoz b/sources/LXGWWenKaiTC_common-Light.ufoz
index ede48d1c2..e29be8f8a 100644
Binary files a/sources/LXGWWenKaiTC_common-Light.ufoz and b/sources/LXGWWenKaiTC_common-Light.ufoz differ
diff --git a/sources/LXGWWenKaiTC_common-Bold.ufoz b/sources/LXGWWenKaiTC_common-Medium.ufoz
similarity index 70%
rename from sources/LXGWWenKaiTC_common-Bold.ufoz
rename to sources/LXGWWenKaiTC_common-Medium.ufoz
index 13bd74d0f..ce8358aec 100644
Binary files a/sources/LXGWWenKaiTC_common-Bold.ufoz and b/sources/LXGWWenKaiTC_common-Medium.ufoz differ
diff --git a/sources/LXGWWenKaiTC_common-Regular.ufoz b/sources/LXGWWenKaiTC_common-Regular.ufoz
index 70e9bd67a..0d57d6f7c 100644
Binary files a/sources/LXGWWenKaiTC_common-Regular.ufoz and b/sources/LXGWWenKaiTC_common-Regular.ufoz differ
diff --git a/sources/build/LXGWWenKaiMonoTC-Bold.designspace b/sources/build/LXGWWenKaiMonoTC-Medium.designspace
similarity index 99%
rename from sources/build/LXGWWenKaiMonoTC-Bold.designspace
rename to sources/build/LXGWWenKaiMonoTC-Medium.designspace
index 7d442d8ec..614ab5557 100644
--- a/sources/build/LXGWWenKaiMonoTC-Bold.designspace
+++ b/sources/build/LXGWWenKaiMonoTC-Medium.designspace
@@ -1,12 +1,12 @@
-
-
+
+
-
-
+
@@ -33,7 +33,7 @@
com.schriftgestaltung.manualInterpolation
com.schriftgestaltung.weight
- 700
+ 500
com.schriftgestaltung.width
Medium (normal)
diff --git a/sources/build/LXGWWenKaiTC-Bold.designspace b/sources/build/LXGWWenKaiTC-Medium.designspace
similarity index 99%
rename from sources/build/LXGWWenKaiTC-Bold.designspace
rename to sources/build/LXGWWenKaiTC-Medium.designspace
index cb70629f5..18948a08f 100644
--- a/sources/build/LXGWWenKaiTC-Bold.designspace
+++ b/sources/build/LXGWWenKaiTC-Medium.designspace
@@ -1,12 +1,12 @@
-
-
+
+
-
+
@@ -17,7 +17,7 @@
-
+
@@ -33,7 +33,7 @@
com.schriftgestaltung.manualInterpolation
com.schriftgestaltung.weight
- 700
+ 500
com.schriftgestaltung.width
Medium (normal)
diff --git a/sources/features.fea b/sources/features.fea
index fa53372f7..1e0b71708 100644
--- a/sources/features.fea
+++ b/sources/features.fea
@@ -494,6 +494,10 @@ lookup vertVerticalAlternateslookup5 {
sub \quoteright by \quoteright.vert ;
sub \quotedblleft by \quotedblleft.vert ;
sub \quotedblright by \u301F.vert ;
+ sub \quoteleft.full by \quoteleft.vert ;
+ sub \quoteright.full by \quoteright.vert ;
+ sub \quotedblleft.full by \quotedblleft.vert ;
+ sub \quotedblright.full by \u301F.vert ;
sub \twodotenleader by \u205A ;
sub \ellipsis by \u205D ;
sub \arrowleft by \arrowup ;
@@ -806,22 +810,99 @@ lookup caltContextualAlternateslookup7 {
sub [\zero \one \two \three \four \five \six \seven \eight \nine ] [\colon ]' [\zero \one \two \three \four \five \six \seven \eight \nine ] by [\colon.calt ];
} caltContextualAlternateslookup7;
-lookup ligaStandardLigatureslookup8 {
- lookupflag 0;
- sub \u0255 \uniFF12FF0FFF11FF11.afrc by \four_slash_one_one.afrc;
- sub \u025F \uniFF12FF0FFF11FF11.afrc by \five_slash_one_one.afrc;
- sub \ecircumflex \uniFF12FF0FFF11FF11.afrc by \six_slash_one_one.afrc;
- sub \u0258 \uniFF12FF0FFF11FF11.afrc by \u3319.vert;
- sub \u025D \uniFF12FF0FFF11FF11.afrc by \uni30AF30EB30B630FC30C9.dlig.1;
- sub \u025E \uniFF12FF0FFF11FF11.afrc by \u331A.vert;
- sub \u0290 \uniFF12FF0FFF11FF11.afrc by \u331B.vert;
-} ligaStandardLigatureslookup8;
-
lookup saltStylisticAlternativeslookup9 {
lookupflag 0;
sub \a by \a.salt ;
} saltStylisticAlternativeslookup9;
+lookup SinglePositioning1 {
+ lookupflag 0;
+ ;
+ pos angleleft <-500 0 -500 0>;
+ pos angleright -500;
+ pos u3001 <-250 0 -500 0>;
+ pos u3002 <-250 0 -500 0>;
+ pos u300A <-500 0 -500 0>;
+ pos u300B -500;
+ pos u300C <-500 0 -500 0>;
+ pos u300D -500;
+ pos u300E <-500 0 -500 0>;
+ pos u300F -500;
+ pos u3010 <-500 0 -500 0>;
+ pos u3011 -500;
+ pos u3014 <-500 0 -500 0>;
+ pos u3015 -500;
+ pos u3016 <-500 0 -500 0>;
+ pos u3017 -500;
+ pos u3018 <-500 0 -500 0>;
+ pos u3019 -500;
+ pos u301A <-500 0 -500 0>;
+ pos u301B -500;
+ pos u301D <-500 0 -500 0>;
+ pos u301E -500;
+ pos u301F -500;
+ pos u30FB <-250 0 -500 0>;
+ pos uFF01 <-250 0 -500 0>;
+ pos uFF08 <-500 0 -500 0>;
+ pos uFF09 -500;
+ pos uFF0C <-250 0 -500 0>;
+ pos uFF0E <-250 0 -500 0>;
+ pos uFF1A <-250 0 -500 0>;
+ pos uFF1B <-250 0 -500 0>;
+ pos uFF3B <-500 0 -500 0>;
+ pos uFF3D -500;
+ pos uFF5B <-500 0 -500 0>;
+ pos uFF5D -500;
+ pos uFF5F <-500 0 -500 0>;
+ pos uFF60 -500;
+ pos quotedblleft.full <-500 0 -500 0>;
+ pos quotedblright.full -500;
+ pos quoteleft.full <-500 0 -500 0>;
+ pos quoteright.full -500;
+} SinglePositioning1;
+
+lookup SinglePositioning2 {
+ lookupflag 0;
+ ;
+ # Original source: 1
+ pos quotedblleft.vert <0 500 0 -500>;
+ pos u3001 <0 250 0 -500>;
+ pos u3002 <0 250 0 -500>;
+ pos u3018.vert <0 500 0 -500>;
+ pos u3019.vert <0 0 0 -500>;
+ pos u301A.vert <0 500 0 -500>;
+ pos u301B.vert <0 0 0 -500>;
+ pos u301F.vert <0 0 0 -500>;
+ pos u30FB <0 250 0 -500>;
+ pos uFE10 <0 250 0 -500>;
+ pos uFE11 <0 250 0 -500>;
+ pos uFE12 <0 250 0 -500>;
+ pos uFE17 <0 500 0 -500>;
+ pos uFE18 <0 0 0 -500>;
+ pos uFE35 <0 500 0 -500>;
+ pos uFE36 <0 0 0 -500>;
+ pos uFE37 <0 500 0 -500>;
+ pos uFE38 <0 0 0 -500>;
+ pos uFE39 <0 500 0 -500>;
+ pos uFE3A <0 0 0 -500>;
+ pos uFE3B <0 500 0 -500>;
+ pos uFE3C <0 0 0 -500>;
+ pos uFE3D <0 500 0 -500>;
+ pos uFE3E <0 0 0 -500>;
+ pos uFE3F <0 500 0 -500>;
+ pos uFE40 <0 0 0 -500>;
+ pos uFE41 <0 500 0 -500>;
+ pos uFE42 <0 0 0 -500>;
+ pos uFE43 <0 500 0 -500>;
+ pos uFE44 <0 0 0 -500>;
+ pos uFE47 <0 500 0 -500>;
+ pos uFE48 <0 0 0 -500>;
+ pos uFF0C <0 250 0 -500>;
+ pos uFF0E <0 250 0 -500>;
+ pos uFF5F.vert <0 500 0 -500>;
+ pos uFF60.vert <0 0 0 -500>;
+} SinglePositioning2;
+
#Mark attachment classes (defined in GDEF, used in lookupflags)
@GDEF_Simple = [\nonmarkingreturn \space \exclam \quotedbl
@@ -2910,20 +2991,6 @@ feature calt {
lookup caltContextualAlternateslookup7;
} calt;
-feature liga {
- script DFLT;
- language dflt ;
- lookup ligaStandardLigatureslookup8;
-
- script hani;
- language dflt ;
- lookup ligaStandardLigatureslookup8;
-
- script kana;
- language dflt ;
- lookup ligaStandardLigatureslookup8;
-} liga;
-
feature salt {
script DFLT;
language dflt ;
@@ -2946,3 +3013,40 @@ feature salt {
lookup saltStylisticAlternativeslookup9;
} salt;
+feature halt {
+ script DFLT;
+ language dflt;
+ lookup SinglePositioning1;
+
+ script hani;
+ language dflt;
+ lookup SinglePositioning1;
+
+ script kana;
+ language dflt;
+ lookup SinglePositioning1;
+
+ script latn;
+ language dflt;
+ lookup SinglePositioning1;
+
+} halt;
+
+feature vhal {
+ script DFLT;
+ language dflt;
+ lookup SinglePositioning2;
+
+ script hani;
+ language dflt;
+ lookup SinglePositioning2;
+
+ script kana;
+ language dflt;
+ lookup SinglePositioning2;
+
+ script latn;
+ language dflt;
+ lookup SinglePositioning2;
+
+} vhal;
diff --git a/sources/project.yaml b/sources/project.yaml
index 4cd4818b3..38bddd05e 100644
--- a/sources/project.yaml
+++ b/sources/project.yaml
@@ -1,12 +1,17 @@
sources:
- - build/LXGWWenKaiMonoTC-Bold.designspace
- build/LXGWWenKaiMonoTC-Light.designspace
+ - build/LXGWWenKaiMonoTC-Medium.designspace
- build/LXGWWenKaiMonoTC-Regular.designspace
- - build/LXGWWenKaiTC-Bold.designspace
- build/LXGWWenKaiTC-Light.designspace
+ - build/LXGWWenKaiTC-Medium.designspace
- build/LXGWWenKaiTC-Regular.designspace
+reverseOutlineDirection: False
removeOutlineOverlaps: False
buildOTF: False
buildTTF: True
buildWebfont: False
autohintTTF: False
+
+outputDir: ../fonts
+ttDir: $outputDir/TTF
+otDir: $outputDir/OTF
diff --git a/sources/scripts/bump_version.py b/sources/scripts/bump_version.py
new file mode 100644
index 000000000..59bc057fd
--- /dev/null
+++ b/sources/scripts/bump_version.py
@@ -0,0 +1,38 @@
+import plistlib
+import argparse
+import os
+import re
+import datetime
+from zoneinfo import ZoneInfo
+
+argparser = argparse.ArgumentParser()
+argparser.add_argument("file", type=str, help="fontinfo.plist file path")
+argparser.add_argument("--version", "-v", type=str, help="version number, in vX.XXX format")
+argparser.add_argument("--date", "-d", type=str, help="date, default to current date in GMT+8", default=datetime.datetime.now(ZoneInfo("Asia/Shanghai")).strftime("%B %d, %Y"))
+
+args = argparser.parse_args()
+
+parser = re.compile(r"v?((?P\d+)\.(?P\d+).*)")
+match = parser.match(args.version)
+major_version_num = int(match.group("major"))
+minor_version_num = int(match.group("minor"))
+version_num_string = f"Version {match.group(1)}"
+
+if args.date.strip() == "":
+ args.date = datetime.datetime.now(ZoneInfo("Asia/Shanghai")).strftime("%B %d, %Y")
+version_string = f"{version_num_string}; {args.date}"
+
+assert os.path.isfile(args.file), "File not found"
+
+fontinfo = plistlib.load(open(args.file, "rb"))
+
+fontinfo["openTypeNameUniqueID"] = (
+ fontinfo["openTypeNameUniqueID"].split(":")[0] + ":" + version_num_string
+)
+fontinfo["openTypeNameVersion"] = version_string
+fontinfo["versionMajor"] = major_version_num
+fontinfo["versionMinor"] = minor_version_num
+
+plistlib.dump(fontinfo, open(args.file, "wb"))
+
+print("SUCCESS: Updated version in %s" % args.file)
\ No newline at end of file
diff --git a/sources/scripts/merge.py b/sources/scripts/merge.py
index dfc16be01..7a6f9fbc9 100644
--- a/sources/scripts/merge.py
+++ b/sources/scripts/merge.py
@@ -13,6 +13,8 @@
coreUFO = ufoLib2.Font.open(file)
if "Regular" in str(file):
commonUFO = ufoLib2.Font.open("sources/temp/LXGWWenKaiTC_common-Regular.ufo")
+ elif "Medium" in str(file):
+ commonUFO = ufoLib2.Font.open("sources/temp/LXGWWenKaiTC_common-Medium.ufo")
elif "Bold" in str(file):
commonUFO = ufoLib2.Font.open("sources/temp/LXGWWenKaiTC_common-Bold.ufo")
else:
diff --git a/sources/scripts/post.py b/sources/scripts/post.py
index db7f79367..b20ed7359 100644
--- a/sources/scripts/post.py
+++ b/sources/scripts/post.py
@@ -13,6 +13,8 @@
if "Light" in str(file):
font["OS/2"].panose.bWeight = 4
+ elif "Medium" in str(file):
+ font["OS/2"].panose.bWeight = 6
elif "Bold" in str(file):
font["OS/2"].panose.bWeight = 8
else: