gitextract_b6utl32b/ ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── jazzy.yml ├── .gitmodules ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ ├── OpenCC/ │ │ ├── ChineseConverter.swift │ │ ├── ConversionDictionary.swift │ │ ├── ConversionError.swift │ │ ├── Dictionary/ │ │ │ ├── HKVariants.ocd2 │ │ │ ├── HKVariantsRev.ocd2 │ │ │ ├── HKVariantsRevPhrases.ocd2 │ │ │ ├── JPShinjitaiCharacters.ocd2 │ │ │ ├── JPShinjitaiPhrases.ocd2 │ │ │ ├── JPVariants.ocd2 │ │ │ ├── JPVariantsRev.ocd2 │ │ │ ├── STCharacters.ocd2 │ │ │ ├── STPhrases.ocd2 │ │ │ ├── TSCharacters.ocd2 │ │ │ ├── TSPhrases.ocd2 │ │ │ ├── TWPhrases.ocd2 │ │ │ ├── TWPhrasesRev.ocd2 │ │ │ ├── TWVariants.ocd2 │ │ │ ├── TWVariantsRev.ocd2 │ │ │ └── TWVariantsRevPhrases.ocd2 │ │ ├── DictionaryLoader.swift │ │ ├── DictionaryName.swift │ │ └── WeakValueCache.swift │ └── copencc/ │ ├── include/ │ │ ├── header.h │ │ └── module.modulemap │ └── source.cpp └── Tests/ ├── LinuxMain.swift └── OpenCCTests/ └── OpenCCTests.swift